Add PR marker for libstdc++/29920
[platform/upstream/gcc.git] / libstdc++-v3 / ChangeLog
1 2006-11-22  Antony King <anthony.king@st.com>
2             J"orn Rennecke <joern.rennecke@st.com>
3
4         PR libstdc++/29920
5         * include/Makefile.am (stamp-host): Remove CCODECVT_H line.
6         * include/Makefile.in: Regenerate.
7
8 2006-11-21  Benjamin Kosnik  <bkoz@redhat.com>
9         
10         * include/ext/hashtable.h: -Wshadow fixes.
11         * include/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp: Same.
12         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp: Same.
13         * include/ext/pb_ds/detail/pat_trie_/internal_node.hpp: Same.
14         * include/ext/pb_ds/detail/gp_hash_table_map_/
15         constructor_destructor_fn_imps.hpp: Same.
16         * include/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp: Same.
17         * include/ext/pb_ds/detail/ov_tree_map_/
18         constructors_destructor_fn_imps.hpp: Same.
19         * src/mt_allocator.cc: Same.
20         * src/debug.cc: Same.
21         * config/locale/gnu/codecvt_members.cc: Same.
22
23 2006-11-21  Benjamin Kosnik  <bkoz@redhat.com>
24             Howard Hinnant  <hhinnant@apple.com>
25
26         * src/iostream-inst.cc: Remove iostream include.
27
28 2006-11-19  Paolo Carlini  <pcarlini@suse.de>
29
30         * include/tr1/functional (hash(long long), hash(unsigned long long)):
31         Add specializations.
32
33 2006-11-18  Joseph Myers  <joseph@codesourcery.com>
34
35         * config/cpu/powerpc/atomic_word.h (_GLIBCXX_WRITE_MEM_BARRIER):
36         Use plain sync if __NO_LWSYNC__.
37
38 2006-11-14  Joseph Myers  <joseph@codesourcery.com>
39
40         * testsuite/26_numerics/complex/13450.cc: Do not test long double
41         in IBM long double case.
42
43 2006-11-13  Daniel Jacobowitz  <dan@codesourcery.com>
44
45         * configure: Regenerated.
46
47 2006-11-13  Joseph Myers  <joseph@codesourcery.com>
48
49         * libsupc++/eh_globals.cc (__cxxabiv1::__cxa_get_globals):
50         Initialize propagatingExceptions if __ARM_EABI_UNWINDER__.
51         * libsupc++/eh_personality.cc (empty_exception_spec): Define
52         separately in __ARM_EABI_UNWINDER__ case.
53
54 2006-11-13  Joseph Myers  <joseph@codesourcery.com>
55
56         * libsupc++/typeinfo (__GXX_TYPEINFO_EQUALITY_INLINE): Define.
57         Use instead of __GXX_MERGED_TYPEINFO_NAMES to condition inline
58         definitions.
59         * libsupc++/tinfo.cc (operator==): Condition on
60         __GXX_TYPEINFO_EQUALITY_INLINE; check __GXX_MERGED_TYPEINFO_NAMES
61         to determine algorithm.
62         * libsupc++/tinfo2.cc (type_info::before): Likewise.
63
64 2006-11-12  Paolo Carlini  <pcarlini@suse.de>
65
66         * include/ext/bitmap_allocator.h: Uglify some names.
67         * include/ext/concurrence.h: Likewise.
68         * src/bitmap_allocator.cc: Likewise.
69
70 2006-11-11  Paolo Carlini  <pcarlini@suse.de>
71
72         PR libstdc++/29496
73         * include/debug/safe_base.h (_Safe_sequence_base::_M_get_mutex,
74         _Safe_iterator_base::_M_get_mutex, _M_attach_single, _M_detach_single):
75         New.
76         * src/debug.cc: Define the latter.
77         (_Safe_sequence_base::_M_detach_all, _M_detach_singular,
78         _M_revalidate_singular, _M_swap): Use the mutex.
79         (_Safe_iterator_base::_M_attach, _M_detach): Adjust, forward to the
80         *_single version.
81         * include/debug/safe_iterator.h (_Safe_iterator<>::_M_attach_single,
82         _M_invalidate_single): New.
83         * include/debug/safe_iterator.tcc: Define.
84         (_Safe_iterator<>::_M_invalidate): Adjust, forward to
85         _M_invalidate_single.
86         * include/debug/safe_sequence.h (_Safe_sequence<>::_M_invalidate_if,
87         _M_transfer_iter): Use the mutex, adjust, forward to the *_single
88         versions of _M_invalidate and _M_attach.
89         * config/abi/pre/gnu.ver (_Safe_sequence_base::_M_get_mutex,
90         _Safe_iterator_base::_M_get_mutex, _M_attach_single, _M_detach_single):
91         Add @GLIBCXX_3.4.10; adjust.
92         * configure.ac (libtool_VERSION): To 6:10:0.
93         * testsuite/util/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.10.
94         * configure: Regenerate.
95
96 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
97
98         * config/locale/gnu/c_locale.cc (__convert_to_v): Prefer
99         strtold_l over __strtold_l if available.
100
101 2006-11-07  Benjamin Kosnik  <bkoz@redhat.com>
102
103         PR libstdc++/29722
104         * include/ext/concurrence.h (concurrence_lock_error): New.
105         (concurrence_unlock_error): New.
106         (__throw_concurrence_lock_error): New.
107         (__throw_concurrence_unlock_error): New.
108         (__mutex): Use functions.
109         (__recursive_mutex): Same.
110         * testsuite/abi/cxx_runtime_only_linkage.cc: New.
111
112         * include/ext/pb_ds/exception.hpp: Keep exception classes defined
113         even when -fno-exceptions is passed, consistent with other usage.
114         
115 2006-11-07  Benjamin Kosnik  <bkoz@redhat.com>
116
117         * include/ext/pb_ds/exception.hpp (pb_ds): Modify for -fno-exceptions.
118         (__throw_container_error): New. Conditionalize based on __EXCEPTIONS.
119         (__throw_insert_error): New.
120         (__throw_join_error): New.
121         (__throw_resize_error): New.
122         * include/ext/pb_ds/detail/resize_policy/
123         hash_prime_size_policy_imp.hpp: Use them.
124         * include/ext/pb_ds/detail/resize_policy/
125         hash_exponential_size_policy_imp.hpp: Same.
126         * include/ext/pb_ds/detail/resize_policy/
127         hash_load_check_resize_trigger_imp.hpp: Same.
128         * include/ext/pb_ds/detail/resize_policy/
129         hash_standard_resize_policy_imp.hpp: Same.
130         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
131         * include/ext/pb_ds/detail/cc_hash_table_map_/
132         constructor_destructor_fn_imps.hpp: Same.
133         * include/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
134         * include/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp
135         * include/ext/pb_ds/detail/pat_trie_/
136         constructors_destructor_fn_imps.hpp: Same.
137         * include/ext/pb_ds/detail/bin_search_tree_/
138         constructors_destructor_fn_imps.hpp: Same.
139         * include/ext/pb_ds/detail/bin_search_tree_/
140         split_join_fn_imps.hpp: Same.
141         * include/ext/pb_ds/detail/gp_hash_table_map_/
142         insert_no_store_hash_fn_imps.hpp: Same.
143         * include/ext/pb_ds/detail/gp_hash_table_map_/
144         resize_store_hash_fn_imps.hpp: Same.
145         * include/ext/pb_ds/detail/gp_hash_table_map_/
146         insert_store_hash_fn_imps.hpp: Same.
147         * include/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp: Same.
148         * include/ext/pb_ds/detail/gp_hash_table_map_/
149         constructor_destructor_fn_imps.hpp: Same.
150         * include/ext/pb_ds/detail/gp_hash_table_map_/
151         resize_no_store_hash_fn_imps.hpp: Same.
152         * include/ext/pb_ds/detail/binary_heap_/
153         constructors_destructor_fn_imps.hpp: Same.
154         * include/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp: Same.
155         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
156         constructors_destructor_fn_imps.hpp: Same.
157         * include/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp: Same.
158         * include/ext/pb_ds/detail/list_update_map_/
159         constructor_destructor_fn_imps.hpp: Same.
160         * include/ext/pb_ds/exception.hpp: Same.        
161         * src/functexcept.cc: Qualify abort with std.
162
163 2006-11-07  Benjamin Kosnik  <bkoz@redhat.com>
164
165         * include/ext/pb_ds/exception.hpp: Add translation support to
166         exception strings.
167         * include/ext/concurrence.h: Same.
168         * include/tr1/array: Same.
169
170 2006-11-05  Paolo Carlini  <pcarlini@suse.de>
171
172         * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 45.
173         * docs/html/ext/lwg-closed.html: Add.
174         * docs/html/ext/howto.html: Adjust.
175
176 2006-10-30  Paolo Carlini  <pcarlini@suse.de>
177
178         * include/tr1/utility (tuple_size<std::pair<> >::value): Provide
179         definition.
180
181 2006-10-30  Paolo Carlini  <pcarlini@suse.de>
182
183         * include/tr1/tuple_iterate.h (tuple_size<tuple<> >::value): Provide
184         definition.
185         * include/tr1/functional (is_bind_expression<>::value,
186         is_placeholder<>::value, + various partial specializations): Likewise.
187         * include/tr1/array (tuple_size<array<> >::value): Likewise.
188
189 2006-10-30  Paolo Carlini  <pcarlini@suse.de>
190
191         * testsuite/tr1/6_containers/array/capacity/max_size.cc: Actually
192         do test max_size().
193
194 2006-10-30  Joseph Myers  <joseph@codesourcery.com>
195
196         * testsuite/config/default.exp (${tool}_target_compile): Use
197         v3_target_compile.
198
199 2006-10-29  Paolo Carlini  <pcarlini@suse.de>
200
201         * src/debug.cc (_Safe_sequence_base::_M_revalidate_singular): Fix
202         pasto, advance __iter only once per iteration.
203
204 2006-10-29  Paolo Carlini  <pcarlini@suse.de>
205         
206         PR libstdc++/29520
207         * include/tr1/random (geometric_distribution<>::
208         operator()(_UniformRandomNumberGenerator&)): Only declare.
209         * include/tr1/random.tcc (geometric_distribution<>::
210         operator()(_UniformRandomNumberGenerator&),
211         poisson_distribution<>::operator()(_UniformRandomNumberGenerator&),
212         binomial_distribution<>::operator()(_UniformRandomNumberGenerator&)):
213         Reject candidate floating point values not convertible to the
214         result_type.
215
216 2006-10-28  Paolo Carlini  <pcarlini@suse.de>
217         
218         * include/tr1/array (array<>::_M_at): New.
219         (array<>::at): Fix off-by-one bug, use the above.
220         * testsuite/tr1/6_containers/array/element_access/
221         at_out_of_range.cc: Adjust.
222
223         * include/tr1/array (class array<>): Remove non-conforming default
224         for the second parameter.
225         * include/ext/array_allocator.h: Adjust.
226
227         * include/tr1/array (array<>::front, array<>::back): Do not return
228         a reference to memory not belonging to the array when _Nm == 0.
229
230 2006-10-17  Paolo Carlini  <pcarlini@suse.de>
231
232         * include/bits/locale_facets.tcc (money_get<>::__do_get(iter_type,
233         iter_type, bool, ios_base&, ios_base::iostate&, double&),
234         money_get<>::do_get(iter_type, iter_type, bool, ios_base&,
235         ios_base::iostate&, long double&), money_get<>::do_get(iter_type,
236         iter_type, bool, ios_base&, ios_base::iostate&, string_type&)): Tidy.
237
238 2006-10-17  Paolo Carlini  <pcarlini@suse.de>
239
240         PR libstdc++/26020
241         * include/bits/stl_iterator_base_funcs.h (advance): Convert
242         distance parameter to iterator_traits<>::difference_type.
243         * testsuite/24_iterators/26020.cc: New.
244
245 2006-10-17  Benjamin Kosnik  <bkoz@redhat.com>
246
247         * include/tr1/random.tcc: Fixup long line.
248
249 2006-10-17  Benjamin Kosnik  <bkoz@redhat.com>
250
251         PR libstdc++/28514 
252         * include/bits/cpp_type_traits.h (__detail): Uglify namespace.
253         * include/ext/rope: Remove global-scope anonymous namespace, use
254         nested __detail. Fixup resulting formatting issues.
255         * include/ext/ropeimpl.h: Same.
256         * include/tr1/hashtable_policy.h: Remove anonymous namespace
257         nesting for __detail.
258         * include/tr1/random: Revert anonymous namespace to nested
259         __detail namespace.
260         * include/tr1/random.tcc: Same.
261         * src/ext-inst.cc: Fixups for above.
262
263 2006-10-16  Douglas Gregor  <doug.gregor@gmail.com>
264
265         * include/Makefile.am (tr1_headers): Add new tuple_defs.h.
266         * include/Makefile.in (tr1_headers): Regenerate.
267         * include/tr1/tuple (tuple): Move declaration to tuple_defs.h.
268         (get): Ditto.
269         (operator==): Ditto.
270         (operator<): Ditto.
271         (operator!=): Ditto.
272         (operator>): Ditto.
273         (operator<=): Ditto.
274         (operator>=): Ditto.
275         (__stripped_tuple_type): Ditto.
276         Include tuple.defs.h
277         * include/tr1/tuple_iterate.h (tuple): Use
278         _GLIBCXX_TUPLE_ALL_TEMPLATE_PARAMS_UNNAMED macro instead of 10
279         "typename"s.
280         (tuple_element): Use _GLIBCXX_TUPLE_ALL_TEMPLATE_PARAMS and
281         _GLIBCXX_TYPLE_ALL_TEMPLATE_ARGS instead of 10
282         parameters/arguments.
283         * include/tr1/tuple_defs.h: New header, contains declarations and
284         definitions for the tuple template with all arguments.
285         * include/tr1/repeat.h (_GLIBCXX_TUPLE_ALL_TEMPLATE_PARAMS): New.
286         (_GLIBCXX_TUPLE_ALL_TEMPLATE_PARAMS_UNNAMED): New.
287         (_GLIBCXX_TUPLE_ALL_TEMPLATE_ARGS): New.
288         (_GLIBCXX_TEMPLATE_PARAMS_NULL_CLASS): New.
289         (_GLIBCXX_TEMPLATE_ARGS_STRIPPED): New.
290         * scripts/gen_includers.pl: Update.
291         * scripts/gen_includers2.pl: New.       
292
293 2006-10-16  Benjamin Kosnik  <bkoz@redhat.com>
294
295         PR libstdc++/29095 continued
296         * testsuite/lib/libstdc++.exp (v3_target_compile_as_c): Additions
297         so that testing not in the build directory works for the "C"
298         target language.
299
300 2006-10-16  Jakub Jelinek  <jakub@redhat.com>
301
302         * include/bits/basic_string.tcc (_Rep::_S_create): Call
303         _M_set_sharable() for backwards compatibility.
304
305 2006-10-15  Paolo Carlini  <pcarlini@suse.de>
306
307         * include/bits/istream.tcc (getline(basic_istream<>&,
308         basic_string<>&)): Move...
309         * include/bits/basic_string.h: ... here.
310         (operator<<(basic_ostream<>&, const basic_string<>&)): Mark inline.
311
312 2006-10-15  Geoffrey Keating  <geoffk@apple.com>
313
314         * scripts/make_exports.pl: Use -_ rather than --strip-underscores
315         or --strip-underscore.
316
317 2006-10-14  Geoffrey Keating  <geoffk@apple.com>
318
319         * aclocal.m4: Regenerate.
320         * configure: Regenerate with released autoconf-2.59.
321
322 2006-10-14  Paolo Carlini  <pcarlini@suse.de>
323
324         * docs/html/faq/index.html: Update.
325         * docs/html/faq/index.txt: Regenerate.
326
327 2006-10-14  Paolo Carlini  <pcarlini@suse.de>
328
329         * include/bits/ostream.tcc (operator<<(basic_ostream<>&,
330         const char*)): Further fix for throwing widen.
331
332 2006-10-14  Paolo Carlini  <pcarlini@suse.de>
333
334         * include/bits/ostream.tcc (operator<<(basic_ostream<>&,
335         const char*)): Fix thinko in change for libstdc++/28277,
336         avoid memory leaks.
337
338 2006-10-13  Paolo Carlini  <pcarlini@suse.de>
339
340         * include/bits/istream.tcc (operator>>(__istream_type&
341         (*)(__istream_type&)), operator>>(__ios_type& (*)(__ios_type&)),
342         operator>>(ios_base& (*)(ios_base&))): Move...
343         * include/std/std_istream.h: ... here.
344         (operator>>(basic_istream<char,>&, unsigned char&),
345         operator>>(basic_istream<char,>&, signed char&),
346         operator>>(basic_istream<char,>&, unsigned char*),
347         operator>>(basic_istream<char,>&, signed char*)): Mark inline.
348         * include/bits/ostream.tcc (operator<<(__ostream_type&
349         (*)(__ostream_type&)), operator<<(__ios_type& (*)(__ios_type&)),
350         operator<<(ios_base& (*)(ios_base&))): Move...
351         * include/std/std_ostream.h: ... here.
352         (operator<<(basic_ostream<>&, _CharT),
353         operator<<(basic_ostream<>&, char),
354         operator<<(basic_ostream<char,>&, char),
355         operator<<(basic_ostream<char,>&, signed char),
356         operator<<(basic_ostream<char,>&, unsigned char),
357         operator<<(basic_ostream<>&, const _CharT*),
358         operator<<(basic_ostream<char,>&, const char*),
359         operator<<(basic_ostream<char,>&, const signed char*),
360         operator<<(basic_ostream<char,>&, const unsigned char*),
361         endl(basic_ostream<>&), ends(basic_ostream<>&),
362         flush(basic_ostream<>&)): Mark inline.
363
364 2006-10-13  Paolo Carlini  <pcarlini@suse.de>
365
366         PR libstdc++/28277 (partial: ostream bits 2)
367         * include/std/std_ostream.h (basic_ostream<>::_M_insert(const
368         char_type*, streamsize)): New.
369         (basic_ostream<>::_M_write(char_type, streamsize)): Likewise.
370         (operator<<(basic_ostream<>&, _CharT), operator<<(basic_ostream<>&,
371         char), operator<<(basic_ostream<>&, const _CharT*),
372         operator<<(basic_ostream<>&, const char*)): Use the latter.
373         * include/bits/ostream.tcc (basic_ostream<>::_M_insert(const
374         char_type*, streamsize)): Define.
375         (operator<<(basic_ostream<>&, const char*)): Use the latter.
376         (operator<<(basic_ostream<>&, _CharT), operator<<(basic_ostream<>&,
377         char), operator<<(basic_ostream<>&, const _CharT*),
378         operator<<(basic_ostream<>&, const char*),
379         operator<<(basic_ostream<>&, const basic_string<>&)): Remove.
380         * include/bits/basic_string.h (operator<<(basic_ostream<>&,
381         const basic_string<>&)): Use the latter, implement DR 586.
382         * config/abi/pre/gnu.ver: Adjust, export the new _M_insert.
383         * docs/html/ext/howto.html: Add an entry for DR 586.
384         * testsuite/21_strings/basic_string/inserters_extractors/char/
385         28277.cc: New.
386         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/
387         28277.cc: Likewise.
388         * testsuite/27_io/basic_ostream/inserters_character/char/
389         28277-3.cc: Likewise.
390         * testsuite/27_io/basic_ostream/inserters_character/char/
391         28277-4.cc: Likewise.
392         * testsuite/27_io/basic_ostream/inserters_character/wchar_t/
393         28277-2.cc: Likewise.
394         * testsuite/27_io/basic_ostream/inserters_character/wchar_t/
395         28277-3.cc: Likewise.
396         * testsuite/27_io/basic_ostream/inserters_character/wchar_t/
397         28277-4.cc: Likewise.
398
399 2006-10-11  Paolo Carlini  <pcarlini@suse.de>
400
401         * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 44.
402
403 2006-10-11  Benjamin Kosnik  <bkoz@redhat.com>
404
405         PR libstdc++/29426
406         * libsupc++/guard.cc (get_static_mutex): New. 
407         (mutex_wrapper::mutex_wrapper): Use it to get properly initialized
408         recursive mutex without ordering issues.
409
410         * src/locale_init.cc (__get_locale_mutex): No need to
411         uglify. Change to get_locale_mutex.
412         
413 2006-10-11  Paolo Carlini  <pcarlini@suse.de>
414
415         * testsuite/22_locale/num_put/put/char/11.cc: New.
416         * testsuite/22_locale/num_put/put/wchar_t/11.cc: Likewise.
417
418 2006-10-10  Benjamin Kosnik  <bkoz@redhat.com>
419
420         * testsuite/lib/libstdc++.exp (v3-build_support): Link
421         libtestc++.a, not a bunch of object files.
422
423 2006-10-09  Benjamin Kosnik  <bkoz@redhat.com>
424
425         PR libstdc++/29118
426         * src/locale_init.cc (__get_locale_mutex): New. 
427         (locale::locale): Use it.
428         (locale::global): Use it.       
429
430 2006-10-09  Benjamin Kosnik  <bkoz@redhat.com>
431
432         PR libstdc++/29095
433         * libsupc++/cxxabi.h (__cxa_cdtor_type): Explicit "C" linkage.
434         * config/cpu/arm/cxxabi_tweaks.h: Same.
435         * config/cpu/generic/cxxabi_tweaks.h: Same.
436         * testsuite/abi: Add.
437         * testsuite/abi/header_cxxabi.cc: New.
438         * testsuite/demangle: Move...
439         * testsuite/abi/demangle: ...here.
440         * testsuite/libstdc++-dg/conformance.exp: Adjust testsuite file
441         calculation.
442         * scripts/create_testsuite_files: Same.
443         * testsuite/lib/libstdc++.exp (v3_target_compile_as_c): New.
444         (libstdc++-dg-test): Use it.
445         
446 2006-10-09  Paolo Carlini  <pcarlini@suse.de>
447
448         PR libstdc++/28277 (partial: __add_grouping)
449         * include/bits/locale_facets.tcc (__add_grouping<>(_CharT*, _CharT,
450         const char*, size_t, const _CharT*, const _CharT*)): Rewrite in
451         non-recursive form.
452
453 2006-10-09  Paolo Carlini  <pcarlini@suse.de>
454
455         PR libstdc++/28277 (partial: money_put bits)
456         * include/bits/locale_facets.tcc (money_put<>::_M_insert(iter_type,
457         ios_base&, char_type, const string_type&)): Avoid __builtin_alloca
458         with no limit, do the work in place.
459
460         * include/bits/locale_facets.tcc (money_put<>::do_put(iter_type,
461         bool, ios_base&, char_type, long double)): Avoid unnecessary
462         __builtin_alloca, do the work in place.
463
464 2006-10-09  Benjamin Kosnik  <bkoz@redhat.com>
465
466         * src/globals_io.cc (_GLIBCXX_once): Remove, unused.
467         (_GLIBCXX_mutex): Same.
468         (_GLIBCXX_mutex_addres): Same.
469         (_GLIBCXX_mutex_init): Same.
470         (_GLIBCXX_mutex_address_init): Same.
471
472 2006-10-07  Paolo Carlini  <pcarlini@suse.de>
473
474         PR libstdc++/28277 (partial: money_get bits)
475         * include/bits/locale_facets.tcc (money_get<>::do_get(iter_type,
476         iter_type, bool, ios_base&, ios_base::iostate&, string_type&)):
477         Avoid __builtin_alloca with no limit, do the work in place.
478
479 2006-10-07  Ion Gaztanaga  <igaztanaga@gmail.com>
480             Paolo Carlini  <pcarlini@suse.de>
481
482         * include/bits/stl_tree.h (_Rb_tree<>::erase(const _Key&)): Don't
483         call std::distance unnecessarily.
484
485 2006-10-06  Paolo Carlini  <pcarlini@suse.de>
486
487         PR libstdc++/29368
488         * include/bits/basic_string.h: Adjust rfind documentation.
489         * include/ext/vstring.h: Likewise.
490
491 2006-10-06  Paolo Carlini  <pcarlini@suse.de>
492
493         PR libstdc++/29354
494         * include/bits/sstream.tcc (basic_stringbuf<>::seekpos(pos_type,
495         ios_base::openmode)): Allow for seek to pos_type(off_type(0))
496         when the stream is empty.
497         * testsuite/27_io/basic_stringbuf/seekpos/char/29354.cc: New.
498         * testsuite/27_io/basic_stringbuf/seekpos/wchar_t/29354.cc: New.
499
500 2006-10-04  Benjamin Kosnik  <bkoz@redhat.com>
501             Mike Stump  <mrs@apple.com>
502         
503         * testsuite/27_io/ios_base/storage/2.cc: Fail on Darwin 8.[0-4].* only.
504         * testsuite/23_containers/vector/resize/1.cc: Same.
505
506 2006-10-04  Benjamin Kosnik  <bkoz@redhat.com>
507
508         * testsuite/util/performance/priority_queue/mem_usage/
509         pop_test.hpp: Correct typo.
510         * testsuite/util/performance/assoc/mem_usage/
511         multimap_insert_test.hpp: Same.
512         * testsuite/util/performance/assoc/mem_usage/erase_test.hpp: Same.
513
514 2006-10-03  Benjamin Kosnik  <bkoz@redhat.com>
515
516         * testsuite/util/testsuite_allocator.h (allocation_tracker): To
517         tracker_allocator_counter.
518         (allocation_tracker::allocationTotal): To get_allocation_count.
519         (allocation_tracker::deallocationTotal): To get_deallocation_count.
520         (allocation_tracker::constructCount): To get_construct_count.
521         (allocation_tracker::destructCount): To get_destruct_count.     
522         (allocation_tracker::resetCounts): To reset.
523         (tracker_alloc): To tracker_allocator.
524         * testsuite/util/performance/mem: Remove.
525         * testsuite/util/performance/mem/mem_track_allocator_base.hpp: Remove.
526         * testsuite/util/performance/mem/mem_track_allocator.hpp: Remove.
527         * testsuite/27_io/basic_stringbuf/4.cc: Adjust for new names
528         or includes.
529         * testsuite/ext/hash_set/check_construct_destroy.cc: Same.
530         * testsuite/ext/slist/check_construct_destroy.cc: Same.
531         * testsuite/performance/ext/pb_ds/
532         hash_random_int_erase_mem_usage.cc: Same.
533         * testsuite/performance/ext/pb_ds/multimap_text_insert_mem_usage.hpp
534         * testsuite/performance/ext/pb_ds/
535         priority_queue_text_pop_mem_usage.cc: Same.
536         * testsuite/23_containers/vector/capacity/2.cc: Same.
537         * testsuite/23_containers/vector/cons/4.cc: Same.
538         * testsuite/23_containers/vector/check_construct_destroy.cc: Same.
539         * testsuite/23_containers/deque/cons/2.cc: Same.
540         * testsuite/23_containers/deque/check_construct_destroy.cc: Same.
541         * testsuite/23_containers/list/check_construct_destroy.cc: Same.
542         * testsuite/23_containers/set/check_construct_destroy.cc: Same.
543         * testsuite/util/testsuite_allocator.h
544         * testsuite/util/performance/priority_queue/mem_usage/pop_test.hpp
545         * testsuite/util/performance/assoc/mem_usage/multimap_insert_test.hpp
546         * testsuite/util/performance/assoc/mem_usage/erase_test.hpp
547         * testsuite/util/testsuite_allocator.cc: Same.
548         
549 2006-10-03  Benjamin Kosnik  <bkoz@redhat.com>
550
551         * testsuite/util/native_type/priority_queue/native_pq_tag.hpp: Remove.
552         * testsuite/util/statistic/sample_var.hpp: Rename to...
553         * testsuite/util/statistic/sample_variance.hpp: ... this.
554         * testsuite/util/statistic/res_recorder.hpp: Rename to...
555         * testsuite/util/statistic/result_recorder.hpp: ... this.
556         * testsuite/util/statistic/sample_mean.hpp: Format.
557         * testsuite/util/statistic/sample_mean_confidence_checker.hpp: Same.
558         * testsuite/util/regression/trait/priority_queue/trait.hpp: Same.
559         * testsuite/util/regression/trait/erase_if_fn.hpp: Same.
560         * testsuite/util/regression/trait/assoc/trait.hpp: Same.
561         * testsuite/util/native_type/priority_queue/
562         native_priority_queue.hpp: Same.
563         * testsuite/util/native_type/assoc/native_tree_tag.hpp: Same.
564         * testsuite/util/native_type/assoc/native_hash_tag.hpp: Same.
565         * testsuite/util/native_type/assoc/native_hash_map.hpp: Same.
566         * testsuite/util/performance/priority_queue/timing/join_test.hpp: Same.
567         * testsuite/util/performance/priority_queue/timing/
568         modify_test.hpp: Same.
569         * testsuite/util/performance/assoc/timing/
570         subscript_insert_test.hpp: Same.
571         * testsuite/util/performance/time/timing_test_base.hpp: Same.
572
573 2006-10-02  Paolo Carlini  <pcarlini@suse.de>
574
575         * include/ext/rc_string_base.h (_M_compare<wchar_t>):
576         Protect with _GLIBCXX_USE_WCHAR_T.
577         * include/ext/sso_string_base.h (_M_compare<wchar_t>):
578         Likewise.
579         (__sso_string_base<>::_M_destroy): Inline.
580
581 2006-10-02  Benjamin Kosnik  <bkoz@redhat.com>
582
583         * include/ext/pb_ds/detail/basic_types.hpp (comp_hash_): Remove,
584         format. 
585         * include/ext/pb_ds/detail/types_traits.hpp
586         (types_traits::comp_hash): Use pair typedef.    
587         * include/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp: Same.
588         * include/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp: Same.
589
590 2006-10-01  Paolo Carlini  <pcarlini@suse.de>
591
592         * include/tr1/random (xor_combine<>::_M_initialize_max_aux): New.
593         (xor_combine<>::operator()()): Tweak per N2079.
594         * include/tr1/random.tcc (xor_combine<>::_M_initialize_max_aux):
595         Define.
596         (xor_combine<>::_M_initialize_max): Use it.
597         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
598         cons/default.cc: Adjust.
599         * docs/html/ext/tr1.html: Adjust.
600
601 2006-10-01  Paolo Carlini  <pcarlini@suse.de>
602
603         * include/ext/type_traits.h: Avoid _T, badname for some targets;
604         also avoid plain T.
605
606 2006-10-01  Paolo Carlini  <pcarlini@suse.de>
607
608         * config/io/basic_file_stdio.cc: As an extension, and
609         consistently with C facilities, allow for in|out|app and
610         in|out|app|binary openmodes.
611         * testsuite/27_io/basic_filebuf/open/char/4.cc: New.
612
613 2006-09-30  Benjamin Kosnik  <bkoz@redhat.com>
614
615         * include/ext/pb_ds/detail/types_traits.hpp (store_extra_false_type):
616         To false_type.
617         (store_extra_true_type): To true_type.
618         (no_throw_copies_true_type): To true_type.
619         (no_throw_copies_false_type): To false_type.
620         * include/ext/pb_ds/detail/cc_hash_table_map_/
621         insert_no_store_hash_fn_imps.hpp: Same.
622         * include/ext/pb_ds/detail/cc_hash_table_map_/
623         resize_store_hash_fn_imps.hpp: Same.
624         * include/ext/pb_ds/detail/cc_hash_table_map_/
625         insert_store_hash_fn_imps.hpp: Same.
626         * include/ext/pb_ds/detail/cc_hash_table_map_/
627         entry_list_fn_imps.hpp: Same.
628         * include/ext/pb_ds/detail/cc_hash_table_map_/
629         debug_no_store_hash_fn_imps.hpp: Same.
630         * include/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp: Same.
631         * include/ext/pb_ds/detail/cc_hash_table_map_/
632         debug_store_hash_fn_imps.hpp: Same.
633         * include/ext/pb_ds/detail/cc_hash_table_map_/
634         resize_no_store_hash_fn_imps.hpp: Same.
635         * include/ext/pb_ds/detail/gp_hash_table_map_/
636         insert_no_store_hash_fn_imps.hpp: Same.
637         * include/ext/pb_ds/detail/gp_hash_table_map_/
638         resize_store_hash_fn_imps.hpp: Same.
639         * include/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp: Same.
640         * include/ext/pb_ds/detail/gp_hash_table_map_/
641         insert_store_hash_fn_imps.hpp: Same.
642         * include/ext/pb_ds/detail/gp_hash_table_map_/
643         find_no_store_hash_fn_imps.hpp: Same.
644         * include/ext/pb_ds/detail/gp_hash_table_map_/
645         debug_no_store_hash_fn_imps.hpp: Same.
646         * include/ext/pb_ds/detail/gp_hash_table_map_/
647         debug_store_hash_fn_imps.hpp: Same.
648         * include/ext/pb_ds/detail/gp_hash_table_map_/
649         resize_no_store_hash_fn_imps.hpp: Same.
650         * include/ext/pb_ds/detail/list_update_map_/lu_map_.hpp: Same.
651
652 2006-09-29  Benjamin Kosnik  <bkoz@redhat.com>
653
654         * include/ext/pb_ds/detail/cc_hash_table_map_/
655         constructor_destructor_no_store_hash_fn_imps.hpp: Formating fixes.
656         * include/ext/pb_ds/detail/basic_tree_policy/
657         null_node_metadata.hpp: Same.
658         * include/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp: Same.
659         * include/ext/pb_ds/detail/basic_types.hpp: Same.
660         * include/ext/pb_ds/detail/list_update_policy/
661         mtf_lu_policy_imp.hpp: Same.
662         * include/ext/pb_ds/detail/list_update_policy/
663         counter_lu_metadata.hpp: Same.
664         * include/ext/pb_ds/detail/list_update_policy/
665         sample_update_policy.hpp: Same.
666         * include/ext/pb_ds/detail/list_update_policy/
667         counter_lu_policy_imp.hpp: Same.
668         * include/ext/pb_ds/list_update_policy.hpp: Same.       
669
670 2006-09-29  Benjamin Kosnik  <bkoz@redhat.com>
671             Howard Hinnant  <hhinnant@apple.com>
672             Paolo Carlini  <pcarlini@suse.de>
673
674         * include/ext/type_traits.h (__remove_unsigned): Fix up for signed
675         char, bool, wchar_t, and floating point types.
676         (__add_unsigned): Same. 
677         * testsuite/ext/type_traits: New.
678         * testsuite/ext/type_traits.cc: Move...
679         * testsuite/ext/type_traits/numeric_traits.cc: ...here. 
680         * testsuite/ext/type_traits/add_unsigned_floating_neg.cc: New.
681         * testsuite/ext/type_traits/add_unsigned_integer_neg.cc: New.
682         * testsuite/ext/type_traits/remove_unsigned_floating_neg.cc: New.
683         * testsuite/ext/type_traits/remove_unsigned_integer_neg.cc: New.
684         * testsuite/ext/type_traits/add_unsigned.cc: New.
685         * testsuite/ext/type_traits/remove_unsigned.cc: New.
686         
687 2006-09-29  Joseph S. Myers  <joseph@codesourcery.com>
688
689         * acinclude.m4 (enable_symvers): Default to no if unable to link.
690         * configure: Regenerate.
691
692 2006-09-28  Paolo Carlini  <pcarlini@suse.de>
693
694         * include/bits/stl_uninitialized.h
695         (__uninitialized_fill_n_a(_ForwardIterator, _Size, const _Tp&,
696         allocator<>)): Inline.
697
698 2006-09-28  Benjamin Kosnik  <bkoz@redhat.com>
699
700         * include/ext/pb_ds/detail/cc_hash_table_map_/
701         erase_store_hash_fn_imps.hpp: Formatting fixes.
702         * include/ext/pb_ds/detail/cc_hash_table_map_/
703         constructor_destructor_no_store_hash_fn_imps.hpp: Same.
704         * include/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp: Same.
705         * include/ext/pb_ds/detail/cc_hash_table_map_/
706         insert_no_store_hash_fn_imps.hpp: Same.
707         * include/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp: Same.
708         * include/ext/pb_ds/detail/cc_hash_table_map_/
709         policy_access_fn_imps.hpp: Same.
710         * include/ext/pb_ds/detail/cc_hash_table_map_/
711         resize_store_hash_fn_imps.hpp: Same.
712         * include/ext/pb_ds/detail/cc_hash_table_map_/
713         constructor_destructor_store_hash_fn_imps.hpp: Same.
714         * include/ext/pb_ds/detail/cc_hash_table_map_/
715         insert_store_hash_fn_imps.hpp: Same.
716         * include/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp: Same.
717         * include/ext/pb_ds/detail/cc_hash_table_map_/
718         entry_list_fn_imps.hpp: Same.
719         * include/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp: Same.
720         * include/ext/pb_ds/detail/cc_hash_table_map_/
721         find_store_hash_fn_imps.hpp: Same.
722         * include/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp: Same.
723         * include/ext/pb_ds/detail/cc_hash_table_map_/
724         debug_no_store_hash_fn_imps.hpp: Same.
725         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp: Same.
726         * include/ext/pb_ds/detail/cc_hash_table_map_/
727         constructor_destructor_fn_imps.hpp: Same.
728         * include/ext/pb_ds/detail/cc_hash_table_map_/
729         cond_key_dtor_entry_dealtor.hpp: Same.
730         * include/ext/pb_ds/detail/cc_hash_table_map_/
731         debug_store_hash_fn_imps.hpp: Same.
732         * include/ext/pb_ds/detail/cc_hash_table_map_/
733         erase_no_store_hash_fn_imps.hpp: Same.
734         * include/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp: Same.
735         * include/ext/pb_ds/detail/cc_hash_table_map_/
736         iterators_fn_imps.hpp: Same.
737         * include/ext/pb_ds/detail/cc_hash_table_map_/
738         resize_no_store_hash_fn_imps.hpp: Same.
739         * include/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp: Same.
740         * include/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp: Same.
741         * include/ext/pb_ds/detail/pat_trie_/child_iterator.hpp: Same.
742         * include/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp: Same.
743         * include/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp: Same.
744         * include/ext/pb_ds/detail/pat_trie_/head.hpp: Same.
745         * include/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp: Same.
746         * include/ext/pb_ds/detail/pat_trie_/cond_dtor_entry_dealtor.hpp: Same.
747         * include/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp: Same.
748         * include/ext/pb_ds/detail/pat_trie_/leaf.hpp: Same.
749         * include/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp: Same.
750         * include/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp: Same.
751         * include/ext/pb_ds/detail/pat_trie_/node_base.hpp: Same.
752         * include/ext/pb_ds/detail/pat_trie_/node_iterators.hpp: Same.
753         * include/ext/pb_ds/detail/pat_trie_/point_iterators.hpp: Same.
754         * include/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp: Same.
755         * include/ext/pb_ds/detail/gp_hash_table_map_/
756         erase_store_hash_fn_imps.hpp: Same.
757         * include/ext/pb_ds/detail/gp_hash_table_map_/
758         constructor_destructor_no_store_hash_fn_imps.hpp: Same.
759         * include/ext/pb_ds/detail/gp_hash_table_map_/
760         insert_no_store_hash_fn_imps.hpp: Same.
761         * include/ext/pb_ds/detail/gp_hash_table_map_/
762         policy_access_fn_imps.hpp: Same.
763         * include/ext/pb_ds/detail/gp_hash_table_map_/
764         resize_store_hash_fn_imps.hpp: Same.
765         * include/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp: Same.
766         * include/ext/pb_ds/detail/gp_hash_table_map_/
767         constructor_destructor_store_hash_fn_imps.hpp: Same.
768         * include/ext/pb_ds/detail/gp_hash_table_map_/
769         insert_store_hash_fn_imps.hpp: Same.
770         * include/ext/pb_ds/detail/gp_hash_table_map_/
771         iterator_fn_imps.hpp: Same.
772         * include/ext/pb_ds/detail/gp_hash_table_map_/
773         info_fn_imps.hpp: Same.
774         * include/ext/pb_ds/detail/gp_hash_table_map_/
775         find_no_store_hash_fn_imps.hpp: Same.
776         * include/ext/pb_ds/detail/gp_hash_table_map_/
777         find_store_hash_fn_imps.hpp: Same.
778         * include/ext/pb_ds/detail/gp_hash_table_map_/
779         debug_no_store_hash_fn_imps.hpp: Same.
780         * include/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp: Same.
781         * include/ext/pb_ds/detail/gp_hash_table_map_/
782         constructor_destructor_fn_imps.hpp: Same.
783         * include/ext/pb_ds/detail/gp_hash_table_map_/
784         erase_no_store_hash_fn_imps.hpp: Same.
785         * include/ext/pb_ds/detail/gp_hash_table_map_/
786         resize_no_store_hash_fn_imps.hpp: Same.
787         * include/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp: Same.
788         * include/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp: Same.
789         * include/ext/pb_ds/detail/ov_tree_map_/
790         policy_access_fn_imps.hpp: Same.
791         * include/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp: Same.
792         * include/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp: Same.
793         * include/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp: Same.
794         * include/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp: Same.
795         * include/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp: Same.
796         * include/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp: Same.
797         * include/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp: Same.
798         * include/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp: Same.
799         * include/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp: Same.
800         * include/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp: Same.
801         * include/ext/pb_ds/detail/splay_tree_/
802         constructors_destructor_fn_imps.hpp: Same.
803         * include/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp: Same.
804         * include/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp: Same.
805         * include/ext/pb_ds/detail/splay_tree_/node.hpp: Same.
806         * include/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp: Same.
807         * include/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp: Same.
808         * include/ext/pb_ds/detail/splay_tree_/traits.hpp: Same.
809         * include/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp: Same.
810         * include/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp: Same.
811         * include/ext/pb_ds/detail/list_update_map_/
812         entry_metadata_base.hpp: Same.
813         * include/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp: Same.
814         * include/ext/pb_ds/detail/list_update_map_/lu_map_.hpp: Same.
815         * include/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp: Same.
816         * include/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp: Same.
817         * include/ext/pb_ds/detail/list_update_map_/
818         iterators_fn_imps.hpp: Same.
819         * include/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp: Same.
820         * include/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp: Same.
821         * include/ext/pb_ds/detail/rb_tree_map_/
822         constructors_destructor_fn_imps.hpp: Same.
823         * include/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp: Same.
824         * include/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp: Same.
825         * include/ext/pb_ds/detail/rb_tree_map_/node.hpp: Same.
826         * include/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp: Same.
827         * include/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp: Same.
828         * include/ext/pb_ds/detail/rb_tree_map_/traits.hpp: Same.
829
830 2006-09-28  Paolo Carlini  <pcarlini@suse.de>
831
832         * include/tr1/boost_shared_ptr.h: Use __atomic_add_dispatch and
833         __exchange_and_add_dispatch everywhere.
834
835 2006-09-27  Benjamin Kosnik  <bkoz@redhat.com>
836
837         * include/ext/typelist.h (type_to_type): Remove.
838         * include/ext/throw_allocator.h (assert_allocatod): Remove.
839         (check_allocated(label)): New.
840         (print_to_string): Print numerical output correctly.
841
842         * testsuite/ext/pb_ds/example/hash_resize_neg.cc: Adjust line numbers.
843
844         * testsuite/util/regression/rand/priority_queue/detail/
845         operator_fn_imps.hpp: Set and clear label, throw
846         probability. Check only allocations of the marked label.
847         * testsuite/util/regression/rand/assoc/detail/
848         operator_fn_imps.hpp: Same.
849
850         * testsuite/performance/ext/pb_ds/text_find_timing.cc: Adjustments for
851         removal of type_to_type.
852         * testsuite/performance/ext/pb_ds/
853         hash_random_int_erase_mem_usage.cc: Same.
854         * testsuite/performance/ext/pb_ds/tree_text_insert_timing.cc: Same.
855         * testsuite/performance/ext/pb_ds/
856         priority_queue_text_push_timing.cc: Same.
857         * testsuite/performance/ext/pb_ds/
858         random_int_subscript_find_timing.cc: Same.
859         * testsuite/performance/ext/pb_ds/tree_split_join_timing.cc: Same.
860         * testsuite/performance/ext/pb_ds/random_int_find_timing.cc: Same.
861         * testsuite/performance/ext/pb_ds/
862         multimap_text_insert_mem_usage.hpp: Same.
863         * testsuite/performance/ext/pb_ds/
864         priority_queue_random_int_push_timing.cc: Same.
865         * testsuite/performance/ext/pb_ds/multimap_text_find_timing.hpp: Same.
866         * testsuite/performance/ext/pb_ds/
867         priority_queue_text_modify_timing.hpp: Same.
868         * testsuite/performance/ext/pb_ds/
869         tree_order_statistics_timing.cc: Same.
870         * testsuite/performance/ext/pb_ds/
871         priority_queue_text_push_pop_timing.cc: Same.
872         * testsuite/performance/ext/pb_ds/
873         priority_queue_text_join_timing.cc: Same.
874         * testsuite/performance/ext/pb_ds/
875         priority_queue_random_int_push_pop_timing.cc: Same.
876         * testsuite/performance/ext/pb_ds/
877         random_int_subscript_insert_timing.cc: Same.
878         * testsuite/performance/ext/pb_ds/tree_text_lor_find_timing.cc: Same.
879         * testsuite/performance/ext/pb_ds/
880         multimap_text_insert_timing.hpp: Same.
881         * testsuite/performance/ext/pb_ds/
882         priority_queue_text_pop_mem_usage.cc: Same.
883         * testsuite/performance/ext/pb_ds/
884         hash_zlob_random_int_find_timing.cc: Same. 
885         * testsuite/util/regression/trait/assoc/type_trait.hpp: Same.
886         * testsuite/util/regression/rand/priority_queue/
887         rand_regression_test.hpp: Same.
888         * testsuite/util/regression/rand/assoc/detail/
889         constructor_destructor_fn_imps.hpp: Same.
890         * testsuite/util/regression/rand/assoc/detail/insert_fn_imps.hpp: Same.
891         * testsuite/util/regression/rand/assoc/rand_regression_test.hpp: Same.
892         * testsuite/util/regression/rand/assoc/
893         container_rand_regression_test.hpp: Same.
894         * testsuite/util/regression/assoc/common_type.hpp: Same.
895         * testsuite/util/regression/basic_type.hpp: Same.
896         * testsuite/util/common_type/assoc/common_type.hpp: Same.
897         * testsuite/util/common_type/assoc/string_form.hpp: Same.
898         * testsuite/util/common_type/assoc/template_policy.hpp: Same.
899         * testsuite/util/common_type/assoc/native_set.hpp: Same.
900         * testsuite/util/performance/priority_queue/mem_usage/
901         pop_test.hpp: Same.
902         * testsuite/util/performance/priority_queue/timing/
903         push_pop_test.hpp: Same.
904         * testsuite/util/performance/priority_queue/timing/join_test.hpp: Same.
905         * testsuite/util/performance/priority_queue/timing/push_test.hpp: Same.
906         * testsuite/util/performance/priority_queue/timing/
907         modify_test.hpp: Same.
908         * testsuite/util/performance/assoc/mem_usage/
909         multimap_insert_test.hpp: Same.
910         * testsuite/util/performance/assoc/mem_usage/erase_test.hpp: Same.
911         * testsuite/util/performance/assoc/timing/
912         multimap_insert_test.hpp: Same.
913         * testsuite/util/performance/assoc/timing/
914         subscript_find_test.hpp: Same.
915         * testsuite/util/performance/assoc/timing/find_test.hpp: Same.
916         * testsuite/util/performance/assoc/timing/
917         subscript_insert_test.hpp: Same.
918         * testsuite/util/performance/assoc/timing/insert_test.hpp: Same.
919         * testsuite/util/performance/assoc/timing/
920         tree_order_statistics_test.hpp: Same.
921         * testsuite/util/performance/assoc/timing/multimap_find_test.hpp: Same.
922         * testsuite/util/performance/assoc/timing/
923         tree_split_join_test.hpp: Same.
924         * testsuite/util/performance/assoc/multimap_common_type.hpp: Same.
925         * testsuite/util/testsuite_common_types.h: Same.
926
927         * include/ext/pb_ds/detail/cc_hash_table_map_/
928         constructor_destructor_no_store_hash_fn_imps.hpp: Typedef
929         normalization, consistency in member names between cc and gp hash
930         tables, formatting fixes.
931         * include/ext/pb_ds/detail/cc_hash_table_map_/
932         erase_store_hash_fn_imps.hpp: Same.
933         * include/ext/pb_ds/detail/cc_hash_table_map_/
934         insert_no_store_hash_fn_imps.hpp: Same.
935         * include/ext/pb_ds/detail/cc_hash_table_map_/
936         constructor_destructor_store_hash_fn_imps.hpp: Same.
937         * include/ext/pb_ds/detail/cc_hash_table_map_/
938         insert_store_hash_fn_imps.hpp: Same.
939         * include/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp: Same.
940         * include/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp: Same.
941         * include/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp: Same.
942         * include/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp: Same.
943         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp: Same.
944         * include/ext/pb_ds/detail/cc_hash_table_map_/
945         constructor_destructor_fn_imps.hpp: Same.
946         * include/ext/pb_ds/detail/cc_hash_table_map_/
947         erase_no_store_hash_fn_imps.hpp: Same.
948         * include/ext/pb_ds/detail/gp_hash_table_map_/
949         constructor_destructor_no_store_hash_fn_imps.hpp: Same.
950         * include/ext/pb_ds/detail/gp_hash_table_map_/
951         erase_store_hash_fn_imps.hpp: Same.
952         * include/ext/pb_ds/detail/gp_hash_table_map_/
953         insert_no_store_hash_fn_imps.hpp: Same.
954         * include/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp: Same.
955         * include/ext/pb_ds/detail/gp_hash_table_map_/
956         constructor_destructor_store_hash_fn_imps.hpp: Same.
957         * include/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp: Same.
958         * include/ext/pb_ds/detail/gp_hash_table_map_/
959         insert_store_hash_fn_imps.hpp: Same.
960         * include/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp: Same.
961         * include/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp: Same.
962         * include/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp: Same.
963         * include/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp: Same.
964         * include/ext/pb_ds/detail/gp_hash_table_map_/
965         constructor_destructor_fn_imps.hpp: Same.
966         * include/ext/pb_ds/detail/gp_hash_table_map_/
967         erase_no_store_hash_fn_imps.hpp: Same.
968
969         * include/ext/pb_ds/assoc_container.hpp: Formatting fixes.
970         * include/ext/pb_ds/detail/resize_policy/
971         hash_prime_size_policy_imp.hpp: Same.
972         * include/ext/pb_ds/detail/resize_policy/
973         hash_standard_resize_policy_imp.hpp: Same.
974         * include/ext/pb_ds/detail/types_traits.hpp: Same.
975         * include/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp: Same.
976         * include/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp: Same.
977         * include/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp: Same.
978         * include/ext/pb_ds/detail/hash_fn/
979         direct_mod_range_hashing_imp.hpp: Same.
980         * include/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp: Same.
981         * include/ext/pb_ds/detail/hash_fn/
982         direct_mask_range_hashing_imp.hpp: Same.
983         
984 2006-09-27  Paolo Carlini  <pcarlini@suse.de>
985
986         PR libstdc++/29217
987         * src/localename.cc (locale::_Impl::_M_replace_categories)):
988         Compensate for the inconsistent numerical encodings of the
989         collate and time categories vs the corresponding names.
990         * testsuite/22_locale/locale/cons/29217.cc: New.
991
992         * testsuite/22_locale/locale/cons/2.cc: Enable and split
993         out the few ENC_TRAITS bits to...
994         * testsuite/22_locale/locale/cons/unicode/1.cc... here.
995
996 2006-09-25  Howard Hinnant  <hhinnant@apple.com>
997
998         PR libstdc++/29224
999         * include/tr1/functional_iterate.h: Avoid -Wshadow warnings.
1000
1001 2006-09-25  Paolo Carlini  <pcarlini@suse.de>
1002
1003         PR libstdc++/29179
1004         * include/ext/mt_allocator.h (__pool_base): Adjust/extend
1005         documentation in comments.
1006
1007 2006-09-24  Paolo Carlini  <pcarlini@suse.de>
1008
1009         * include/tr1/boost_shared_ptr.h (shared_ptr<>::shared_ptr(const
1010         __shared_ptr<>&), shared_ptr(const __weak_ptr<>&),
1011         shared_ptr(const __shared_ptr<>&, __static_cast_tag),
1012         shared_ptr(const __shared_ptr<>&, __const_cast_tag),
1013         shared_ptr(const __shared_ptr<>&, __dynamic_cast_tag),
1014         weak_ptr<>::weak_ptr(const __shared_ptr<>&), weak_ptr(const
1015         __weak_ptr<>&)): Remove.
1016         (shared_ptr<>::shared_ptr(const shared_ptr<>&),
1017         shared_ptr(const weak_ptr<>&), shared_ptr(const shared_ptr<>&,
1018         __static_cast_tag), shared_ptr(const shared_ptr<>&,
1019         __const_cast_tag), shared_ptr(const shared_ptr<>&,
1020         __dynamic_cast_tag), static_pointer_cast(const shared_ptr<>&),
1021         const_pointer_cast(const shared_ptr<>&), dynamic_pointer_cast(const
1022         shared_ptr<>&), weak_ptr<>::weak_ptr(const shared_ptr<>&),
1023         weak_ptr(const weak_ptr<>&), weak_ptr<>::lock(), 
1024         __enable_shared_from_this_helper(const __shared_count<>&, const
1025         enable_shared_from_this<>*, const _Tp2*)): Add. 
1026         (class enable_shared_from_this): Add.
1027         * testsuite/tr1/2_general_utilities/memory/enable_shared_from_this/
1028         1.cc: New.
1029         * testsuite/tr1/2_general_utilities/memory/shared_ptr/casts/1.cc:
1030         Likewise.
1031         * testsuite/tr1/2_general_utilities/memory/weak_ptr/lock/1.cc:
1032         Likewise.
1033
1034         * include/tr1/boost_shared_ptr.h: Further formatting and
1035         uglification fixes.
1036
1037 2006-09-22  Paolo Carlini  <pcarlini@suse.de>
1038
1039         PR libstdc++/29134 (vector<bool> bits)
1040         * include/bits/stl_bvector.h (vector<bool>::max_size):
1041         Use allocator' max_size.
1042         * testsuite/23_containers/vector/bool/capacity/29134.cc: New.
1043
1044         * testsuite/23_containers/deque/capacity/29134-2.cc: Minor tweak.
1045         * testsuite/23_containers/vector/capacity/29134-2.cc: Likewise.
1046
1047 2006-09-22  Paolo Carlini  <pcarlini@suse.de>
1048
1049         * include/tr1/type_traits (add_reference): Robustify vs
1050         reference to void.
1051         * testsuite/tr1/4_metaprogramming/reference_modifications/
1052         add_reference.cc: Add test.
1053
1054         * include/tr1/memory: include <tr1/type_traits>.
1055         * include/tr1/boost_shared_ptr.h (__shared_ptr<>::operator*):
1056         Use add_reference instead.
1057         * testsuite/tr1/2_general_utilities/memory/enable_shared_from_this/
1058         explicit_instantiation/1.cc: New.
1059         * testsuite/tr1/2_general_utilities/memory/shared_ptr/
1060         explicit_instantiation/1.cc: Likewise.
1061         * testsuite/tr1/2_general_utilities/memory/weak_ptr/
1062         explicit_instantiation/1.cc: Likewise.
1063
1064         * testsuite/util/testsuite_tr1.h: Tweak; avoid empty enum.
1065
1066         * include/tr1/type_traits_fwd.h: Spelling fix.
1067
1068         * include/tr1/boost_shared_ptr.h: Obvious stylistic fixes.
1069
1070 2006-09-22  Paolo Carlini  <pcarlini@suse.de>
1071
1072         * include/tr1/boost_shared_ptr.h: Trivial formatting fixes.
1073
1074 2006-09-21  Benjamin Kosnik  <bkoz@redhat.com>
1075
1076         * include/ext/type_traits.h (__numeric_traits_integer): New.
1077         (__numeric_traits_floating): New.
1078         (__numeric_traits): Use them.
1079         * testsuite/ext/type_traits.cc: New.
1080         
1081 2006-09-21  Paolo Carlini  <pcarlini@suse.de>
1082
1083         * include/ext/hash_map: Remove forward declaration of equality
1084         operator, not needed for friendship of all its instances.
1085         * include/ext/hash_set: Likewise.
1086         * include/bits/stl_set.h: Likewise for equality operator and
1087         operator less.
1088         * include/bits/stl_multiset.h: Likewise.
1089         * include/bits/stl_multimap.h: Likewise.
1090         * include/bits/stl_queue.h: Likewise.
1091         * include/bits/stl_stack.h: Likewise.
1092         * include/bits/streambuf_iterator.h: Likewise for copy.
1093         * include/std/std_streambuf.h: Likewise for __copy_aux and find.
1094         * include/tr1/boost_shared_ptr.h: Likewise for get_deleter.
1095         * include/tr1/random: Likewise, remove all forward declarations
1096         of inserters and extractors.
1097
1098 2006-09-21  Paolo Carlini  <pcarlini@suse.de>
1099
1100         * include/ext/sso_string_base.h (__sso_string_base<>::_M_max_size(),
1101         _M_destroy, _M_create): Use _M_get_allocator.
1102
1103 2006-09-21  Ben Elliston  <bje@au.ibm.com>
1104
1105         * crossconfig.m4 (GLIBCXX_CROSSCONFIG): Remove invocations of
1106         GLIBCXX_CHECK_COMPILER_FEATURES.
1107         * configure.ac: Always invoke GLIBCXX_CHECK_COMPILER_FEATURES.
1108         Remove invocations elsewhere.
1109         * configure: Regenerate.
1110
1111 2006-09-21  Paolo Carlini  <pcarlini@suse.de>
1112
1113         PR libstdc++/29134 (ext/vstring bits)
1114         * include/ext/sso_string_base.h (__sso_string_base<>::_S_max_size):
1115         Remove.
1116         (__sso_string_base<>::_M_max_size): Use allocator' max_size.
1117         (__sso_string_base<>::_M_create): Adjust.
1118         * include/ext/vstring.h: Minor comment tweak.
1119         * testsuite/ext/vstring/capacity/29134.cc: New.
1120
1121 2006-09-20  Paolo Carlini  <pcarlini@suse.de>
1122
1123         PR libstdc++/29134
1124         * include/bits/stl_list.h (list<>::max_size): Forward to allocator'
1125         max_size.
1126         * include/bits/stl_vector.h (vector<>::max_size): Likewise.
1127         * include/bits/stl_deque.h (deque<>::max_size): Likewise.
1128         * include/bits/stl_tree.h (_Rb_tree<>::max_size): Likewise.
1129         * include/tr1/hashtable (_Hashtable<>::max_size): Likewise.
1130         * testsuite/23_containers/vector/capacity/29134.cc: Add.
1131         * testsuite/23_containers/deque/capacity/29134.cc: Likewise.
1132         * testsuite/23_containers/list/capacity/29134.cc: Likewise.
1133         * testsuite/23_containers/set/capacity/29134.cc: Likewise.
1134         * testsuite/23_containers/map/capacity/29134.cc: Likewise.
1135         * testsuite/23_containers/multiset/capacity/29134.cc: Likewise.
1136         * testsuite/23_containers/multimap/capacity/29134.cc: Likewise. 
1137         * testsuite/tr1/6_containers/unordered/capacity/29134-set.cc: Likewise.
1138         * testsuite/tr1/6_containers/unordered/capacity/29134-map.cc: Likewise.
1139         * testsuite/tr1/6_containers/unordered/capacity/29134-multiset.cc:
1140         Likewise.
1141         * testsuite/tr1/6_containers/unordered/capacity/29134-multimap.cc:
1142         Likewise.
1143
1144         * include/bits/deque.tcc (deque<>::_M_new_elements_at_front,
1145         deque<>::_M_new_elements_at_back): Check for length errors.
1146         * testsuite/23_containers/deque/capacity/29134-2.cc: New.
1147         * testsuite/23_containers/vector/capacity/29134-2.cc: Likewise.
1148
1149         * include/tr1/hashtable (_Hashtable<>::_M_get_Value_allocator): Add.
1150         (_Hashtable<>::_M_allocate_node, _M_deallocate_node): Use it.
1151         * testsuite/tr1/6_containers/unordered/instantiate/set.cc: Add test.
1152         * testsuite/tr1/6_containers/unordered/instantiate/map.cc: Likewise.
1153         * testsuite/tr1/6_containers/unordered/instantiate/multiset.cc:
1154         Likewise.
1155         * testsuite/tr1/6_containers/unordered/instantiate/multimap.cc:
1156         Likewise.
1157
1158 2006-09-20  Benjamin Kosnik  <bkoz@redhat.com>
1159
1160         * include/ext/pb_ds/detail/
1161         typelist_assoc_container.hpp: Remove, unused.
1162         * include/ext/pb_ds/detail/typelist/
1163         typelist_assoc_container_find.hpp: Same.
1164         * include/ext/pb_ds/detail/typelist: Remove.    
1165         * include/ext/pb_ds/detail/typelist.hpp: Merge...
1166         * include/ext/pb_ds/detail/typelist/typelist_flatten.hpp: Same.
1167         * include/ext/pb_ds/detail/typelist/typelist_contains.hpp: Same.
1168         * include/ext/pb_ds/detail/typelist/typelist_typelist_append.hpp: Same.
1169         * include/ext/pb_ds/detail/typelist/typelist_apply.hpp: Same.
1170         * include/ext/pb_ds/detail/typelist/typelist_filter.hpp: Same.
1171         * include/ext/pb_ds/detail/typelist/typelist_append.hpp: Same.
1172         * include/ext/pb_ds/detail/typelist/typelist_at_index.hpp: Same.
1173         * include/ext/pb_ds/detail/typelist/typelist_transform.hpp: Same.
1174         * include/ext/typelist.h: ... into this.
1175         * include/Makefile.am: Subtractions.
1176         * include/Makefile.in: Regenerate.
1177
1178         * include/ext/pb_ds/assoc_container.hpp: Fixups for new includes,
1179         namespaces, and names.  
1180         * include/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp: Same.
1181         * include/ext/pb_ds/detail/resize_policy/
1182         hash_prime_size_policy_imp.hpp: Same.
1183         * include/ext/pb_ds/detail/resize_policy/
1184         cc_hash_max_collision_check_resize_trigger_imp.hpp: Same.
1185         * include/ext/pb_ds/detail/resize_policy/
1186         sample_resize_policy.hpp: Same.
1187         * include/ext/pb_ds/detail/resize_policy/
1188         sample_resize_trigger.hpp: Same.
1189         * include/ext/pb_ds/detail/resize_policy/
1190         hash_exponential_size_policy_imp.hpp: Same.
1191         * include/ext/pb_ds/detail/resize_policy/
1192         hash_load_check_resize_trigger_size_base.hpp: Same.
1193         * include/ext/pb_ds/detail/resize_policy/
1194         hash_load_check_resize_trigger_imp.hpp: Same.
1195         * include/ext/pb_ds/detail/resize_policy/
1196         hash_standard_resize_policy_imp.hpp: Same.
1197         * include/ext/pb_ds/detail/container_base_dispatch.hpp: Same.
1198         * testsuite/performance/ext/pb_ds/text_find_timing.cc
1199         * testsuite/performance/ext/pb_ds/hash_random_int_erase_mem_usage.cc
1200         * testsuite/performance/ext/pb_ds/tree_text_insert_timing.cc
1201         * testsuite/performance/ext/pb_ds/priority_queue_text_push_timing.cc
1202         * testsuite/performance/ext/pb_ds/random_int_subscript_find_timing.cc
1203         * testsuite/performance/ext/pb_ds/tree_split_join_timing.cc
1204         * testsuite/performance/ext/pb_ds/random_int_find_timing.cc
1205         * testsuite/performance/ext/pb_ds/
1206         multimap_text_insert_mem_usage.hpp: Same.
1207         * testsuite/performance/ext/pb_ds/
1208         priority_queue_random_int_push_timing.cc
1209         * testsuite/performance/ext/pb_ds/multimap_text_find_timing.hpp: Same.
1210         * testsuite/performance/ext/pb_ds/
1211         priority_queue_text_modify_timing.hpp: Same.
1212         * testsuite/performance/ext/pb_ds/tree_order_statistics_timing.cc
1213         * testsuite/performance/ext/pb_ds/
1214         priority_queue_text_push_pop_timing.cc
1215         * testsuite/performance/ext/pb_ds/priority_queue_text_join_timing.cc
1216         * testsuite/performance/ext/pb_ds/
1217         priority_queue_random_int_push_pop_timing.cc
1218         * testsuite/performance/ext/pb_ds/random_int_subscript_insert_timing.cc
1219         * testsuite/performance/ext/pb_ds/tree_text_lor_find_timing.cc
1220         * testsuite/performance/ext/pb_ds/
1221         multimap_text_insert_timing.hpp: Same.
1222         * testsuite/performance/ext/pb_ds/priority_queue_text_pop_mem_usage.cc
1223         * testsuite/performance/ext/pb_ds/hash_zlob_random_int_find_timing.cc
1224         * testsuite/performance/23_containers/find/map.cc
1225         * testsuite/performance/23_containers/create/map.cc
1226         * testsuite/performance/23_containers/insert_erase/associative.cc
1227         * testsuite/performance/23_containers/insert/sequence.cc
1228         * testsuite/performance/23_containers/insert/associative.cc
1229         * testsuite/performance/23_containers/create_from_sorted/set.cc
1230         * testsuite/performance/23_containers/index/map.cc
1231         * testsuite/performance/23_containers/insert_from_sorted/set.cc
1232         * testsuite/performance/23_containers/create_sort/list.cc
1233         * testsuite/performance/23_containers/sort_search/list.cc
1234         * testsuite/performance/23_containers/producer_consumer/sequence.cc
1235         * testsuite/performance/23_containers/producer_consumer/associative.cc
1236         * testsuite/util/regression/trait/assoc/type_trait.hpp: Same.
1237         * testsuite/util/regression/rand/priority_queue/
1238         rand_regression_test.hpp: Same.
1239         * testsuite/util/regression/rand/assoc/rand_regression_test.hpp: Same.
1240         * testsuite/util/regression/assoc/common_type.hpp: Same.
1241         * testsuite/util/native_type/assoc/native_multimap.hpp: Same.
1242         * testsuite/util/native_type/assoc/native_tree_tag.hpp: Same.
1243         * testsuite/util/native_type/assoc/native_hash_multimap.hpp: Same.
1244         * testsuite/util/native_type/assoc/native_set.hpp: Same.
1245         * testsuite/util/native_type/assoc/native_map.hpp: Same.
1246         * testsuite/util/native_type/assoc/native_hash_set.hpp: Same.
1247         * testsuite/util/native_type/assoc/native_hash_map.hpp: Same.
1248         * testsuite/util/common_type/priority_queue/common_type.hpp: Same.
1249         * testsuite/util/common_type/assoc/common_type.hpp: Same.
1250         * testsuite/util/common_type/assoc/string_form.hpp: Same.
1251         * testsuite/util/common_type/assoc/template_policy.hpp: Same.
1252         * testsuite/util/performance/priority_queue/mem_usage/pop_test.hpp: 
1253         Same.
1254         * testsuite/util/performance/priority_queue/timing/push_pop_test.hpp: 
1255         Same.
1256         * testsuite/util/performance/priority_queue/timing/join_test.hpp: Same.
1257         * testsuite/util/performance/priority_queue/timing/push_test.hpp: Same.
1258         * testsuite/util/performance/priority_queue/timing/modify_test.hpp: 
1259         Same.
1260         * testsuite/util/performance/assoc/mem_usage/multimap_insert_test.hpp: 
1261         Same.
1262         * testsuite/util/performance/assoc/mem_usage/erase_test.hpp: Same.
1263         * testsuite/util/performance/assoc/timing/common_type.hpp: Same.
1264         * testsuite/util/performance/assoc/timing/multimap_insert_test.hpp: 
1265         Same.
1266         * testsuite/util/performance/assoc/timing/subscript_find_test.hpp: 
1267         Same.
1268         * testsuite/util/performance/assoc/timing/find_test.hpp: Same.
1269         * testsuite/util/performance/assoc/timing/subscript_insert_test.hpp: 
1270         Same.
1271         * testsuite/util/performance/assoc/timing/insert_test.hpp: Same.
1272         * testsuite/util/performance/assoc/timing/
1273         tree_order_statistics_test.hpp: Same.
1274         * testsuite/util/performance/assoc/timing/multimap_find_test.hpp: Same.
1275         * testsuite/util/performance/assoc/timing/tree_split_join_test.hpp: 
1276         Same.
1277         * testsuite/util/performance/assoc/multimap_common_type.hpp: Same.
1278
1279         * testsuite/ext/pb_ds/example/hash_resize_neg.cc: Fixup line numbers.
1280         
1281 2006-09-19  Paolo Carlini  <pcarlini@suse.de>
1282
1283         * include/tr1/hashtable_policy.h: Uglify all the names.
1284         * include/tr1/hashtable: Likewise.
1285         * include/tr1/unordered_map: Likewise.
1286         * include/tr1/unordered_set: Likewise.
1287         * include/tr1/functional: Uglify struct hash names.
1288         * include/tr1/cmath: Uglify namespace detail to __detail.
1289
1290 2006-09-18  Benjamin Kosnik  <bkoz@redhat.com>
1291
1292         * testsuite/util/regression/res_mng: Remove.
1293         * testsuite/util/regression/res_mng/dbg_ex_allocator_base.cc: Merge..
1294         * testsuite/util/regression/res_mng/forced_exception.hpp: Merge...
1295         * testsuite/util/regression/res_mng/dbg_ex_allocator_base.hpp: Merge..
1296         * testsuite/util/regression/res_mng/dbg_ex_allocator.hpp: Merge..
1297         * testsuite/util/testsuite_allocator.h (throw_allocator): Merge...
1298         * include/ext/throw_allocator.h (throw_allocator): ... into this.
1299         * src/throw_allocator.cc: ...and this.
1300         * include/Makefile.am (ext_headers): Add.
1301         * include/Makefile.in: Regenerate.      
1302         * src/Makefile.am (sources): New.
1303         * src/Makefile.in: Regenerate.
1304         * testsuite/lib/libstdc++.exp: Subtract dbg_ex_allocator_base.cc.
1305
1306         * include/ext/pb_ds/detail/map_debug_base.hpp: Adjust
1307         includes, names, and namespaces.
1308         * testsuite/23_containers/list/modifiers/insert/25288.cc: Same.
1309         * testsuite/util/regression/rand/priority_queue/detail/
1310         erase_fn_imps.hpp: Same.
1311         * testsuite/util/regression/rand/priority_queue/detail/
1312         constructor_destructor_fn_imps.hpp: Same.
1313         * testsuite/util/regression/rand/priority_queue/detail/
1314         insert_fn_imps.hpp: Same.
1315         * testsuite/util/regression/rand/priority_queue/detail/
1316         modify_fn_imps.hpp: Same.
1317         * testsuite/util/regression/rand/priority_queue/detail/
1318         split_join_fn_imps.hpp: Same.
1319         * testsuite/util/regression/rand/priority_queue/detail/
1320         operator_fn_imps.hpp: Same.
1321         * testsuite/util/regression/rand/priority_queue/
1322         container_rand_regression_test.hpp: Same.
1323         * testsuite/util/regression/rand/assoc/detail/
1324         subscript_fn_imps.hpp: Same.
1325         * testsuite/util/regression/rand/assoc/detail/
1326         operator_fn_imps.hpp: Same.
1327         * testsuite/util/regression/rand/assoc/detail/erase_fn_imps.hpp: Same.
1328         * testsuite/util/regression/rand/assoc/detail/
1329         constructor_destructor_fn_imps.hpp
1330         * testsuite/util/regression/rand/assoc/detail/insert_fn_imps.hpp: Same.
1331         * testsuite/util/regression/rand/assoc/detail/
1332         split_join_fn_imps.hpp: Same.
1333         * testsuite/util/regression/rand/assoc/
1334         container_rand_regression_test.hpp: Same.
1335         * testsuite/util/regression/priority_queue/common_type.hpp: Same.
1336         * testsuite/util/regression/assoc/common_type.hpp: Same.
1337         * testsuite/util/regression/basic_type.hpp: Same.
1338         * testsuite/util/rng/twister_rand_gen.cc: Tweak.
1339         
1340 2006-09-18  Tom Tromey  <tromey@redhat.com>
1341
1342         * configure: Rebuilt.
1343
1344 2006-09-18  Paolo Carlini  <pcarlini@suse.de>
1345
1346         * include/bits/locale_facets.tcc (_M_group_int): Remove
1347         redundant using-declaration.
1348
1349 2006-09-18  Benjamin Kosnik  <bkoz@redhat.com>
1350
1351         * include/ext/typelist.h (cond_type): Remove, use __conditional_type.
1352
1353 2006-09-18  Benjamin Kosnik  <bkoz@redhat.com>
1354             Peter Doerfler  <gcc@pdoerfler.com>
1355             Paolo Carlini  <pcarlini@suse.de>
1356         
1357         * include/ext/type_traits.h: New. 
1358         (__conditional_type): New.
1359         (__numeric_traits): New.
1360         (__add_unsigned): New.
1361         (__remove_unsigned): New.
1362         (__enable_if): New.
1363         * include/Makefile.am: Add.
1364         * include/Makefile.in: Regenerate.
1365         * include/ext/pb_ds/detail/type_utils.hpp: Use ext include,
1366         remove duplicates.
1367         * include/tr1/hashtable_policy.h (IF): Use __conditional_type.
1368         (_Max_digits10): Same.
1369         (identity): Use _Identity.
1370         (extract1st): Use _Select1st.
1371         * include/tr1/random (_Select): Use __conditional_type.
1372         (_To_Unsigned_Type): Use __add_unsigned. Linebreak fixups.
1373         * include/bits/locale_facets.tcc (__to_unsigned_type): Remove, use
1374         __add_unsigned.
1375         * include/tr1/random.tcc: Fixups as above.
1376         * include/tr1/unordered_map: Same.
1377         * include/tr1/hashtable: Same.
1378         * include/tr1/unordered_set: Same.
1379         * include/ext/pb_ds/detail/gp_hash_table_map_/
1380         standard_policies.hpp: Same.
1381         * include/ext/pb_ds/detail/standard_policies.hpp: Same.
1382         * include/ext/pb_ds/detail/typelist/typelist_filter.hpp: Same.
1383         * include/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp: Same.
1384         * include/ext/pb_ds/detail/type_utils.hpp: Same.
1385         * include/ext/pb_ds/trie_policy.hpp: Same.
1386         * docs/html/ext/pb_ds/string_trie_e_access_traits.html: Same.
1387         
1388         * include/bits/cpp_type_traits.h (__enable_if): Move to ext, make
1389         boolean argument first. 
1390         * include/bits/locale_facets.h: Fixups for __enable_if argument
1391         and namespace switch.
1392         * include/bits/stl_algobase.h: Same.
1393         * include/bits/stl_algo.h: Same.
1394         * include/bits/stl_iterator.h: Same.
1395         * include/bits/streambuf_iterator.h: Same.
1396         * include/debug/safe_iterator.h: Same.
1397         * include/tr1/hashtable_policy.h: Same.
1398         * include/tr1/cmath: Same.
1399         * include/tr1/functional: Same.
1400         * include/tr1/functional_iterate.h: Same.
1401         * include/std/std_streambuf.h: Same.
1402         * include/c_std/std_cmath.h: Same.
1403         * testsuite/util/testsuite_tr1.h: Same.
1404         * testsuite/util/performance/assoc/multimap_common_type.hpp: Same.
1405         
1406 2006-09-18  Paolo Carlini  <pcarlini@suse.de>
1407
1408         PR libstdc++/29063
1409         * include/bits/valarray_array.h: Fix typo, undefine
1410         _DEFINE_ARRAY_FUNCTION.
1411         * include/std/std_valarray.h: Undefine _DEFINE_BINARY_OPERATOR.
1412
1413 2006-09-14  Benjamin Kosnik  <bkoz@redhat.com>
1414
1415         * include/bits/concurrence.h (__mutex::__mutex): Pass address of
1416         mutex to *_MUTEX_INIT_FUNCTION.
1417         
1418 2006-09-13  Benjamin Kosnik  <bkoz@redhat.com>  
1419
1420         * include/bits/atomicity.h: Move to...
1421         * include/ext/atomicity.h: ...here.     
1422         * include/bits/concurrence.h: Move to...
1423         * include/ext/concurrence.h: ...here.
1424         * include/Makefile.am (ext_headers): Additions.
1425         (bits_headers): Subtractions.
1426         * include/Makefile.in: Regenerate.
1427
1428         * include/ext/bitmap_allocator.h (_Mutex), __threads_enabled,
1429         _Lock, _Auto_Lock): Subsume into...
1430         * include/bits/concurrence.h (__mutex): ..this. Error check
1431         locking and unlocking.  
1432         (lock): Uglify to...
1433         (__scoped_lock): Use __mutex. 
1434         (__glibcxx_mutex_define_initialized): Remove.
1435         (__glibcxx_mutex_type): Remove.
1436
1437         * include/tr1/boost_shared_ptr.h: Formating tweaks, adjustments.
1438         (_Lock_policy): Move from here...
1439         * include/ext/concurrence.h: ... to here.
1440         (__shared_ptr_default_lock_mode): To __default_lock_policy.
1441         (_S_lockfree): To _S_atomic.
1442         Document.
1443
1444         * libsupc++/guard.cc (static_mutex): Subsume into and fixup for...
1445         * include/ext/concurrence.h (__recursive_mutex): ...this. Error
1446         check locking and unlocking.
1447         * libsupc++/eh_alloc.cc: Use __scoped_lock.
1448
1449         * config/os/aix/atomicity.h: Fixups for include paths, mutex to
1450         __scoped_mutex change, removal of locking defines.
1451         * config/os/irix/atomicity.h: Same.
1452         * config/cpu/cris/atomicity.h: Same.
1453         * config/cpu/m68k/atomicity.h: Same.
1454         * config/cpu/hppa/atomicity.h: Same.
1455         * config/cpu/mips/atomicity.h: Same.
1456         * config/cpu/sparc/atomicity.h: Same.
1457         * config/cpu/i386/atomicity.h: Same.
1458         * config/cpu/i486/atomicity.h: Same.
1459         * config/cpu/sh/atomicity.h: Same.
1460         * config/cpu/generic/atomicity_mutex/atomicity.h: Same.
1461         * include/ext/pool_allocator.h: Same.
1462         * include/ext/bitmap_allocator.h: Same.
1463         * include/ext/rc_string_base.h: Same.
1464         * include/ext/mt_allocator.h: Same.
1465         * include/bits/locale_classes.h: Same.
1466         * include/bits/basic_string.h: Same.
1467         * include/bits/ios_base.h: Same.
1468         * include/tr1/memory: Same.
1469         * src/pool_allocator.cc: Same.
1470         * src/mt_allocator.cc: Same.
1471         * src/locale_init.cc: Same.
1472         * src/ios.cc: Same.
1473         * src/locale.cc: Same.
1474         * src/bitmap_allocator.cc: Same.
1475         * src/ios_init.cc: Same.
1476         * src/debug.cc: Same.
1477         
1478 2006-09-12  Benjamin Kosnik  <bkoz@redhat.com>
1479
1480         * libsupc++/eh_globals.cc: Remove __gnu_internal.
1481         * config/io/basic_file_stdio.cc: Same.
1482         * config/abi/compatibility.h: Same.
1483         * config/cpu/generic/atomicity_mutex/atomicity.h: Same.
1484         * config/cpu/sh/atomicity.h: Same.
1485         
1486 2006-09-10  Paolo Carlini  <pcarlini@suse.de>
1487
1488         * include/bits/stl_heap.h (sort_heap): Iterator post-decrement is
1489         only required to be convertible to the iterator type.
1490
1491 2006-09-08  Paolo Carlini  <pcarlini@suse.de>
1492
1493         * include/tr1/random.tcc (poisson_distribution<>::operator()):
1494         Avoid potential warnings when _IntType is unsigned.
1495
1496 2006-09-08  Benjamin Kosnik  <bkoz@redhat.com>
1497
1498         * include/debug/debug.h (_GLIBCXX_DEBUG_ONLY): New.
1499         * include/ext/bitmap_allocator.h (_BALLOC_SANITY_CHECK,
1500         _BALLOC_ASSERT): Remove. Use _GLIBCXX_DEBUG,
1501         _GLIBCXX_DEBUG_ASSERT.
1502         * include/ext/pb_ds/hash_policy.hpp (PB_DS_DBG_ASSERT): Convert to
1503         _GLIBCXX_DEBUG_ASSERT. Formatting corrections.
1504         (PB_DS_DBG_VERIFY): Remove, unused.
1505         (PB_DS_DBG_ONLY): Convert to _GLIBCXX_DEBUG blocks.
1506         * include/ext/pb_ds/detail/resize_policy/
1507         hash_load_check_resize_trigger_imp.hpp: Same.
1508         * include/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp: Same.
1509         * include/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp: Same.
1510         * include/ext/pb_ds/detail/binomial_heap_base_/
1511         insert_fn_imps.hpp: Same.
1512         * include/ext/pb_ds/detail/binomial_heap_base_/
1513         binomial_heap_base_.hpp: Same.
1514         * include/ext/pb_ds/detail/binomial_heap_base_/
1515         constructors_destructor_fn_imps.hpp: Same.
1516         * include/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp: Same.
1517         * include/ext/pb_ds/detail/binomial_heap_base_/
1518         split_join_fn_imps.hpp: Same.
1519         * include/ext/pb_ds/detail/cc_hash_table_map_/
1520         constructor_destructor_no_store_hash_fn_imps.hpp: Same.
1521         * include/ext/pb_ds/detail/cc_hash_table_map_/
1522         erase_store_hash_fn_imps.hpp: Same.
1523         * include/ext/pb_ds/detail/cc_hash_table_map_/
1524         insert_no_store_hash_fn_imps.hpp: Same.
1525         * include/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp: Same.
1526         * include/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp: Same.
1527         * include/ext/pb_ds/detail/cc_hash_table_map_/
1528         constructor_destructor_store_hash_fn_imps.hpp: Same.
1529         * include/ext/pb_ds/detail/cc_hash_table_map_/
1530         insert_store_hash_fn_imps.hpp: Same.    
1531         * include/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp: Same.
1532         * include/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp: Same.
1533         * include/ext/pb_ds/detail/cc_hash_table_map_/
1534         debug_no_store_hash_fn_imps.hpp: Same.
1535         * include/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp: Same.
1536         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp: Same.
1537         * include/ext/pb_ds/detail/cc_hash_table_map_/
1538         constructor_destructor_fn_imps.hpp: Same.
1539         * include/ext/pb_ds/detail/cc_hash_table_map_/
1540         debug_store_hash_fn_imps.hpp: Same.
1541         * include/ext/pb_ds/detail/cc_hash_table_map_/
1542         erase_no_store_hash_fn_imps.hpp: Same.
1543         * include/ext/pb_ds/detail/unordered_iterator/iterator.hpp: Same.
1544         * include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp: Same.
1545         * include/ext/pb_ds/detail/unordered_iterator/
1546         const_point_iterator.hpp: Same.
1547         * include/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp: Same.
1548         * include/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp: Same.
1549         * include/ext/pb_ds/detail/pat_trie_/child_iterator.hpp: Same.
1550         * include/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp: Same.
1551         * include/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp: Same.
1552         * include/ext/pb_ds/detail/pat_trie_/
1553         constructors_destructor_fn_imps.hpp: Same.
1554         * include/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp: Same.
1555         * include/ext/pb_ds/detail/pat_trie_/head.hpp: Same.
1556         * include/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp: Same.
1557         * include/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp: Same.
1558         * include/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp: Same.
1559         * include/ext/pb_ds/detail/pat_trie_/leaf.hpp: Same.
1560         * include/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp: Same.
1561         * include/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp: Same.
1562         * include/ext/pb_ds/detail/pat_trie_/node_base.hpp: Same.
1563         * include/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp: Same.
1564         * include/ext/pb_ds/detail/pat_trie_/node_iterators.hpp: Same.
1565         * include/ext/pb_ds/detail/pat_trie_/internal_node.hpp: Same.
1566         * include/ext/pb_ds/detail/pat_trie_/point_iterators.hpp: Same.
1567         * include/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp: Same.
1568         * include/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp: Same.
1569         * include/ext/pb_ds/detail/bin_search_tree_/
1570         constructors_destructor_fn_imps.hpp: Same.
1571         * include/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp: Same.
1572         * include/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp: Same.
1573         * include/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp: Same.
1574         * include/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp: Same.
1575         * include/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp: Same.
1576         * include/ext/pb_ds/detail/bin_search_tree_/
1577         split_join_fn_imps.hpp: Same.
1578         * include/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp: Same.
1579         * include/ext/pb_ds/detail/gp_hash_table_map_/
1580         constructor_destructor_no_store_hash_fn_imps.hpp: Same.
1581         * include/ext/pb_ds/detail/gp_hash_table_map_/
1582         erase_store_hash_fn_imps.hpp: Same.
1583         * include/ext/pb_ds/detail/gp_hash_table_map_/
1584         insert_no_store_hash_fn_imps.hpp: Same.
1585         * include/ext/pb_ds/detail/gp_hash_table_map_/
1586         resize_store_hash_fn_imps.hpp: Same.    
1587         * include/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp: Same.
1588         * include/ext/pb_ds/detail/gp_hash_table_map_/
1589         constructor_destructor_store_hash_fn_imps.hpp: Same.
1590         * include/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp: Same.
1591         * include/ext/pb_ds/detail/gp_hash_table_map_/
1592         insert_store_hash_fn_imps.hpp: Same.    
1593         * include/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp: Same.
1594         * include/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp: Same.
1595         * include/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp: Same.
1596         * include/ext/pb_ds/detail/gp_hash_table_map_/
1597         debug_no_store_hash_fn_imps.hpp: Same.
1598         * include/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp: Same.
1599         * include/ext/pb_ds/detail/gp_hash_table_map_/
1600         constructor_destructor_fn_imps.hpp: Same.
1601         * include/ext/pb_ds/detail/gp_hash_table_map_/
1602         debug_store_hash_fn_imps.hpp: Same.
1603         * include/ext/pb_ds/detail/gp_hash_table_map_/
1604         erase_no_store_hash_fn_imps.hpp: Same.
1605         * include/ext/pb_ds/detail/gp_hash_table_map_/
1606         resize_no_store_hash_fn_imps.hpp: Same.
1607         * include/ext/pb_ds/detail/types_traits.hpp: Same.
1608         * include/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp: Same.
1609         * include/ext/pb_ds/detail/binary_heap_/const_iterator.hpp: Same.
1610         * include/ext/pb_ds/detail/binary_heap_/
1611         constructors_destructor_fn_imps.hpp: Same.      
1612         * include/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp: Same.
1613         * include/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp: Same.
1614         * include/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp: Same.
1615         * include/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp: Same.
1616         * include/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp: Same.
1617         * include/ext/pb_ds/detail/binary_heap_/resize_policy.hpp: Same.
1618         * include/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp: Same.
1619         * include/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp: Same.
1620         * include/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp: Same.
1621         * include/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp: Same.
1622         * include/ext/pb_ds/detail/pairing_heap_/
1623         constructors_destructor_fn_imps.hpp: Same.
1624         * include/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp: Same.
1625         * include/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp: Same.
1626         * include/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp: Same.
1627         * include/ext/pb_ds/detail/binomial_heap_/
1628         constructors_destructor_fn_imps.hpp: Same.
1629         * include/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp: Same.
1630         * include/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp: Same.
1631         * include/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp: Same.
1632         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
1633         erase_fn_imps.hpp: Same.
1634         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
1635         left_child_next_sibling_heap_.hpp: Same.
1636         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
1637         const_iterator.hpp: Same.       
1638         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
1639         insert_fn_imps.hpp: Same.       
1640         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
1641         constructors_destructor_fn_imps.hpp: Same.
1642         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
1643         debug_fn_imps.hpp: Same.
1644         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
1645         const_point_iterator.hpp: Same.
1646         * include/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp: Same.
1647         * include/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp: Same.
1648         * include/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp: Same.
1649         * include/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp: Same.
1650         * include/ext/pb_ds/detail/thin_heap_/
1651         constructors_destructor_fn_imps.hpp: Same.
1652         * include/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp: Same.
1653         * include/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp: Same.
1654         * include/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp: Same.
1655         * include/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp: Same.
1656         * include/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp: Same.
1657         * include/ext/pb_ds/detail/ov_tree_map_/
1658         constructors_destructor_fn_imps.hpp: Same.      
1659         * include/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp: Same.
1660         * include/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp: Same.
1661         * include/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp: Same.
1662         * include/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp: Same.
1663         * include/ext/pb_ds/detail/map_debug_base.hpp: Same.
1664         * include/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp: Same.
1665         * include/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp: Same.
1666         * include/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp: Same.
1667         * include/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp: Same.
1668         * include/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp: Same.
1669         * include/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp: Same.
1670         * include/ext/pb_ds/detail/splay_tree_/
1671         constructors_destructor_fn_imps.hpp: Same.
1672         * include/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp: Same.
1673         * include/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp: Same.
1674         * include/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp: Same.
1675         * include/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp: Same.
1676         * include/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp: Same.
1677         * include/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp: Same.
1678         * include/ext/pb_ds/detail/list_update_map_/lu_map_.hpp: Same.
1679         * include/ext/pb_ds/detail/list_update_map_/
1680         constructor_destructor_fn_imps.hpp: Same.
1681         * include/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp: Same.
1682         * include/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp: Same.
1683         * include/ext/pb_ds/detail/list_update_map_/
1684         iterators_fn_imps.hpp: Same.
1685         * include/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp: Same.
1686         * include/ext/pb_ds/detail/rc_binomial_heap_/
1687         rc_binomial_heap_.hpp: Same.
1688         * include/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp: Same.
1689         * include/ext/pb_ds/detail/rc_binomial_heap_/
1690         constructors_destructor_fn_imps.hpp: Same.
1691         * include/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp: Same.
1692         * include/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp: Same.
1693         * include/ext/pb_ds/detail/rc_binomial_heap_/
1694         split_join_fn_imps.hpp: Same.
1695         * include/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp: Same.
1696         * include/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp: Same.
1697         * include/ext/pb_ds/detail/rb_tree_map_/
1698         constructors_destructor_fn_imps.hpp: Same.      
1699         * include/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp: Same.
1700         * include/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp: Same.
1701         * include/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp: Same.
1702         * testsuite/util/regression/res_mng/forced_exception.hpp: Same.
1703         * testsuite/util/regression/res_mng/dbg_ex_allocator_base.hpp: Same.
1704         * testsuite/util/regression/res_mng/dbg_ex_allocator.hpp: Same.
1705         * testsuite/util/rng/twister_rand_gen.cc
1706         * testsuite/util/native_type/assoc/native_multimap.hpp: Same.
1707         * testsuite/util/native_type/assoc/native_hash_multimap.hpp: Same.
1708
1709 2006-09-05  Paolo Carlini  <pcarlini@suse.de>
1710
1711         * include/bits/basic_string.tcc (find(const _CharT*, size_type,
1712         size_type)): Robustify.
1713         * include/ext/vstring.tcc (find(const _CharT*, size_type,
1714         size_type)): Likewise.
1715
1716 2006-09-05  Paolo Carlini  <pcarlini@suse.de>
1717
1718         * include/bits/basic_string.tcc (find(const _CharT*, size_type,
1719         size_type)): Reimplement in terms of traits::eq and traits::compare.
1720         * include/ext/vstring.tcc (find(const _CharT*, size_type,
1721         size_type)): Likewise.
1722         * src/string-inst.cc: Remove unneded std::search instantiation.
1723
1724 2006-09-04  Benjamin Kosnik  <bkoz@redhat.com>
1725
1726         PR c++/28871
1727         * include/ext/bitmap_allocator.h: Add comment for end of anonymous
1728         namespace.
1729         * include/ext/rope: Same.
1730         * include/bits/cpp_type_traits.h: Same.
1731         * include/tr1/tuple: Same.
1732         * include/tr1/functional_iterate.h: Same.
1733
1734         * include/bits/cpp_type_traits.h: Revert anonymous namespace
1735         change, use nested detail instead.
1736
1737         * testsuite/lib/libstdc++.exp (libstdc++_init): PCHFLAGS revert to
1738         stdc++.h.
1739         
1740 2006-09-04  Paolo Carlini  <pcarlini@suse.de>
1741
1742         * src/mt_allocator.cc (__pool<true>::_M_reclaim_block): Do
1743         not name a variable __used, badname on BSD.
1744
1745 2006-09-02  Paolo Carlini  <pcarlini@suse.de>
1746             Richard Guenther  <rguenther@suse.de>
1747
1748         PR libstdc++/24469
1749         * src/mt_allocator.cc (__pool<true>::_M_reserve_block,
1750         __pool<true>::_M_reclaim_block): Fix the logic to avoid
1751         races, exploit atomic counters stored in second part of
1752         the memory pointed by _M_used.
1753         (__pool<true>::_M_initialize): Adjust _M_used allocation.
1754         * include/ext/mt_allocator.h (__pool<true>::_Bin_record):
1755         Update comment.
1756
1757 2006-08-31  Benjamin Kosnik  <bkoz@redhat.com>
1758
1759         PR libstdc++/28671 continued
1760         * acinclude.m4 (GLIBCXX_ENABLE_ATOMIC_BUILTINS): Don't use
1761         CXXFLAGS when checking for atomic builtins.
1762         * configure: Regenerate.
1763         * include/bits/atomicity.h: Revert.
1764         
1765 2006-08-31  Richard Guenther  <rguenther@suse.de>
1766
1767         * include/ext/mt_allocator.h: Remove volatile qualifiers
1768         from data members and corresponding locals and function
1769         signatures.
1770
1771 2006-08-31  Paolo Carlini  <pcarlini@suse.de>
1772
1773         * config/abi/pre/gnu.ver: Correct atomic helper function signature
1774         for case where _Atomic_word is long.
1775
1776 2006-08-31  Benjamin Kosnik  <bkoz@redhat.com>
1777
1778         PR libstdc++/28671
1779         * include/bits/atomicity.h (__exchange_and_add): Declare only.
1780         (__atomic_add): Same.
1781         * config/cpu/generic/atomicity_builtins/atomicity.h: Remove comment.
1782         
1783 2006-08-30  Benjamin Kosnik  <bkoz@redhat.com>
1784             Richard Guenther  <rguenther@suse.de>
1785         
1786         * config/abi/pre/gnu.ver: Spell out exact signatures for atomic
1787         access functions.
1788
1789         * include/bits/atomicity.h (__atomic_add_dispatch): Remove
1790         volatile qualification for _Atomic_word argument.
1791         (__atomic_add_single): Same.
1792         (__exchange_and_add_dispatch): Same.
1793         (__exchange_and_add_single): Same.
1794         
1795 2006-08-29  Paolo Carlini  <pcarlini@suse.de>
1796
1797         * include/tr1/random (subtract_with_carry_01<>::_M_initialize_npows):
1798         New.
1799         (subtract_with_carry_01<>::subtract_with_carry_01(),
1800         subtract_with_carry_01<>::subtract_with_carry_01(unsigned long),
1801         subtract_with_carry_01<>::subtract_with_carry_01(_Gen&)): Use it.
1802         * include/tr1/random.tcc: Define.
1803
1804         * include/tr1/random (xor_combine<>::_M_initialize_max()): New.
1805         (xor_combine<>::xor_combine(), xor_combine<>::xor_combine(const
1806         base1_type&, const base2_type&), xor_combine<>::xor_combine(unsigned
1807         long), xor_combine<>::xor_combine(_Gen&)): Use it.
1808         (xor_combine<>::min, xor_combine<>::max): Adjust.
1809         * include/tr1/random.tcc: Define.
1810
1811 2006-08-29  Benjamin Kosnik  <bkoz@redhat.com>
1812
1813         * acinclude.m4(glibcxx_PCHFLAGS): Set to stdtr1c++.h.
1814         * configure: Regenerate.
1815         
1816         * scripts/check_compile: Output current compile line.
1817         
1818 2006-08-28  Benjamin Kosnik  <bkoz@redhat.com>
1819
1820         PR libstdc++/23773 partial
1821         * docs/html/abi.html: Update.
1822
1823 2006-08-28  Roger Sayle  <roger@eyesopen.com>
1824             Paolo Carlini  <pcarlini@suse.de>
1825
1826         * include/bits/stl_algo.h (__heap_select, __introselect): New.
1827         (nth_element): New implementation.
1828         (partial_copy): Use __heap_select.
1829         * testsuite/performance/25_algorithms/nth_element_worst_case.cc: New.
1830
1831 2006-08-28  Paolo Carlini  <pcarlini@suse.de>
1832             Roger Sayle  <roger@eyesopen.com>
1833
1834         * testsuite/25_algorithms/nth_element/2.cc: New.
1835
1836 2006-08-27  Paolo Carlini  <pcarlini@suse.de>
1837
1838         PR libstdc++/28830
1839         * testsuite/tr1/2_general_utilities/memory/shared_ptr/thread/
1840         lockfree_weaktoshared.cc: Rename to...
1841         * testsuite/tr1/2_general_utilities/memory/shared_ptr/thread/
1842         default_weaktoshared.cc: ... this; test the default base class.
1843         * testsuite/tr1/2_general_utilities/memory/shared_ptr/thread/
1844         mutex_weaktoshared.cc: Run like the other thread tests.
1845
1846 2006-08-25  Paolo Carlini  <pcarlini@suse.de>
1847
1848         * docs/html/ext/tr1.html: Update.
1849
1850 2006-08-25  Paolo Carlini  <pcarlini@suse.de>
1851
1852         * include/tr1/random (bernoulli_distribution::operator()): Fix
1853         wrt generators returning integers.
1854         (uniform_int<>::_M_call): Add.
1855         (uniform_int<>::operator()): Use it.
1856
1857         * include/tr1/random (_Adaptor<>::min, _Adaptor<>::max): Add.
1858         (_Adaptor<>::operator()): Allow for nonzero _M_g.min().
1859
1860         * include/tr1/random.tcc (linear_congruential<>::min, max):
1861         Move inline...
1862         (__mod): Move ...
1863         * include/tr1/random: ... here.
1864         (struct _Mod): Declare.
1865
1866         * include/tr1/random (struct _To_Unsigned_Type): Only declare,
1867         move...
1868         * include/tr1/random.tcc: ... here.
1869
1870 2006-08-22  Phillip Jordan  <phillip.m.jordan@gmail.com>
1871
1872         *include/tr1/boost_shared_ptr.h: Added locking policy to
1873         tr1::shared_ptr<> and related classes.
1874         * testsuite/tr1/2_general_utilities/memory/shared_ptr/thread: New.
1875         * testsuite/tr1/2_general_utilities/memory/shared_ptr/thread/
1876         lockfree_weaktoshared.cc: New.
1877         * testsuite/tr1/2_general_utilities/memory/shared_ptr/thread/
1878         mutex_weaktoshared.cc: New.
1879         *testsuite/tr1/2_general_utilities/memory/shared_ptr/assign/
1880         shared_ptr_neg.cc: Modify.
1881         
1882 2006-08-22  Paolo Carlini  <pcarlini@suse.de>
1883
1884         * include/tr1/random.tcc (subtract_with_carry_01<>::
1885         seed(_Gen&, false_type)): Fix _M_carry initialization.
1886         
1887         * testsuite/tr1/5_numerical_facilities/random/
1888         subtract_with_carry/cons/default.cc: Qualify 1 as 1UL.
1889         * testsuite/tr1/5_numerical_facilities/random/
1890         subtract_with_carry/cons/gen1.cc: Likewise.
1891
1892 2006-08-22  Paolo Carlini  <pcarlini@suse.de>
1893
1894         * include/tr1/random (class subtract_with_carry_01<>): Add.
1895         * include/tr1/random.tcc (subtract_with_carry_01<>::
1896         seed(unsigned long), subtract_with_carry_01<>::
1897         seed(_Gen&, false_type), subtract_with_carry_01<>::
1898         operator(), operator<<(std::basic_ostream<>&, const
1899         subtract_with_carry_01<>&), operator>>(std::basic_istream<>&,
1900         subtract_with_carry_01<>&)): Define.
1901         * testsuite/tr1/5_numerical_facilities/random/ranlux3_01.cc:
1902         New.
1903         * testsuite/tr1/5_numerical_facilities/random/ranlux4_01.cc:
1904         Likewise.
1905         * testsuite/tr1/5_numerical_facilities/random/
1906         subtract_with_carry_01/cons/seed1.cc: Likewise.
1907         * testsuite/tr1/5_numerical_facilities/random/
1908         subtract_with_carry_01/cons/seed2.cc: Likewise.
1909         * testsuite/tr1/5_numerical_facilities/random/
1910         subtract_with_carry_01/cons/default.cc: Likewise.
1911         * testsuite/tr1/5_numerical_facilities/random/
1912         subtract_with_carry_01/cons/gen1.cc: Likewise.
1913         * testsuite/tr1/5_numerical_facilities/random/
1914         subtract_with_carry_01/requirements/typedefs.cc: Likewise.
1915         * testsuite/tr1/5_numerical_facilities/random/
1916         subtract_with_carry_01/operators/equal.cc: Likewise.
1917         * testsuite/tr1/5_numerical_facilities/random/
1918         subtract_with_carry_01/operators/not_equal.cc: Likewise.
1919         * testsuite/tr1/5_numerical_facilities/random/
1920         subtract_with_carry_01/operators/serialize.cc: Likewise.
1921
1922         * docs/html/ext/howto.html: Add two implemented TR1 issues.
1923
1924         * include/tr1/random.tcc (struct _To_Unsigned_Type<>): Move...
1925         * include/tr1/random: ... here.
1926         (class subtract_with_carry<>): Use it everywhere.
1927
1928         * testsuite/tr1/5_numerical_facilities/random/
1929         subtract_with_carry/cons/seed1.cc: Qualify 1 as 1UL.
1930         * testsuite/tr1/5_numerical_facilities/random/
1931         subtract_with_carry/cons/seed2.cc: Likewise.
1932         * testsuite/tr1/5_numerical_facilities/random/
1933         subtract_with_carry/cons/default.cc: Likewise.
1934         * testsuite/tr1/5_numerical_facilities/random/
1935         subtract_with_carry/cons/gen1.cc: Likewise.
1936         * testsuite/tr1/5_numerical_facilities/random/
1937         subtract_with_carry/requirements/typedefs.cc: Likewise.
1938         * testsuite/tr1/5_numerical_facilities/random/
1939         subtract_with_carry/operators/equal.cc: Likewise.
1940         * testsuite/tr1/5_numerical_facilities/random/
1941         subtract_with_carry/operators/not_equal.cc: Likewise.
1942         * testsuite/tr1/5_numerical_facilities/random/
1943         subtract_with_carry/operators/serialize.cc: Likewise.
1944
1945         * include/tr1/random (class binomial_distribution<>): Reorder the
1946         data members to save space.
1947
1948 2006-08-20  Paolo Carlini  <pcarlini@suse.de>
1949
1950         * include/tr1/random (gamma_distribution<>::_M_initialize,
1951         gamma_distribution<>::_M_l_d): Add.
1952         (gamma_distribution<>::gamma_distribution(const result_type&),
1953         operator>>(std::basic_istream<>&, gamma_distribution&)): Use it.
1954         include/tr1/random.tcc (gamma_distribution<>::_M_initialize):
1955         Define.
1956         (gamma_distribution<>::operator()): Adjust.
1957
1958         * include/tr1/random (geometric_distribution<>::_M_initialize): Add.
1959         (geometric_distribution<>::geometric_distribution(const _RealType&),
1960         operator>>(std::basic_istream<>&, geometric_distribution&)): Use it.
1961
1962 2006-08-18  Paolo Carlini  <pcarlini@suse.de>
1963
1964         * include/tr1/random (class binomial_distribution<>): Add.
1965         * include/tr1/random.tcc (binomial_distribution<>::operator(),
1966         operator<<(std::basic_ostream<>&, const binomial_distribution<>&),
1967         operator>>(std::basic_istream<>&, binomial_distribution<>&,
1968         binomial_distribution<>::_M_waiting(), binomial_distribution<>::
1969         _M_initialize()): Define.
1970         * testsuite/tr1/5_numerical_facilities/random/binomial_distribution/
1971         requirements/typedefs.cc: New.
1972
1973         * include/tr1/random (geometric_distribution<>::
1974         geometric_distribution(const _RealType&)): Fix DEBUG_ASSERT
1975         limits.
1976
1977         * include/tr1/random (poisson_distribution): Add normal_distribution
1978         member, adjust consistently; minor tweaks and rearrangements of the
1979         arithmetic.
1980         (operator>>(std::basic_istream<>&, poisson_distribution<>&)): Move
1981         out of line.
1982         * include/tr1/random.tcc: Adjust.
1983
1984         * include/tr1/random.tcc (normal_distribution<>::operator()): Minor
1985         tweaks.
1986
1987 2006-08-18  Paolo Carlini  <pcarlini@suse.de>
1988
1989         PR libstdc++/28765
1990         * include/ext/rc_string_base.h (_M_clear): New.
1991         * include/ext/sso_string_base.h (_M_clear): Likewise.
1992         * include/ext/vstring.h (clear): Use it.
1993
1994 2006-08-15  Paolo Carlini  <pcarlini@suse.de>
1995
1996         * include/tr1/random (poisson_distribution<>::_M_initialize): Add.
1997         (poisson_distribution<>::poisson_distribution(const _RealType&):
1998         Use it.
1999         (operator>>(std::basic_istream<>&, poisson_distribution<>&)):
2000         Likewise.
2001         (poisson_distribution<>::_M_large): Remove.
2002         * include/tr1/random.tcc (poisson_distribution<>::_M_initialize):
2003         Define.
2004         (operator<<(std::basic_ostream<>&, const poisson_distribution<>&)):
2005         Do not output the constants.
2006
2007         * include/tr1/random (operator>>(std::basic_istream<>&,
2008         gamma_distribution&)): Minor tweak.
2009         
2010         * include/tr1/random.tcc (poisson_distribution<>::operator()):
2011         Minor tweak.
2012
2013         * include/tr1/random: Consistently, all data members private.
2014
2015 2006-08-15  Paolo Carlini  <pcarlini@suse.de>
2016
2017         * include/tr1/random.tcc (mersenne_twister<>::operator()): Revert
2018         last change (per gcc-patches/2006-08/msg00484.html).
2019
2020 2006-08-14  Paolo Carlini  <pcarlini@suse.de>
2021
2022         * include/tr1/random (class poisson_distribution<>): Add.
2023         * include/tr1/random.tcc (poisson_distribution<>::operator(),
2024         operator<<(std::basic_ostream<>&, const poisson_distribution<>&),
2025         operator>>(std::basic_istream<>&, poisson_distribution<>&,
2026         poisson_distribution<>::poisson_distribution(const _RealType&)):
2027         Define.
2028         * testsuite/tr1/5_numerical_facilities/random/poisson_distribution/
2029         requirements/typedefs.cc: New.
2030
2031         * include/tr1/random.tcc (mersenne_twister<>::operator()): Tweak
2032         a bit for efficiency.
2033         
2034         * include/tr1/random.tcc (operator<<(std::basic_ostream<>&,
2035         const normal_distribution<>&), operator>>(std::basic_istream<>&,
2036         normal_distribution<>&)): Do not output _M_saved unnecessarily.
2037
2038         * include/tr1/random: Trivial formatting fixes.
2039         * include/tr1/cmath: Likewise.
2040
2041 2006-08-11  Paolo Carlini  <pcarlini@suse.de>
2042
2043         * include/bits/stl_bvector.h (__fill_bvector(_Bit_iterator,
2044         _Bit_iterator, bool)): New.
2045         (fill(_Bit_iterator, _Bit_iterator, const bool&)): Use it.
2046
2047 2006-08-10  Paolo Carlini  <pcarlini@suse.de>
2048
2049         * include/tr1/random.tcc (gamma_distribution<>::operator()): Fixes
2050         from the Errata of Devroye's book.
2051
2052 2006-08-10  Paolo Carlini  <pcarlini@suse.de>
2053
2054         * include/bits/stl_bvector.h (_Bit_iterator_base::_M_incr(ptrdiff_t)):
2055         Tidy a bit, thus reducing generated code size.
2056
2057 2006-08-09  Paolo Carlini  <pcarlini@suse.de>
2058
2059         * include/bits/stl_bvector.h (vector<bool>::_M_copy_aligned): New.
2060         (vector<bool>::vector(const vector&), operator=(const vector&),
2061         reserve(size_type), _M_fill_insert(iterator, size_type, bool),
2062         _M_insert_range(iterator, _ForwardIterator, _ForwardIterator,
2063         std::forward_iterator_tag), _M_insert_aux(iterator, bool)): Use it.
2064         * testsuite/performance/23_containers/copy_construct/
2065         vector_bool.cc: New.
2066
2067         * testsuite/23_containers/vector/bool/cons/1.cc: New.
2068         * testsuite/23_containers/vector/bool/cons/2.cc: Likewise.
2069
2070         * include/bits/stl_bvector.h (vector<bool>::_M_fill): Remove.
2071         (fill(_Bit_iterator, _Bit_iterator, const bool&)): New.
2072         (vector<bool>::_M_fill_insert(iterator, size_type, bool)): Adjust.
2073
2074         * include/bits/stl_bvector.h (_M_initialize_range(_InputIterator,
2075         _InputIterator, std::input_iterator_tag)): Remove redundant
2076         assignments.
2077
2078         * include/bits/stl_algo.h (find(istreambuf_iterator<>,
2079         istreambuf_iterator<>, _CharT)): Adjust signature.
2080         * include/bits/streambuf_iterator.h: Likewise.
2081         * include/std/std_streambuf.h: Likewise.        
2082
2083 2006-08-09  Paolo Carlini  <pcarlini@suse.de>
2084
2085         * include/bits/stl_algobase.h (fill(const _Deque_iterator<>&,
2086         const _Deque_iterator<>&, const _Tp&)): Move...
2087         * include/bits/deque.tcc: ... here.
2088         * include/bits/stl_deque.h: Declare.
2089
2090 2006-08-06  Paolo Carlini  <pcarlini@suse.de>
2091
2092         PR libstdc++/16611
2093         * include/bits/stl_bvector.h (vector<bool>::operator[],
2094         vector<bool>::operator[] const): Do not use iterator::operator+,
2095         hand code.
2096
2097 2006-08-05  Paolo Carlini  <pcarlini@suse.de>
2098
2099         PR libstdc++/28587
2100         * include/bits/stl_bvector.h (vector<bool>::_M_fill): New.
2101         (vector<bool>::_M_fill_insert): Use it.
2102         * testsuite/performance/23_containers/resize/vector_bool.cc: New.
2103         
2104         * testsuite/23_containers/vector/bool/modifiers/insert/1.cc: New.
2105         * testsuite/23_containers/vector/bool/capacity/1.cc: Likewise.
2106
2107 2006-08-04  Paolo Carlini  <pcarlini@suse.de>
2108
2109         * include/bits/stl_queue.h (priority_queue<>::push,
2110         priority_queue<>::pop): Remove try/catch, just follow the
2111         letter of the Standard.
2112
2113 2006-08-03  Paolo Carlini  <pcarlini@suse.de>
2114
2115         * include/bits/stl_queue.h: Trivial formatting fixes.
2116         * include/bits/stl_stack.h: Likewise.
2117
2118 2006-08-01  Ed Smith-Rowland  <3dw4rd@verizon.net>
2119
2120         * docs/html/ext/tr1.html: Update.
2121
2122 2006-07-31  Paolo Carlini  <pcarlini@suse.de>
2123
2124         * include/bits/locale_facets.tcc (num_put<>::_M_insert_float):
2125         Find the decimal point in cs, instead of ws; tidy.
2126
2127 2006-07-30  Roger Sayle  <roger@eyesopen.com>
2128
2129         * include/ext/codevt_specializations.h (__iconv_adaptor): Use
2130         identifier _Tp instead of _T in template argument to avoid conflict.
2131
2132 2006-07-30  Paolo Carlini  <pcarlini@suse.de>
2133
2134         * include/bits/stl_algo.h (stable_sort): Uglify the buf variable.
2135         * include/bits/stl_tempbuf.h (_Temporary_buffer<>::
2136         _M_initialize_buffer): Uglify the val parameter.
2137
2138 2006-07-27  Benjamin Kosnik  <bkoz@wells.artheist.org>
2139
2140         PR libstdc++/19664 round 3      
2141         * include/Makefile.am (tr1_headers): Add hashtable_policy.h.
2142         * include/Makefile.in: Regenerate.
2143         * include/tr1/hashtable: Move policy classes into...
2144         * include/tr1/hashtable_policy.h: ... this. New.
2145         
2146         * src/globals_locale.cc: Move contents....
2147         * src/locale_init.cc: ... to here, put in anonymous namespace.
2148         * src/Makefile.am: Remove globals_locale.cc.
2149         * src/Makefile.in: Regenerate.
2150
2151         * src/locale.cc: Convert __gnu_internal to anonymous namespace.
2152         * src/debug.cc: Same.
2153         * src/ext-inst.cc: Same.
2154         * src/mt_allocator.cc: Same.
2155         * src/pool_allocator.cc: Same.
2156         
2157         * include/tr1/random: Convert std::tr1::_Private to anonymous
2158         namespace.
2159         * include/tr1/random.tcc: Same.
2160
2161         * include/tr1/hashtable: Move ::Internal to std::tr1::detail and
2162         enclose bits that can actually be internal in in anonymous
2163         namespace.
2164         * include/tr1/unordered_set: Adjust explicit qualifications for
2165         namespace changes.
2166         * include/tr1/unordered_map: Same.
2167
2168         * include/tr1/cmath: Convert __gnu_internal to nested detail namespace.
2169
2170         * include/bits/cpp_type_traits.h: Move __type_type into anonymous
2171         namespace.
2172         
2173         * include/ext/rope: Change _Rope_constants to anonymous namespace.
2174         * include/ext/ropeimpl.h: Same.
2175         * src/ext-inst.cc: Same.
2176
2177 2006-07-24  Paolo Carlini  <pcarlini@suse.de>
2178
2179         * include/tr1/cinttypes: Simply protect everything with
2180         _GLIBCXX_USE_C99_INTTYPES_TR1.
2181         * include/tr1/cfenv: Likewise with _GLIBCXX_USE_C99_FENV_TR1.
2182         * include/tr1/cstdint: Likewise with _GLIBCXX_USE_C99_STDINT_TR1.
2183
2184 2006-07-21  Benjamin Kosnik  <bkoz@redhat.com>
2185
2186         * include/tr1/random: Make include guards consistent.
2187         * include/tr1/unordered_map: Same.
2188         * include/tr1/hashtable: Same.
2189         * include/tr1/unordered_set: Same.
2190
2191 2006-07-21  Steve Ellcey  <sje@cup.hp.com>
2192
2193         PR target/26792
2194         * configure.ac: Use GCC_CHECK_UNWIND_GETIPINFO to
2195         define HAVE_GETIPINFO.
2196         * aclocal.m4: Add include of ../config/unwind_ipinfo.m4.
2197         * config.h.in: Regenerate.
2198         * configure: Regenerate.
2199         * Makefile.in: Regenerate.
2200         * libmath/Makefile.in: Regenerate.
2201         * include/Makefile.in: Regenerate.
2202         * src/Makefile.in: Regenerate.
2203         * libsupc++/Makefile.in: Regenerate.
2204         * testsuite/Makefile.in: Regenerate.
2205         * po/Makefile.in: Regenerate.
2206         * libsupc++/eh_personality.cc: Check HAVE_GETIPINFO.
2207
2208 2006-07-21  Jason Merrill  <jason@redhat.com>
2209
2210         PR libstdc++/19664 round 2      
2211         * libsupc++/eh_personality.cc: Wrap extern "C" function
2212         definitions in namespace __cxxabiv1.
2213
2214 2006-07-21  David Daney  <ddaney@avtrex.com>
2215
2216         PR libgcj/28426
2217         * acinclude.m4: Added a comment.
2218
2219 2006-07-20  Benjamin Kosnik  <bkoz@redhat.com>
2220             Jakub Jelinek  <jakub@redhat.com>
2221         
2222         PR libstdc++/19664 round 1
2223         * acinclude.m4 (GLIBCXX_ENABLE_VISIBILITY): Check it.
2224         * configure.ac: Use it.
2225         * configure: Regenerate.
2226         * docs/html/configopts.html: Document it.
2227         * include/Makefile.am: Slip in to c++config.
2228         * include/Makefile.in: Regenerate.
2229         * include/bits/c++config (_GLIBCXX_VISIBILITY): New.
2230         (_GLIBCXX_BEGIN_NAMESPACE): Use it.
2231         (_GLIBCXX_END_NAMESPACE): Use it.
2232         (_GLIBCXX_BEGIN_NESTED_NAMESPACE): Use it.
2233         (_GLIBCXX_END_NESTED_NAMESPACE): Use it.                
2234         * src/debug.cc: Mark __gnu_internal namespace with hidden
2235         visibility attribute.
2236         * src/ext-inst.cc: Same.
2237         * src/globals_io.cc: Same.
2238         * src/globals_locale.cc: Same.
2239         * src/ios_init.cc: Same.
2240         * src/locale.cc: Same.
2241         * src/mt_allocator.cc: Same.
2242         * src/pool_allocator.cc: Same.
2243
2244 2006-07-16  Paolo Carlini  <pcarlini@suse.de>
2245
2246         PR libstdc++/28277 (partial: valarray bits)
2247         * include/std/std_valarray.h (valarray<>::shift(int),
2248         valarray<>::cshift(int)): Avoid __builtin_alloca with no limit,
2249         do the work in place.
2250         * testsuite/26_numerics/valarray/28277.cc: New.
2251
2252 2006-07-15  Paolo Carlini  <pcarlini@suse.de>
2253
2254         PR libstdc++/28277 (partial: ostream bits 1)
2255         * include/bits/ostream.tcc (operator<<(basic_ostream<_CharT>&,
2256         const char*)): Avoid __builtin_alloca with no limit in the
2257         widening.
2258         * testsuite/27_io/basic_ostream/inserters_character/wchar_t/
2259         28277-1.cc: New.
2260
2261 2006-07-14  Benjamin Kosnik  <bkoz@redhat.com>
2262
2263         * acinclude.m4 (GLIBCXX_ENABLE_ATOMIC_BUILTINS): New.
2264         * configure.ac: Use it.
2265         * configure: Regenerated.
2266         * config.h.in: Regenerated.
2267         * configure.host: Simplify.
2268         * include/bits/atomicity.h: Adjust macros.
2269         * config/cpu/generic/atomicity.h: Move...
2270         * config/cpu/generic/atomicity_mutex: New.
2271         * config/cpu/generic/atomicity_mutex/atomicity.h: ...here.
2272         * config/cpu/generic/atomic_builtins: Rename...
2273         * config/cpu/generic/atomicity_builtins: ...to this.
2274         * config/cpu/generic/atomicity_builtins/atomicity.h: Moved.
2275         * config/cpu/mips/atomicity.h: Comment MIPS II requirement.
2276
2277         * scripts/testsuite_flags.in: Make --cxxflags reflect CXXFLAGS.
2278         
2279 2006-07-14  Paolo Carlini  <pcarlini@suse.de>
2280
2281         * include/tr1/random (minstd_rand0, minstd_rand, ranlux3, ranlux4):
2282         Use unsigned long as implementation-defined type.
2283
2284 2006-07-14  Paolo Carlini  <pcarlini@suse.de>
2285
2286         * include/tr1/random.tcc (struct _To_Unsigned_Type): Add.
2287         (subtract_with_carry<>::seed(_Gen&, false_type)): Use an
2288         unsigned type in the loop, fix factor multiplier, take g
2289         invocations modulo 2^32.
2290
2291         * include/tr1/random.tcc (subtract_with_carry<>::
2292         seed(unsigned long)): Fix value == 0 special case.
2293
2294         * include/tr1/random (struct _Shift): Fix for large shifts.
2295
2296 2006-07-13  Paolo Carlini  <pcarlini@suse.de>
2297
2298         * testsuite/performance/21_strings/string_copy_cons_and_dest.cc: New.
2299
2300 2006-07-13  Benjamin Kosnik  <bkoz@redhat.com>
2301
2302         * include/Makefile.am (pch*_output_anchor): Add.
2303         (pch*_output): Use.
2304         (CLEANFILES): Use.
2305         * include/Makefile.in: Regenerate.
2306         
2307         * scripts/check_performance: Be verbose on compile error.
2308
2309 2006-07-12  Benjamin Kosnik  <bkoz@redhat.com>
2310
2311         * include/Makefile.am: Revert last change.
2312         * include/Makefile.in: Same.
2313
2314 2006-07-12  Benjamin Kosnik  <bkoz@redhat.com>
2315
2316         * include/Makefile.am (pch_output): Don't precompile extc++.h.
2317         (pch_output_dirs): Same.
2318         * include/Makefile.in: Regenerate.
2319
2320         * testsuite/lib/libstdc++.exp: Test PCH with stdtr1c++.h.
2321         
2322 2006-07-11  Paolo Carlini  <pcarlini@suse.de>
2323
2324         * include/ext/codecvt_specializations.h: Fix typo in commit
2325         for libstdc++/28290.
2326
2327 2006-07-11  Paolo Carlini  <pcarlini@suse.de>
2328
2329         * include/bits/locale_facets.tcc (collate<>::do_transform(
2330         const _CharT*, const _CharT*)): Simplify previous fix for
2331         libstdc++/28277, always allocate memory dynamically.
2332
2333 2006-07-11  Paolo Carlini  <pcarlini@suse.de>
2334
2335         PR libstdc++/28344
2336         * include/tr1/random (gamma_distribution<>::
2337         gamma_distribution(const result_type&)): Don't use __alpha as
2338         parameter name, a predefined macro on Alpha systems.
2339
2340 2006-07-11  Paolo Carlini  <pcarlini@suse.de>
2341
2342         PR libstdc++/28290
2343         * include/ext/codecvt_specializations.h: Fix, adding missing
2344         includes and guards.
2345
2346 2006-07-11  Paolo Carlini  <pcarlini@suse.de>
2347
2348         PR libstdc++/28277 (partial: collate bits)
2349         * include/bits/locale_facets.tcc (collate<>::do_transform(
2350         const _CharT*, const _CharT*)): Avoid __builtin_alloca with no
2351         limit; also avoid multiple calls (in a loop).
2352         * testsuite/22_locale/collate/transform/char/28277.cc: New.
2353         * testsuite/22_locale/collate/transform/wchar_t/28277.cc: Likewise.
2354
2355 2006-07-10  Mike Stump  <mrs@apple.com>
2356
2357         * libsupc++/eh_globals.cc (~__eh_globals_init): Unset _M_init.
2358
2359 2006-07-10  Benjamin Kosnik  <bkoz@redhat.com>
2360
2361         PR libstdc++/15448
2362         * include/Makefile.am: Clean up pch rules.
2363         * include/Makefile.in: Regenerate.
2364
2365 2006-07-09  Paolo Carlini  <pcarlini@suse.de>
2366
2367         * include/bits/locale_facets.tcc (__int_to_char<>(_CharT*,
2368         long, const _CharT*, ios_base::fmtflags), __int_to_char<>(_CharT*,
2369         unsigned long, const _CharT*, ios_base::fmtflags),
2370         __int_to_char<>(_CharT*, long long, const _CharT*, ios_base::fmtflags),
2371         __int_to_char<>(_CharT*, unsigned long long, const _CharT*,
2372         ios_base::fmtflags)): Remove.
2373         (__int_to_char<>(_CharT*, _ValueT, const _CharT*, ios_base::fmtflags,
2374         bool)): Adjust.
2375         (num_put<>::_M_insert_int(_OutIter, ios_base&, _CharT, _ValueT)):
2376         Likewise.
2377
2378 2006-07-06  Paolo Carlini  <pcarlini@suse.de>
2379
2380         * include/tr1/random (class gamma_distribution<>): Add.
2381         * include/tr1/random.tcc (gamma_distribution<>::operator(),
2382         operator<<(std::basic_ostream<>&, const gamma_distribution<>&)):
2383         Define.
2384         * testsuite/tr1/5_numerical_facilities/random/gamma_distribution/
2385         requirements/typedefs.cc: New.
2386
2387 2006-07-06  Benjamin Kosnik  <bkoz@redhat.com>
2388
2389         * testsuite/util/regression/trait/assoc/trait.hpp: Format.
2390         * testsuite/util/regression/rand/priority_queue/
2391         rand_regression_test.hpp: Same.
2392         * testsuite/util/regression/rand/assoc/rand_regression_test.hpp: Same.
2393         * testsuite/util/regression/rand/
2394         assoc/container_rand_regression_test.hpp: Same.
2395         * testsuite/util/regression/priority_queue/common_type.hpp: Same.
2396         * testsuite/util/regression/assoc/common_type.hpp: Same.
2397         * testsuite/util/regression/basic_type.hpp: Same.
2398
2399 2006-07-05  Benjamin Kosnik  <bkoz@redhat.com>  
2400
2401         * include/Makefile.am (pch_output): New.
2402         (clean-local): Use it.
2403         * include/Makefile.in: Regenerate.
2404
2405 2006-07-04  Paolo Carlini  <pcarlini@suse.de>
2406
2407         * include/tr1/random (_Adaptor<>::operator()()): Cast 1 to
2408         result_type.
2409         (variate_generator<>::operator()(),
2410         variate_generator<>::operator()(_Tp)): Inline.
2411
2412         * include/tr1/random: Minor cosmetic changes.
2413
2414 2006-07-03  Paolo Carlini  <pcarlini@suse.de>
2415
2416         * include/ext/rc_string_base.h (__rc_string_base::_S_max_size):
2417         Adjust, take into account rounding in _M_create.
2418         (__rc_string_base::_M_create): Add early _S_max_size check.
2419
2420 2006-07-03  Ian Lance Taylor  <ian@airs.com>
2421             Paolo Carlini  <pcarlini@suse.de>
2422
2423         * include/ext/rc_string_base.h (__rc_string_base::_S_max_size):
2424         Increase by a factor of two.
2425         * include/ext/sso_string_base.h (__sso_string_base::_S_max_size):
2426         Likewise.
2427
2428 2006-07-03  Paolo Carlini  <pcarlini@suse.de>
2429
2430         * include/ext/sso_string_base.h (__sso_string_base::_M_create): Never
2431         allocate a string bigger than _S_max_size.
2432
2433 2006-06-29  Benjamin Kosnik  <bkoz@redhat.com>
2434
2435         * include/Makefile.am (pch1_input, pch1_output_builddir,
2436         pch1_outputj_installdir, pch1_source): Move from pch_*.
2437         (pch2_input, pch2_output_builddir,
2438         pch2_output_installdir, pch2_source): Clone for ext.
2439         (pch3_input, pch3_output_builddir,
2440         pch3_output_installdir, pch3_source): Clone for tr1.
2441         (install-pch): Same.
2442         * include/Makefile.in: Regenerate.
2443
2444         * include/precompiled: New directory.
2445         * include/stdc++.h: Move...
2446         * include/precompiled/stdc++.h: ... here.               
2447         * include/precompiled/stdtr1c++.h: New.
2448         * include/precompiled/extc++.h: New.
2449
2450         * testsuite/lib/libstdc++.exp (libstdc++_init): Set PCH_CXXFLAGS
2451         to -include bits/stdtr1c++.h.
2452
2453 2006-06-29  Benjamin Kosnik  <bkoz@redhat.com>
2454
2455         * testsuite/lib/libstdc++.exp (v3_target_compile): Set timeout to
2456         600.
2457
2458 2006-06-27  Benjamin Kosnik  <bkoz@redhat.com>
2459
2460         * testsuite/util/regression/rand/priority_queue/
2461         rand_regression_test.hpp: Revert.
2462
2463 2006-06-27  Benjamin Kosnik  <bkoz@redhat.com>
2464
2465         * include/ext/typelist.h (typelist_append): To append_typelist. 
2466         (typelist): To node.
2467         Enclose in namespace typelist.
2468         * testsuite/util/testsuite_common_types.h: Adjust names, namespaces.
2469         * testsuite/performance/23_containers/find/map.cc: Same.
2470         * testsuite/performance/23_containers/create/map.cc: Same.
2471         * testsuite/performance/23_containers/insert_erase/associative.cc: 
2472         Same.
2473         * testsuite/performance/23_containers/insert/sequence.cc: Same.
2474         * testsuite/performance/23_containers/insert/associative.cc: Same.
2475         * testsuite/performance/23_containers/create_from_sorted/set.cc: Same.
2476         * testsuite/performance/23_containers/index/map.cc: Same.
2477         * testsuite/performance/23_containers/insert_from_sorted/set.cc: Same.
2478         * testsuite/performance/23_containers/create_sort/list.cc: Same.
2479         * testsuite/performance/23_containers/sort_search/list.cc: Same.
2480         * testsuite/performance/23_containers/producer_consumer/sequence.cc: 
2481         Same.
2482         * testsuite/performance/23_containers/producer_consumer/associative.cc:
2483         Same.
2484
2485 2006-06-26  Benjamin Kosnik  <bkoz@redhat.com>
2486
2487         * testsuite/ext/pb_ds/regression/trie_no_data_map_rand.cc:
2488         Reduce iterations by half.
2489         * testsuite/ext/pb_ds/regression/hash_data_map_rand.cc: Same.
2490         * testsuite/ext/pb_ds/regression/hash_no_data_map_rand.cc: Same.
2491         * testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc: Same.
2492         * testsuite/ext/pb_ds/regression/list_update_no_data_map_rand.cc: Same.
2493         * testsuite/ext/pb_ds/regression/priority_queue_rand.cc: Same.
2494         * testsuite/ext/pb_ds/regression/tree_data_map_rand.cc: Same.
2495         * testsuite/ext/pb_ds/regression/tree_no_data_map_rand.cc: Same.
2496         * testsuite/ext/pb_ds/regression/trie_data_map_rand.cc: Same.
2497
2498         * testsuite/util/regression/rand/assoc/rand_regression_test.hpp:
2499         Set probability of compare from 1 to 0.25.
2500         * testsuite/util/regression/rand/priority_queue/
2501         rand_regression_test.hpp: Same.
2502
2503 2006-06-25  Paolo Carlini  <pcarlini@suse.de>
2504
2505         * include/tr1/random (operator<<(std::basic_ostream<>&,
2506         const linear_congruential<>&), operator>>(std::basic_istream<>&,
2507         linear_congruential<>&), operator<<(std::basic_ostream<>&,
2508         const mersenne_twister<>&), operator>>(std::basic_istream<>&,
2509         mersenne_twister<>&), operator<<(std::basic_ostream<>&,
2510         const subtract_with_carry<>&), operator>>(std::basic_istream<>&,
2511         subtract_with_carry<>&), operator<<(std::basic_ostream<>&,
2512         const discard_block<>&), operator>>(std::basic_istream<>&,
2513         discard_block<>&), operator<<(std::basic_ostream<>&,
2514         const xor_combine<>&), operator>>(std::basic_istream<>&,
2515         xor_combine<>&), operator<<(std::basic_ostream<>&,
2516         const uniform_int<>&), operator>>(std::basic_istream<>&,
2517         uniform_int<>&), operator<<(std::basic_ostream<>&,
2518         const bernoulli_distribution&), operator<<(std::basic_ostream<>&,
2519         const geometric_distribution<>&), operator<<(std::basic_ostream<>&,
2520         const uniform_real<>&), operator>>(std::basic_istream<>&,
2521         uniform_real<>&), operator<<(std::basic_ostream<>&,
2522         const exponential_distribution<>&), operator<<(std::basic_ostream<>&,
2523         const normal_distribution<>&), operator>>(std::basic_istream<>&,
2524         normal_distribution<>&)): Redo per TR1 specs; move out of line...
2525         * include/tr1/random.tcc: ... here.
2526
2527 2006-06-24  Paolo Carlini  <pcarlini@suse.de>
2528
2529         * include/tr1/random (class normal_distribution<>): Add.
2530         * include/tr1/random.tcc (normal_distribution<>::operator()): Define.
2531         
2532         * include/tr1/random.tcc (struct _Max): Remove, "inline" in the
2533         only user, mersenne_twister<>::max().
2534
2535         * include/tr1/random.tcc (struct _Shift): Move...
2536         * include/tr1/random: ... here.
2537
2538         * include/tr1/random.tcc (linear_congruential<>::
2539         linear_congruential(unsigned long), linear_congruential<>::
2540         linear_congruential(_Gen&), mersenne_twister<>::max())): Move inline...
2541         * include/tr1/random: ... here.
2542
2543         * include/tr1/random (exponential_distribution<>::
2544         exponential_distribution(const result_type&)): Add missing
2545         _GLIBCXX_DEBUG_ASSERT.
2546
2547         * testsuite/tr1/5_numerical_facilities/random/
2548         exponential_distribution/requirements/typedefs.cc: New.
2549         * testsuite/tr1/5_numerical_facilities/random/
2550         normal_distribution/requirements/typedefs.cc: Likewise.
2551         * testsuite/tr1/5_numerical_facilities/random/
2552         bernoulli_distribution/requirements/typedefs.cc: Likewise.
2553         * testsuite/tr1/5_numerical_facilities/random/
2554         geometric_distribution/requirements/typedefs.cc: Likewise.
2555
2556 2006-06-23  Benjamin Kosnik  <bkoz@redhat.com>
2557
2558         PR libstdc++/27984
2559         * testsuite/lib/libstdc++.exp (libstdc++_init): Adjust
2560         testing includes.
2561         * docs/html/test.html: Adjust for testsuite changes.
2562         
2563 2006-06-22  Jonathan Lennox  <lennox@cs.columbia.edu>
2564             Paolo Carlini  <pcarlini@suse.de>
2565
2566         * include/ext/pb_ds/detail/resize_policy/
2567         hash_prime_size_policy_imp.hpp: Cast to size_t instead.
2568
2569 2006-06-22  Ami Tavory  <atavory@gmail.com>
2570
2571         * include/ext/pb_ds/detail/resize_policy/
2572         hash_prime_size_policy_imp.hpp: Fix for 64-bit machines.
2573
2574 2006-06-21  Paolo Carlini  <pcarlini@suse.de>
2575
2576         * include/bits/postypes.h (operator==(const fpos<>&, const fpos<>&),
2577         operator!=(const fpos<>&, const fpos<>&)): Add.
2578         * testsuite/27_io/fpos/mbstate_t/6.cc: New.
2579
2580 2006-06-21  Mark Mitchell  <mark@codesourcery.com>
2581
2582         * acinclude.m4 (GLIBCXX_EXPORT_INSTALL_INFO): When
2583         cross-compiling, put headers in $prefix/$target/include/c++.
2584         * configure: Regenerated.
2585
2586 2006-06-20  Paolo Carlini  <pcarlini@suse.de>
2587
2588         * include/tr1/random.tcc (struct _Private::_Mod_w<>,
2589         _Private::__mod_w<>): Remove.
2590         (struct _Private::_Shift<>): New.
2591         (struct _Private::_Max_w<>): Rename to _Max, use the latter.
2592         (mersenne_twister<>::seed(unsigned long), seed(_Gen&, false_type),
2593         max()): Adjust.
2594
2595 2006-06-20  Vladimir Prus  <vladimir@codesourcery.com>
2596
2597         * libsupc++/eh_arm.cc (__cxa_begin_cleanup): Always return 'true'.
2598
2599 2006-06-19  Paolo Carlini  <pcarlini@suse.de>
2600
2601         * include/tr1/random (xor_combine<>::operator<<): Fix typo.
2602         
2603         * include/tr1/random (bernoulli_distribution::min(),
2604         bernoulli_distribution::max(), geometric_distribution<>::min(),
2605         geometric_distribution<>::max()): Remove.
2606
2607         * include/tr1/random (geometric_distribution<>::operator()):
2608         Simplify formula.
2609
2610         * include/tr1/random: Minor cosmetic changes.
2611
2612         * testsuite/tr1/5_numerical_facilities/random/discard_block/
2613         operators/equal.cc: New.
2614         * testsuite/tr1/5_numerical_facilities/random/discard_block/
2615         operators/not_equal.cc: Likewise.
2616         * testsuite/tr1/5_numerical_facilities/random/discard_block/
2617         operators/serialize.cc: Likewise.
2618         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
2619         operators/equal.cc: Likewise.
2620         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
2621         operators/not_equal.cc: Likewise.
2622         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
2623         operators/serialize.cc: Likewise.
2624
2625 2006-06-17  Ami Tavory  <atavory@gmail.com>
2626             Paolo Carlini  <pcarlini@suse.de>
2627
2628         * testsuite/util/rng/twister_rand_gen.cc: Adapt to simply use
2629         tr1::mt19937.
2630         * testsuite/util/rng/twister_rand_gen.hpp: Likewise.
2631
2632 2006-06-16  Paolo Carlini  <pcarlini@suse.de>
2633
2634         * include/tr1/random (uniform_real<>::uniform_real(_RealType,
2635         _RealType)): Implement.
2636         (uniform_real<>::min()): Likewise.
2637         (uniform_real<>::max()): Likewise.
2638         (uniform_real<>::reset()): Likewise.
2639
2640         * include/tr1/random (class uniform_real<>): Minor cosmetic tweaks.
2641
2642 2006-06-16  Paolo Carlini  <pcarlini@suse.de>
2643
2644         * include/bits/locale_facets.tcc (time_get<>::_M_extract_via_format):
2645         Ignore the value of the __err argument.
2646         (time_get<>::do_get_weekday): Likewise.
2647         (time_get<>::do_get_monthname): Likewise.
2648         * testsuite/22_locale/time_get/get_year/wchar_t/5.cc: New.
2649         * testsuite/22_locale/time_get/get_year/char/5.cc: Likewise.
2650         * testsuite/22_locale/time_get/get_monthname/wchar_t/5.cc: Likewise.
2651         * testsuite/22_locale/time_get/get_monthname/char/5.cc: Likewise.
2652         * testsuite/22_locale/time_get/get_weekday/wchar_t/5.cc: Likewise.
2653         * testsuite/22_locale/time_get/get_weekday/char/5.cc: Likewise.
2654         * testsuite/22_locale/time_get/get_date/wchar_t/5.cc: Likewise.
2655         * testsuite/22_locale/time_get/get_date/char/5.cc: Likewise.
2656         * testsuite/22_locale/time_get/get_time/wchar_t/5.cc: Likewise.
2657         * testsuite/22_locale/time_get/get_time/char/5.cc: Likewise.
2658
2659 2006-06-15  Benjamin Kosnik  <bkoz@redhat.com>
2660
2661         * include/ext/pb_ds/detail/type_utils.hpp (numeric_traits): Add,
2662         const expression interface to std::numeric_limits::min and max
2663         functions.
2664         * include/ext/pb_ds/trie_policy.hpp (string_trie_e_access_traits):
2665         Use it.
2666
2667         * include/ext/pb_ds/detail/resize_policy/
2668         hash_load_check_resize_trigger_imp.hpp: Format.
2669         * include/ext/pb_ds/detail/pat_trie_/internal_node.hpp: Same.
2670
2671 2006-06-15  Paolo Carlini  <pcarlini@suse.de>
2672
2673         * include/tr1/random.tcc (mersenne_twister<>::operator()()):
2674         Reload the last position of the _M_x vector too.
2675
2676 2006-06-15  Paolo Carlini  <pcarlini@suse.de>
2677
2678         * include/tr1/random (class xor_combine): Fix result_type typedef.
2679         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
2680         cons/default.cc: New.
2681         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
2682         requirements/typedefs.cc: Tweak.
2683
2684         * include/tr1/random: Minor cosmetic changes.
2685
2686 2006-06-14  Ami Tavory  <atavory@gmail.com>
2687             Benjamin Kosnik  <bkoz@redhat.com>
2688
2689         * include/ext/pb_assoc: Delete.
2690         * include/ext/pb_ds: Add.
2691         * docs/html/ext/pb_assoc: Delete.
2692         * docs/html/ext/pb_ds: Add.
2693         * testsuite/ext/pb_assoc: Delete.
2694         * testsuite/ext/pb_ds: Add.
2695         * testsuite/performance/ext: Add.
2696         * testsuite/performance/ext/pb_ds: Add. 
2697
2698         * testsuite/util/regression: New.
2699         * testsuite/util/rng: New.
2700         * testsuite/util/native_type: New.
2701         * testsuite/util/common_type: New.
2702         * testsuite/util/performance: New.
2703         * testsuite/util/hash_fn: New.
2704         * testsuite/util/io: New.
2705         * testsuite/util/statistic: New.
2706
2707         * scripts/make_graph.py: New.
2708         * scripts/make_graphs.py: New.
2709         * testsuite/data/thirty_years_among_the_dead_preproc.txt: Add.
2710         * testsuite/data/make_graph_htmls.xml: Add.
2711         * testsuite/data/make_graph_test_infos.xml: Add.        
2712
2713         * testsuite/lib/libstdc++.exp (v3-build_support): Add in new
2714         object files for regression testing.
2715         * docs/html/documentation.html: Adjust links.
2716         * include/Makefile.am (install-headers): Update for new sources,
2717         directories.
2718         * include/Makefine.in: Regenerate.
2719         * scripts/testsuite_flags.in: Adjust to testsuite/util path.
2720         * scripts/check_performance: Simplify, adjust for new testsuite output.
2721         * testsuite/Makefile.am (check-performance): Adjust.
2722         (doc-performance): New.
2723         * testsuite/Makefile.in: Regenerate.
2724
2725         * include/ext/pb_ds: New.
2726         * include/ext/pb_ds/assoc_container.hpp: Same.
2727         * include/ext/pb_ds/detail: New.
2728         * include/ext/pb_ds/detail/binomial_heap_base_: New.
2729         * include/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp: Same.
2730         * include/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp: Same.
2731         * include/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp: Same.
2732         * include/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp: Same.
2733         * include/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp: Same.
2734         * include/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp: Same.
2735         * include/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp: Same.
2736         * include/ext/pb_ds/detail/resize_policy: New.
2737         * include/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp: Same.
2738         * include/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp: Same.
2739         * include/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp: Same.
2740         * include/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp: Same.
2741         * include/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp: Same.
2742         * include/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp: Same.
2743         * include/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp: Same.
2744         * include/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp: Same.
2745         * include/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp: Same.
2746         * include/ext/pb_ds/detail/container_base_dispatch.hpp: Same.
2747         * include/ext/pb_ds/detail/cc_hash_table_map_: New.
2748         * include/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp: Same.
2749         * include/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp: Same.
2750         * include/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp: Same.
2751         * include/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp: Same.
2752         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp: Same.
2753         * include/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp: Same.
2754         * include/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp: Same.
2755         * include/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp: Same.
2756         * include/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp: Same.
2757         * include/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp: Same.
2758         * include/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp: Same.
2759         * include/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp: Same.
2760         * include/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp: Same.
2761         * include/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp: Same.
2762         * include/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp: Same.
2763         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp: Same.
2764         * include/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp: Same.
2765         * include/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp: Same.
2766         * include/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp: Same.
2767         * include/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp: Same.
2768         * include/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp: Same.
2769         * include/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp: Same.
2770         * include/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp: Same.
2771         * include/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp: Same.
2772         * include/ext/pb_ds/detail/cc_hash_table_map_/standard_policies.hpp: Same.
2773         * include/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp: Same.
2774         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp: Same.
2775         * include/ext/pb_ds/detail/typelist_assoc_container.hpp: Same.
2776         * include/ext/pb_ds/detail/tree_trace_base.hpp: Same.
2777         * include/ext/pb_ds/detail/unordered_iterator: New.
2778         * include/ext/pb_ds/detail/unordered_iterator/iterator.hpp: Same.
2779         * include/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp: Same.
2780         * include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp: Same.
2781         * include/ext/pb_ds/detail/unordered_iterator/const_point_iterator.hpp: Same.
2782         * include/ext/pb_ds/detail/typelist.hpp: Same.
2783         * include/ext/pb_ds/detail/pat_trie_: New.
2784         * include/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp: Same.
2785         * include/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp: Same.
2786         * include/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp: Same.
2787         * include/ext/pb_ds/detail/pat_trie_/child_iterator.hpp: Same.
2788         * include/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp: Same.
2789         * include/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp: Same.
2790         * include/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp: Same.
2791         * include/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp: Same.
2792         * include/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp: Same.
2793         * include/ext/pb_ds/detail/pat_trie_/head.hpp: Same.
2794         * include/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp: Same.
2795         * include/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp: Same.
2796         * include/ext/pb_ds/detail/pat_trie_/traits.hpp: Same.
2797         * include/ext/pb_ds/detail/pat_trie_/cond_dtor_entry_dealtor.hpp: Same.
2798         * include/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp: Same.
2799         * include/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp: Same.
2800         * include/ext/pb_ds/detail/pat_trie_/leaf.hpp: Same.
2801         * include/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp: Same.
2802         * include/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp: Same.
2803         * include/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp: Same.
2804         * include/ext/pb_ds/detail/pat_trie_/node_base.hpp: Same.
2805         * include/ext/pb_ds/detail/pat_trie_/node_metadata_base.hpp: Same.
2806         * include/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp: Same.
2807         * include/ext/pb_ds/detail/pat_trie_/node_iterators.hpp: Same.
2808         * include/ext/pb_ds/detail/pat_trie_/internal_node.hpp: Same.
2809         * include/ext/pb_ds/detail/pat_trie_/point_iterators.hpp: Same.
2810         * include/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp: Same.
2811         * include/ext/pb_ds/detail/bin_search_tree_: New.
2812         * include/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp: Same.
2813         * include/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp: Same.
2814         * include/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp: Same.
2815         * include/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp: Same.
2816         * include/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp: Same.
2817         * include/ext/pb_ds/detail/bin_search_tree_/cond_dtor_entry_dealtor.hpp: Same.
2818         * include/ext/pb_ds/detail/bin_search_tree_/traits.hpp: Same.
2819         * include/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp: Same.
2820         * include/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp: Same.
2821         * include/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp: Same.
2822         * include/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp: Same.
2823         * include/ext/pb_ds/detail/bin_search_tree_/cond_key_dtor_entry_dealtor.hpp: Same.
2824         * include/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp: Same.
2825         * include/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp: Same.
2826         * include/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp: Same.
2827         * include/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp: Same.
2828         * include/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp: Same.
2829         * include/ext/pb_ds/detail/gp_hash_table_map_: New.
2830         * include/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp: Same.
2831         * include/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp: Same.
2832         * include/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp: Same.
2833         * include/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp: Same.
2834         * include/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp: Same.
2835         * include/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp: Same.
2836         * include/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp: Same.
2837         * include/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp: Same.
2838         * include/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp: Same.
2839         * include/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp: Same.
2840         * include/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp: Same.
2841         * include/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp: Same.
2842         * include/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp: Same.
2843         * include/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp: Same.
2844         * include/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp: Same.
2845         * include/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp: Same.
2846         * include/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp: Same.
2847         * include/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp: Same.
2848         * include/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp: Same.
2849         * include/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp: Same.
2850         * include/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp: Same.
2851         * include/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp: Same.
2852         * include/ext/pb_ds/detail/gp_hash_table_map_/standard_policies.hpp: Same.
2853         * include/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp: Same.
2854         * include/ext/pb_ds/detail/standard_policies.hpp: Same.
2855         * include/ext/pb_ds/detail/typelist: New.
2856         * include/ext/pb_ds/detail/typelist/typelist_flatten.hpp: Same.
2857         * include/ext/pb_ds/detail/typelist/typelist_contains.hpp: Same.
2858         * include/ext/pb_ds/detail/typelist/typelist_typelist_append.hpp: Same.
2859         * include/ext/pb_ds/detail/typelist/typelist_apply.hpp: Same.
2860         * include/ext/pb_ds/detail/typelist/typelist_filter.hpp: Same.
2861         * include/ext/pb_ds/detail/typelist/typelist_append.hpp: Same.
2862         * include/ext/pb_ds/detail/typelist/typelist_assoc_container_find.hpp: Same.
2863         * include/ext/pb_ds/detail/typelist/typelist_transform.hpp: Same.
2864         * include/ext/pb_ds/detail/typelist/typelist_at_index.hpp: Same.
2865         * include/ext/pb_ds/detail/tree_policy: New.
2866         * include/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp: Same.
2867         * include/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp: Same.
2868         * include/ext/pb_ds/detail/tree_policy/null_node_update_imp.hpp: Same.
2869         * include/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp: Same.
2870         * include/ext/pb_ds/detail/basic_tree_policy: New.
2871         * include/ext/pb_ds/detail/basic_tree_policy/basic_tree_policy_base.hpp: Same.
2872         * include/ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp: Same.
2873         * include/ext/pb_ds/detail/basic_tree_policy/traits.hpp: Same.
2874         * include/ext/pb_ds/detail/types_traits.hpp: Same.
2875         * include/ext/pb_ds/detail/binary_heap_: New.
2876         * include/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp: Same.
2877         * include/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp: Same.
2878         * include/ext/pb_ds/detail/binary_heap_/const_iterator.hpp: Same.
2879         * include/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp: Same.
2880         * include/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp: Same.
2881         * include/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp: Same.
2882         * include/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp: Same.
2883         * include/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp: Same.
2884         * include/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp: Same.
2885         * include/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp: Same.
2886         * include/ext/pb_ds/detail/binary_heap_/entry_pred.hpp: Same.
2887         * include/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp: Same.
2888         * include/ext/pb_ds/detail/binary_heap_/resize_policy.hpp: Same.
2889         * include/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp: Same.
2890         * include/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp: Same.
2891         * include/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp: Same.
2892         * include/ext/pb_ds/detail/trie_policy: New.
2893         * include/ext/pb_ds/detail/trie_policy/string_trie_e_access_traits_imp.hpp: Same.
2894         * include/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp: Same.
2895         * include/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp: Same.
2896         * include/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp: Same.
2897         * include/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp: Same.
2898         * include/ext/pb_ds/detail/trie_policy/sample_trie_e_access_traits.hpp: Same.
2899         * include/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp: Same.
2900         * include/ext/pb_ds/detail/trie_policy/null_node_update_imp.hpp: Same.
2901         * include/ext/pb_ds/detail/cond_dealtor.hpp: Same.
2902         * include/ext/pb_ds/detail/priority_queue_base_dispatch.hpp: Same.
2903         * include/ext/pb_ds/detail/pairing_heap_: Name.
2904         * include/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp: Same.
2905         * include/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp: Same.
2906         * include/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp: Same.
2907         * include/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp: Same.
2908         * include/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp: Same.
2909         * include/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp: Same.
2910         * include/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp: Same.
2911         * include/ext/pb_ds/detail/binomial_heap_: New.
2912         * include/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp: Same.
2913         * include/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp: Same.
2914         * include/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp: Same.
2915         * include/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp: Same.
2916         * include/ext/pb_ds/detail/type_utils.hpp: Same.
2917         * include/ext/pb_ds/detail/eq_fn: New.
2918         * include/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp: Same.
2919         * include/ext/pb_ds/detail/eq_fn/eq_by_less.hpp: Same.
2920         * include/ext/pb_ds/detail/basic_types.hpp: Same.
2921         * include/ext/pb_ds/detail/list_update_policy: New.
2922         * include/ext/pb_ds/detail/list_update_policy/mtf_lu_policy_imp.hpp: Same.
2923         * include/ext/pb_ds/detail/list_update_policy/counter_lu_metadata.hpp: Same.
2924         * include/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp: Same.
2925         * include/ext/pb_ds/detail/list_update_policy/counter_lu_policy_imp.hpp: Same.
2926         * include/ext/pb_ds/detail/thin_heap_: New.
2927         * include/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp: Same.
2928         * include/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp: Same.
2929         * include/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp: Same.
2930         * include/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp: Same.
2931         * include/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp: Same.
2932         * include/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp: Same.
2933         * include/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp: Same.
2934         * include/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp: Same.
2935         * include/ext/pb_ds/detail/left_child_next_sibling_heap_: New.
2936         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp: Same.
2937         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp: Same.
2938         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/null_metadata.hpp: Same.
2939         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp: Same.
2940         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp: Same.
2941         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp: Same.
2942         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp: Same.
2943         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp: Same.
2944         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp: Same.
2945         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp: Same.
2946         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp: Same.
2947         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp: Same.
2948         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/const_point_iterator.hpp: Same.
2949         * include/ext/pb_ds/detail/ov_tree_map_: New.
2950         * include/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp: Same.
2951         * include/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp: Same.
2952         * include/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp: Same.
2953         * include/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp: Same.
2954         * include/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp: Same.
2955         * include/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp: Same.
2956         * include/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp: Same.
2957         * include/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp: Same.
2958         * include/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp: Same.
2959         * include/ext/pb_ds/detail/ov_tree_map_/traits.hpp: Same.
2960         * include/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp: Same.
2961         * include/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp: Same.
2962         * include/ext/pb_ds/detail/map_debug_base.hpp: Same.
2963         * include/ext/pb_ds/detail/hash_fn: New.
2964         * include/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp: Same.
2965         * include/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp: Same.
2966         * include/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp: Same.
2967         * include/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp: Same.
2968         * include/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp: Same.
2969         * include/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp: Same.
2970         * include/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp: Same.
2971         * include/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp: Same.
2972         * include/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp: Same.
2973         * include/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp: Same.
2974         * include/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp: Same.
2975         * include/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp: Same.
2976         * include/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp: Same.
2977         * include/ext/pb_ds/detail/splay_tree_: New.
2978         * include/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp: Same.
2979         * include/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp: Same.
2980         * include/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp: Same.
2981         * include/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp: Same.
2982         * include/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp: Same.
2983         * include/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp: Same.
2984         * include/ext/pb_ds/detail/splay_tree_/node.hpp: Same.
2985         * include/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp: Same.
2986         * include/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp: Same.
2987         * include/ext/pb_ds/detail/splay_tree_/traits.hpp: Same.
2988         * include/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp: Same.
2989         * include/ext/pb_ds/detail/list_update_map_: New.
2990         * include/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp: Same.
2991         * include/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp: Same.
2992         * include/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp: Same.
2993         * include/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp: Same.
2994         * include/ext/pb_ds/detail/list_update_map_/lu_map_.hpp: Same.
2995         * include/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp: Same.
2996         * include/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp: Same.
2997         * include/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp: Same.
2998         * include/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp: Same.
2999         * include/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp: Same.
3000         * include/ext/pb_ds/detail/rc_binomial_heap_: New.
3001         * include/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp: Same.
3002         * include/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp: Same.
3003         * include/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp: Same.
3004         * include/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp: Same.
3005         * include/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp: Same.
3006         * include/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp: Same.
3007         * include/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp: Same.
3008         * include/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp: Same.
3009         * include/ext/pb_ds/detail/rb_tree_map_: New.
3010         * include/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp: Same.
3011         * include/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp: Same.
3012         * include/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp: Same.
3013         * include/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp: Same.
3014         * include/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp: Same.
3015         * include/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp: Same.
3016         * include/ext/pb_ds/detail/rb_tree_map_/node.hpp: Same.
3017         * include/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp: Same.
3018         * include/ext/pb_ds/detail/rb_tree_map_/traits.hpp: Same.
3019         * include/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp: Same.
3020         * include/ext/pb_ds/list_update_policy.hpp: Same.
3021         * include/ext/pb_ds/exception.hpp: Same.
3022         * include/ext/pb_ds/tree_policy.hpp: Same.
3023         * include/ext/pb_ds/tag_and_trait.hpp: Same.
3024         * include/ext/pb_ds/hash_policy.hpp: Same.
3025         * include/ext/pb_ds/trie_policy.hpp: Same.
3026         * include/ext/pb_ds/priority_queue.hpp: Same.
3027
3028         * docs/html/ext/pb_ds: New.
3029         * docs/html/ext/pb_ds/container_tag.html: Same.
3030         * docs/html/ext/pb_ds/trivial_iterator_tag.html: Same.
3031         * docs/html/ext/pb_ds/tree_text_lor_find_timing_test_local.png
3032         * docs/html/ext/pb_ds/sample_trie_e_access_traits.html: Same.
3033         * docs/html/ext/pb_ds/gp_hash_table.html: Same.
3034         * docs/html/ext/pb_ds/priority_queue_tag_cd.svg
3035         * docs/html/ext/pb_ds/container_cd.svg
3036         * docs/html/ext/pb_ds/linear_probe_fn.html: Same.
3037         * docs/html/ext/pb_ds/hash_random_int_erase_mem_usage_test_local.png
3038         * docs/html/ext/pb_ds/quadratic_probe_fn.html: Same.
3039         * docs/html/ext/pb_ds/assoc_regression_tests.html: Same.
3040         * docs/html/ext/pb_ds/tree_tag.html: Same.
3041         * docs/html/ext/pb_ds/hash_random_int_erase_mem_usage_test.html: Same.
3042         * docs/html/ext/pb_ds/interface.html: Same.
3043         * docs/html/ext/pb_ds/hash_zlob_random_int_find_timing_test_msvc.png
3044         * docs/html/ext/pb_ds/hash_random_int_subscript_find_timing_test.html: Same.
3045         * docs/html/ext/pb_ds/lu_based_containers.html: Same.
3046         * docs/html/ext/pb_ds/embedded_lists_3.png
3047         * docs/html/ext/pb_ds/tree_text_find_find_timing_test.html: Same.
3048         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_hash_local.png
3049         * docs/html/ext/pb_ds/assoc_performance_tests.html: Same.
3050         * docs/html/ext/pb_ds/list_update.html: Same.
3051         * docs/html/ext/pb_ds/priority_queue_random_int_push_pop_timing_test_gcc.png
3052         * docs/html/ext/pb_ds/tree_text_insert_timing_test_pat_trie_local.png
3053         * docs/html/ext/pb_ds/point_iterators_range_ops_1.png
3054         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_insert_msvc.png
3055         * docs/html/ext/pb_ds/hash_zlob_random_int_find_timing_test_gcc.png
3056         * docs/html/ext/pb_ds/text_find_timing_test_tree_like_msvc.png
3057         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_tree_local.png
3058         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_local.png
3059         * docs/html/ext/pb_ds/tree_text_insert_timing_test_pat_trie_msvc.png
3060         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test.html: Same.
3061         * docs/html/ext/pb_ds/move_to_front_lu_policy.html: Same.
3062         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_hash_gcc.png
3063         * docs/html/ext/pb_ds/hash_random_int_find_find_timing_test.html: Same.
3064         * docs/html/ext/pb_ds/string_trie_e_access_traits.html: Same.
3065         * docs/html/ext/pb_ds/prerequisites.html: Same.
3066         * docs/html/ext/pb_ds/gp_hash_tag.html: Same.
3067         * docs/html/ext/pb_ds/priority_queue_tag_cd.png
3068         * docs/html/ext/pb_ds/container_cd.png
3069         * docs/html/ext/pb_ds/priority_queue_text_join_timing_test_gcc.png
3070         * docs/html/ext/pb_ds/container_base.html: Same.
3071         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_hash_msvc.png
3072         * docs/html/ext/pb_ds/tree_random_int_find_find_timing_test.html: Same.
3073         * docs/html/ext/pb_ds/binary_priority_queue_random_int_push_timing_test_msvc.png
3074         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_find_local.png
3075         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_find_gcc.png
3076         * docs/html/ext/pb_ds/priority_queue_text_push_pop_timing_test_msvc.png
3077         * docs/html/ext/pb_ds/random_int_find_find_timing_test_tree_msvc.png
3078         * docs/html/ext/pb_ds/text_find_timing_test_hash_local.png
3079         * docs/html/ext/pb_ds/tree_text_insert_timing_test_node_tree_msvc.png
3080         * docs/html/ext/pb_ds/ov_tree_tag.html: Same.
3081         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_hash_local.png
3082         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_hash_msvc.png
3083         * docs/html/ext/pb_ds/priority_queue_text_pop_mem_usage_test_msvc.png
3084         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_pairing_thin_msvc.png
3085         * docs/html/ext/pb_ds/list_update_tag.html: Same.
3086         * docs/html/ext/pb_ds/balls_and_bins.png
3087         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_tree_local.png
3088         * docs/html/ext/pb_ds/disclaimer.html: Same.
3089         * docs/html/ext/pb_ds/insert_error.html: Same.
3090         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_hash_gcc.png
3091         * docs/html/ext/pb_ds/ccgp_hash_random_int_subscript_timing_test_insert_gcc.png
3092         * docs/html/ext/pb_ds/examples.html: Same.
3093         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small.html: Same.
3094         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_pop_timing_test_gcc.png
3095         * docs/html/ext/pb_ds/sample_probe_fn.html: Same.
3096         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_hash_local.png
3097         * docs/html/ext/pb_ds/priority_queue_text_push_timing_test.html: Same.
3098         * docs/html/ext/pb_ds/priority_queue_random_int_push_timing_test_gcc.png
3099         * docs/html/ext/pb_ds/null_mapped_type.html: Same.
3100         * docs/html/ext/pb_ds/binary_priority_queue_random_int_push_timing_test_gcc.png
3101         * docs/html/ext/pb_ds/tree_order_statistics_timing_test_gcc.png
3102         * docs/html/ext/pb_ds/associative_container_tag.html: Same.
3103         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_tree_local.png
3104         * docs/html/ext/pb_ds/design.html: Same.
3105         * docs/html/ext/pb_ds/cc_hash_max_collision_check_resize_trigger.html: Same.
3106         * docs/html/ext/pb_ds/pairing_heap_tag.html: Same.
3107         * docs/html/ext/pb_ds/tree_text_lor_find_timing_test_gcc.png
3108         * docs/html/ext/pb_ds/references.html: Same.
3109         * docs/html/ext/pb_ds/tree_order_statistics_timing_test_msvc.png
3110         * docs/html/ext/pb_ds/hash_load_check_resize_trigger.html: Same.
3111         * docs/html/ext/pb_ds/priority_queue_text_pop_mem_usage_test_gcc.png
3112         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_pairing_thin_gcc.png
3113         * docs/html/ext/pb_ds/hash_random_int_erase_mem_usage_test_gcc.png
3114         * docs/html/ext/pb_ds/pq_different_underlying_dss.png
3115         * docs/html/ext/pb_ds/insert_resize_sequence_diagram1.png
3116         * docs/html/ext/pb_ds/pq_regression_tests.html: Same.
3117         * docs/html/ext/pb_ds/sample_tree_node_update.html: Same.
3118         * docs/html/ext/pb_ds/invalidation_guarantee_erase.png
3119         * docs/html/ext/pb_ds/basic_invalidation_guarantee.html: Same.
3120         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_hash_local.png
3121         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_hash_gcc.png
3122         * docs/html/ext/pb_ds/hash_zlob_random_int_find_timing_test_local.png
3123         * docs/html/ext/pb_ds/point_iterators_range_ops_2.png
3124         * docs/html/ext/pb_ds/null_probe_fn.html: Same.
3125         * docs/html/ext/pb_ds/hash_prime_size_policy.html: Same.
3126         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_hash_msvc.png
3127         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_gcc.png
3128         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_tree_local.png
3129         * docs/html/ext/pb_ds/binary_priority_queue_random_int_push_timing_test_local.png
3130         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_hash_msvc.png
3131         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_tree_gcc.png
3132         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large.html: Same.
3133         * docs/html/ext/pb_ds/sample_resize_policy.html: Same.
3134         * docs/html/ext/pb_ds/binomial_heap_tag.html: Same.
3135         * docs/html/ext/pb_ds/priority_queue_text_pop_mem_usage_test_local.png
3136         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_pairing_thin_local.png
3137         * docs/html/ext/pb_ds/tree_text_lor_find_find_timing_test.html: Same.
3138         * docs/html/ext/pb_ds/priority_queue_text_join_timing_test_msvc.png
3139         * docs/html/ext/pb_ds/trie_based_containers.html: Same.
3140         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_insert_gcc.png
3141         * docs/html/ext/pb_ds/tree_split_join_timing_test_local.png
3142         * docs/html/ext/pb_ds/text_find_timing_test_hash_gcc.png
3143         * docs/html/ext/pb_ds/motivation.html: Same.
3144         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_tree_msvc.png
3145         * docs/html/ext/pb_ds/tree_split_join_timing_test_gcc.png
3146         * docs/html/ext/pb_ds/tree.html: Same.
3147         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_hash_gcc.png
3148         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_insert_msvc.png
3149         * docs/html/ext/pb_ds/invalidation_guarantee_cd.png
3150         * docs/html/ext/pb_ds/tutorial.html: Same.
3151         * docs/html/ext/pb_ds/null_trie_node_update.html: Same.
3152         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_gcc.png
3153         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_tree_msvc.png
3154         * docs/html/ext/pb_ds/ccgp_hash_random_int_subscript_timing_test_insert_local.png
3155         * docs/html/ext/pb_ds/point_iterators_cd.png
3156         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_hash_local.png
3157         * docs/html/ext/pb_ds/priority_queue_random_int_push_pop_timing_test_local.png
3158         * docs/html/ext/pb_ds/rb_tree_tag.html: Same.
3159         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_find_msvc.png
3160         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_timing_test_msvc.png
3161         * docs/html/ext/pb_ds/tree_text_insert_timing_test_pat_trie_gcc.png
3162         * docs/html/ext/pb_ds/exceptions.html: Same.
3163         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_msvc.png
3164         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_tree_local.png
3165         * docs/html/ext/pb_ds/hash_policy_cd.png
3166         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_tree_gcc.png
3167         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small.html: Same.
3168         * docs/html/ext/pb_ds/ds_gen.html: Same.
3169         * docs/html/ext/pb_ds/hash_exponential_size_policy.html: Same.
3170         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_insert_local.png
3171         * docs/html/ext/pb_ds/hash_random_int_erase_mem_usage_test_msvc.png
3172         * docs/html/ext/pb_ds/index.html: Same.
3173         * docs/html/ext/pb_ds/binary_heap_tag.html: Same.
3174         * docs/html/ext/pb_ds/basic_hash_tag.html: Same.
3175         * docs/html/ext/pb_ds/trie_order_statistics_node_update.html: Same.
3176         * docs/html/ext/pb_ds/sample_resize_trigger.html: Same.
3177         * docs/html/ext/pb_ds/priority_queue_text_push_timing_test_local.png
3178         * docs/html/ext/pb_ds/hash_text_find_find_timing_test.html: Same.
3179         * docs/html/ext/pb_ds/tree_text_insert_timing_test.html: Same.
3180         * docs/html/ext/pb_ds/trie_tag.html: Same.
3181         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_find_local.png
3182         * docs/html/ext/pb_ds/pq_tests.html: Same.
3183         * docs/html/ext/pb_ds/insert_resize_sequence_diagram2.png
3184         * docs/html/ext/pb_ds/node_invariant_invalidations.png
3185         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_msvc.png
3186         * docs/html/ext/pb_ds/resize_policy_cd.png
3187         * docs/html/ext/pb_ds/embedded_lists_1.png
3188         * docs/html/ext/pb_ds/hash_ranged_hash_range_hashing_fns.png
3189         * docs/html/ext/pb_ds/null_lu_metadata.html: Same.
3190         * docs/html/ext/pb_ds/tree_order_statistics_timing_test.html: Same.
3191         * docs/html/ext/pb_ds/trie_prefix_search_node_update.html: Same.
3192         * docs/html/ext/pb_ds/hash_range_hashing_seq_diagram.png
3193         * docs/html/ext/pb_ds/point_invalidation_guarantee.html: Same.
3194         * docs/html/ext/pb_ds/direct_mod_range_hashing.html: Same.
3195         * docs/html/ext/pb_ds/tree_text_insert_timing_test_vector_tree_local.png
3196         * docs/html/ext/pb_ds/priority_queue_random_int_push_pop_timing_test_msvc.png
3197         * docs/html/ext/pb_ds/misc.html: Same.
3198         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_hash_local.png
3199         * docs/html/ext/pb_ds/counter_lu_policy.html: Same.
3200         * docs/html/ext/pb_ds/different_underlying_dss.png
3201         * docs/html/ext/pb_ds/restoring_node_invariants.png
3202         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large.html: Same.
3203         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_timing_test_local.png
3204         * docs/html/ext/pb_ds/sample_update_policy.html: Same.
3205         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_timing_test_gcc.png
3206         * docs/html/ext/pb_ds/tree_order_statistics_timing_test_local.png
3207         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_tree_msvc.png
3208         * docs/html/ext/pb_ds/simple_list.png
3209         * docs/html/ext/pb_ds/text_find_timing_test_hash_msvc.png
3210         * docs/html/ext/pb_ds/assoc_examples.html: Same.
3211         * docs/html/ext/pb_ds/priority_queue_text_push_pop_timing_test_local.png
3212         * docs/html/ext/pb_ds/hash_based_containers.html: Same.
3213         * docs/html/ext/pb_ds/text_find_timing_test_tree_like_local.png
3214         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_tree_local.png
3215         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_tree_gcc.png
3216         * docs/html/ext/pb_ds/tree_node_iterator.html: Same.
3217         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_pairing_thin_msvc.png
3218         * docs/html/ext/pb_ds/trie_node_iterator.html: Same.
3219         * docs/html/ext/pb_ds/tree_based_containers.html: Same.
3220         * docs/html/ext/pb_ds/hash_random_int_subscript_insert_timing_test.html: Same.
3221         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_tree_msvc.png
3222         * docs/html/ext/pb_ds/ccgp_hash_random_int_subscript_timing_test_insert_msvc.png
3223         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_hash_msvc.png
3224         * docs/html/ext/pb_ds/priority_queue_text_push_timing_test_gcc.png
3225         * docs/html/ext/pb_ds/rationale_null_node_updator.png
3226         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_pairing_thin_local.png
3227         * docs/html/ext/pb_ds/lu.png
3228         * docs/html/ext/pb_ds/assoc_container_traits.html: Same.
3229         * docs/html/ext/pb_ds/gp_hash_random_int_find_timing_test_msvc.png
3230         * docs/html/ext/pb_ds/assoc_design.html: Same.
3231         * docs/html/ext/pb_ds/splay_tree_tag.html: Same.
3232         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_find_gcc.png
3233         * docs/html/ext/pb_ds/priority_queue_random_int_push_timing_test.html: Same.
3234         * docs/html/ext/pb_ds/assoc_container_tag_cd.svg
3235         * docs/html/ext/pb_ds/resize_error.html: Same.
3236         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_hash_msvc.png
3237         * docs/html/ext/pb_ds/tree_text_insert_timing_test_node_tree_gcc.png
3238         * docs/html/ext/pb_ds/priority_queue_text_join_timing_test.html: Same.
3239         * docs/html/ext/pb_ds/basic_tree_assoc_container_const_node_iterator.html: Same.
3240         * docs/html/ext/pb_ds/gp_hash_random_int_find_timing_test_gcc.png
3241         * docs/html/ext/pb_ds/trie_const_node_iterator.html: Same.
3242         * docs/html/ext/pb_ds/hash_zlob_random_int_find_find_timing_test.html: Same.
3243         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_tree_gcc.png
3244         * docs/html/ext/pb_ds/sample_size_policy.html: Same.
3245         * docs/html/ext/pb_ds/tree_text_insert_timing_test_vector_tree_gcc.png
3246         * docs/html/ext/pb_ds/cc_hash_table.html: Same.
3247         * docs/html/ext/pb_ds/node_invariants.png
3248         * docs/html/ext/pb_ds/tree_split_join_timing_test_msvc.png
3249         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test.html: Same.
3250         * docs/html/ext/pb_ds/tree_order_statistics_node_update.html: Same.
3251         * docs/html/ext/pb_ds/cc_hash_random_int_find_timing_test_msvc.png
3252         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_insert_local.png
3253         * docs/html/ext/pb_ds/priority_queue.html: Same.
3254         * docs/html/ext/pb_ds/assoc_tests.html: Same.
3255         * docs/html/ext/pb_ds/assoc_container_tag_cd.png
3256         * docs/html/ext/pb_ds/basic_hash_table.html: Same.
3257         * docs/html/ext/pb_ds/basic_tree_tag.html: Same.
3258         * docs/html/ext/pb_ds/tree_split_join_timing_test.html: Same.
3259         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_local.png
3260         * docs/html/ext/pb_ds/insert_resize_sequence_diagram3.png
3261         * docs/html/ext/pb_ds/embedded_lists_2.png
3262         * docs/html/ext/pb_ds/random_int_find_find_timing_test_tree_local.png
3263         * docs/html/ext/pb_ds/sample_ranged_probe_fn.html: Same.
3264         * docs/html/ext/pb_ds/random_int_find_find_timing_test_tree_gcc.png
3265         * docs/html/ext/pb_ds/sample_trie_node_update.html: Same.
3266         * docs/html/ext/pb_ds/introduction.html: Same.
3267         * docs/html/ext/pb_ds/pq_performance_tests.html: Same.
3268         * docs/html/ext/pb_ds/pat_trie.png
3269         * docs/html/ext/pb_ds/range_invalidation_guarantee.html: Same.
3270         * docs/html/ext/pb_ds/contact.html: Same.
3271         * docs/html/ext/pb_ds/sample_range_hashing.html: Same.
3272         * docs/html/ext/pb_ds/priority_queue_random_int_push_timing_test_local.png
3273         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_hash_gcc.png
3274         * docs/html/ext/pb_ds/update_seq_diagram.png
3275         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_tree_gcc.png
3276         * docs/html/ext/pb_ds/direct_mask_range_hashing.html: Same.
3277         * docs/html/ext/pb_ds/tests.html: Same.
3278         * docs/html/ext/pb_ds/cc_hash_random_int_find_timing_test_gcc.png
3279         * docs/html/ext/pb_ds/tree_node_updator_policy_cd.png
3280         * docs/html/ext/pb_ds/text_find_timing_test_tree_like_gcc.png
3281         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large.html: Same.
3282         * docs/html/ext/pb_ds/trie_node_updator_policy_cd.png
3283         * docs/html/ext/pb_ds/priority_queue_random_int_push_timing_test_msvc.png
3284         * docs/html/ext/pb_ds/concepts.html: Same.
3285         * docs/html/ext/pb_ds/pq_examples.html: Same.
3286         * docs/html/ext/pb_ds/priority_queue_tag.html: Same.
3287         * docs/html/ext/pb_ds/priority_queue_random_int_push_pop_timing_test.html: Same.
3288         * docs/html/ext/pb_ds/update_policy_cd.png
3289         * docs/html/ext/pb_ds/thin_heap_tag.html: Same.
3290         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_pop_timing_test_msvc.png
3291         * docs/html/ext/pb_ds/basic_tree.html: Same.
3292         * docs/html/ext/pb_ds/null_hash_fn.html: Same.
3293         * docs/html/ext/pb_ds/null_tree_node_update.html: Same.
3294         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_pairing_thin_gcc.png
3295         * docs/html/ext/pb_ds/trie.html: Same.
3296         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_tree_msvc.png
3297         * docs/html/ext/pb_ds/rc_binomial_heap_tag.html: Same.
3298         * docs/html/ext/pb_ds/priority_queue_text_push_timing_test_msvc.png
3299         * docs/html/ext/pb_ds/pq_container_traits.html: Same.
3300         * docs/html/ext/pb_ds/pq_design.html: Same.
3301         * docs/html/ext/pb_ds/checked_by_tidy.gif
3302         * docs/html/ext/pb_ds/tree_text_insert_timing_test_node_tree_local.png
3303         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_hash_gcc.png
3304         * docs/html/ext/pb_ds/priority_queue_text_push_pop_timing_test.html: Same.
3305         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_tree_gcc.png
3306         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_pop_timing_test_local.png
3307         * docs/html/ext/pb_ds/acks.html: Same.
3308         * docs/html/ext/pb_ds/gp_hash_random_int_find_timing_test_local.png
3309         * docs/html/ext/pb_ds/cc_hash_tag.html: Same.
3310         * docs/html/ext/pb_ds/sample_ranged_hash_fn.html: Same.
3311         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_tree_msvc.png
3312         * docs/html/ext/pb_ds/priority_queue_text_pop_mem_usage_test.html: Same.
3313         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small.html: Same.
3314         * docs/html/ext/pb_ds/tree_text_lor_find_timing_test_msvc.png
3315         * docs/html/ext/pb_ds/hash_range_hashing_seq_diagram2.png
3316         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_find_msvc.png
3317         * docs/html/ext/pb_ds/PythonPoweredSmall.gif
3318         * docs/html/ext/pb_ds/cc_hash_random_int_find_timing_test_local.png
3319         * docs/html/ext/pb_ds/pat_trie_tag.html: Same.
3320         * docs/html/ext/pb_ds/hash_standard_resize_policy.html: Same.
3321         * docs/html/ext/pb_ds/tree_text_insert_timing_test_vector_tree_msvc.png
3322         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_insert_gcc.png
3323         * docs/html/ext/pb_ds/join_error.html: Same.
3324         * docs/html/ext/pb_ds/priority_queue_text_push_pop_timing_test_gcc.png
3325         * docs/html/ext/pb_ds/priority_queue_text_join_timing_test_local.png
3326
3327         * testsuite/ext/pb_ds: New.
3328         * testsuite/ext/pb_ds/regression: New.
3329         * testsuite/ext/pb_ds/regression/trie_data_map_rand.cc: Same.
3330         * testsuite/ext/pb_ds/regression/hash_data_map_rand.cc: Same.
3331         * testsuite/ext/pb_ds/regression/associative_containers.cc: Same.
3332         * testsuite/ext/pb_ds/regression/list_update_no_data_map_rand.cc: Same.
3333         * testsuite/ext/pb_ds/regression/tree_no_data_map_rand.cc: Same.
3334         * testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc: Same.
3335         * testsuite/ext/pb_ds/regression/priority_queues.cc: Same.
3336         * testsuite/ext/pb_ds/regression/hash_no_data_map_rand.cc: Same.
3337         * testsuite/ext/pb_ds/regression/priority_queue_rand.cc: Same.
3338         * testsuite/ext/pb_ds/regression/trie_no_data_map_rand.cc: Same.
3339         * testsuite/ext/pb_ds/regression/tree_data_map_rand.cc: Same.
3340         * testsuite/ext/pb_ds/example: New.
3341         * testsuite/ext/pb_ds/example/hash_shift_mask.cc: Same.
3342         * testsuite/ext/pb_ds/example/basic_set.cc: Same.
3343         * testsuite/ext/pb_ds/example/hash_illegal_resize.cc: Same.
3344         * testsuite/ext/pb_ds/example/hash_resize_neg.cc: Same.
3345         * testsuite/ext/pb_ds/example/store_hash.cc: Same.
3346         * testsuite/ext/pb_ds/example/assoc_container_traits.cc: Same.
3347         * testsuite/ext/pb_ds/example/hash_load_set_change.cc: Same.
3348         * testsuite/ext/pb_ds/example/ranged_hash.cc: Same.
3349         * testsuite/ext/pb_ds/example/hash_resize.cc: Same.
3350         * testsuite/ext/pb_ds/example/tree_order_statistics.cc: Same.
3351         * testsuite/ext/pb_ds/example/trie_prefix_search.cc: Same.
3352         * testsuite/ext/pb_ds/example/basic_multiset.cc: Same.
3353         * testsuite/ext/pb_ds/example/priority_queue_xref.cc: Same.
3354         * testsuite/ext/pb_ds/example/hash_find_neg.cc: Same.
3355         * testsuite/ext/pb_ds/example/erase_if.cc: Same.
3356         * testsuite/ext/pb_ds/example/priority_queue_container_traits.cc: Same.
3357         * testsuite/ext/pb_ds/example/tree_join.cc: Same.
3358         * testsuite/ext/pb_ds/example/basic_map.cc: Same.
3359         * testsuite/ext/pb_ds/example/trie_split.cc: Same.
3360         * testsuite/ext/pb_ds/example/priority_queue_split_join.cc: Same.
3361         * testsuite/ext/pb_ds/example/priority_queue_dijkstra.cc: Same.
3362         * testsuite/ext/pb_ds/example/priority_queue_erase_if.cc: Same.
3363         * testsuite/ext/pb_ds/example/hash_mod.cc: Same.
3364         * testsuite/ext/pb_ds/example/tree_order_statistics_join.cc: Same.
3365         * testsuite/ext/pb_ds/example/trie_dna.cc: Same.
3366         * testsuite/ext/pb_ds/example/hash_initial_size.cc: Same.
3367         * testsuite/ext/pb_ds/example/basic_priority_queue.cc: Same.
3368         * testsuite/ext/pb_ds/example/tree_intervals.cc: Same.
3369         * testsuite/ext/pb_ds/example/basic_multimap.cc: Same.
3370         * testsuite/performance/ext: New.
3371         * testsuite/performance/ext/pb_ds: New.
3372         * testsuite/performance/ext/pb_ds/multimap_text_find_timing_small.cc: Same.
3373         * testsuite/performance/ext/pb_ds/text_find_timing.cc: Same.
3374         * testsuite/performance/ext/pb_ds/hash_random_int_erase_mem_usage.cc: Same.
3375         * testsuite/performance/ext/pb_ds/tree_text_insert_timing.cc: Same.
3376         * testsuite/performance/ext/pb_ds/priority_queue_text_modify_down_timing.cc: Same.
3377         * testsuite/performance/ext/pb_ds/random_int_subscript_find_timing.cc: Same.
3378         * testsuite/performance/ext/pb_ds/priority_queue_text_push_timing.cc: Same.
3379         * testsuite/performance/ext/pb_ds/tree_split_join_timing.cc: Same.
3380         * testsuite/performance/ext/pb_ds/random_int_find_timing.cc: Same.
3381         * testsuite/performance/ext/pb_ds/multimap_text_insert_timing_large.cc: Same.
3382         * testsuite/performance/ext/pb_ds/multimap_text_insert_mem_usage.hpp: Same.
3383         * testsuite/performance/ext/pb_ds/priority_queue_random_int_push_timing.cc: Same.
3384         * testsuite/performance/ext/pb_ds/multimap_text_find_timing.hpp: Same.
3385         * testsuite/performance/ext/pb_ds/priority_queue_text_modify_timing.hpp: Same.
3386         * testsuite/performance/ext/pb_ds/tree_order_statistics_timing.cc: Same.
3387         * testsuite/performance/ext/pb_ds/priority_queue_text_modify_up_timing.cc: Same.
3388         * testsuite/performance/ext/pb_ds/multimap_text_insert_mem_usage_large.cc: Same.
3389         * testsuite/performance/ext/pb_ds/priority_queue_text_push_pop_timing.cc: Same.
3390         * testsuite/performance/ext/pb_ds/multimap_text_find_timing_large.cc: Same.
3391         * testsuite/performance/ext/pb_ds/priority_queue_text_join_timing.cc: Same.
3392         * testsuite/performance/ext/pb_ds/multimap_text_insert_timing_small.cc: Same.
3393         * testsuite/performance/ext/pb_ds/priority_queue_random_int_push_pop_timing.cc: Same.
3394         * testsuite/performance/ext/pb_ds/random_int_subscript_insert_timing.cc: Same.
3395         * testsuite/performance/ext/pb_ds/tree_text_lor_find_timing.cc: Same.
3396         * testsuite/performance/ext/pb_ds/priority_queue_text_pop_mem_usage.cc: Same.
3397         * testsuite/performance/ext/pb_ds/multimap_text_insert_timing.hpp: Same.
3398         * testsuite/performance/ext/pb_ds/hash_zlob_random_int_find_timing.cc: Same.
3399         * testsuite/performance/ext/pb_ds/multimap_text_insert_mem_usage_small.cc: Same.
3400         * testsuite/data/make_graph_test_infos.xml: Same.
3401         * testsuite/data/thirty_years_among_the_dead_preproc.txt: New.
3402         * testsuite/data/make_graph_htmls.xml: Same.
3403         * testsuite/util/regression: New.
3404         * testsuite/util/regression/trait: New.
3405         * testsuite/util/regression/trait/priority_queue: New.
3406         * testsuite/util/regression/trait/priority_queue/trait.hpp: Same.
3407         * testsuite/util/regression/trait/erase_if_fn.hpp: Same.
3408         * testsuite/util/regression/trait/assoc: New.
3409         * testsuite/util/regression/trait/assoc/native_type_trait.hpp: Same.
3410         * testsuite/util/regression/trait/assoc/node_update_trait.hpp: Same.
3411         * testsuite/util/regression/trait/assoc/get_set_load_trait.hpp: Same.
3412         * testsuite/util/regression/trait/assoc/get_set_loads_trait.hpp: Same.
3413         * testsuite/util/regression/trait/assoc/trait.hpp: Same.
3414         * testsuite/util/regression/trait/assoc/type_trait.hpp: Same.
3415         * testsuite/util/regression/trait/assoc/resize_trait.hpp: Same.
3416         * testsuite/util/regression/trait/assoc/to_string.hpp: Same.
3417         * testsuite/util/regression/rand: New.
3418         * testsuite/util/regression/rand/priority_queue: New.
3419         * testsuite/util/regression/rand/priority_queue/detail: New.
3420         * testsuite/util/regression/rand/priority_queue/detail/erase_fn_imps.hpp: Same.
3421         * testsuite/util/regression/rand/priority_queue/detail/cmp_fn_imps.hpp: Same.
3422         * testsuite/util/regression/rand/priority_queue/detail/policy_access_fn_imps.hpp: Same.
3423         * testsuite/util/regression/rand/priority_queue/detail/defs_fn_imps.hpp: Same.
3424         * testsuite/util/regression/rand/priority_queue/detail/it_conversion_fn_imps.hpp: Same.
3425         * testsuite/util/regression/rand/priority_queue/detail/constructor_destructor_fn_imps.hpp: Same.
3426         * testsuite/util/regression/rand/priority_queue/detail/diagnostic_fn_imps.hpp: Same.
3427         * testsuite/util/regression/rand/priority_queue/detail/insert_fn_imps.hpp: Same.
3428         * testsuite/util/regression/rand/priority_queue/detail/clear_fn_imps.hpp: Same.
3429         * testsuite/util/regression/rand/priority_queue/detail/modify_fn_imps.hpp: Same.
3430         * testsuite/util/regression/rand/priority_queue/detail/split_join_fn_imps.hpp: Same.
3431         * testsuite/util/regression/rand/priority_queue/detail/operator_fn_imps.hpp: Same.
3432         * testsuite/util/regression/rand/priority_queue/rand_regression_test.hpp: Same.
3433         * testsuite/util/regression/rand/priority_queue/container_rand_regression_test.hpp: Same.
3434         * testsuite/util/regression/rand/io: New.
3435         * testsuite/util/regression/rand/io/priority_queue: New.
3436         * testsuite/util/regression/rand/io/priority_queue/xml_formatter.hpp: Same.
3437         * testsuite/util/regression/rand/io/assoc: New.
3438         * testsuite/util/regression/rand/io/assoc/xml_formatter.hpp: Same.
3439         * testsuite/util/regression/rand/io/xml_formatter.hpp: Same.
3440         * testsuite/util/regression/rand/assoc: New.
3441         * testsuite/util/regression/rand/assoc/detail: New.
3442         * testsuite/util/regression/rand/assoc/detail/subscript_fn_imps.hpp: Same.
3443         * testsuite/util/regression/rand/assoc/detail/cmp_fn_imps.hpp: Same.
3444         * testsuite/util/regression/rand/assoc/detail/policy_access_fn_imps.hpp: Same.
3445         * testsuite/util/regression/rand/assoc/detail/defs_fn_imps.hpp: Same.
3446         * testsuite/util/regression/rand/assoc/detail/it_conversion_fn_imps.hpp: Same.
3447         * testsuite/util/regression/rand/assoc/detail/diagnostic_fn_imps.hpp: Same.
3448         * testsuite/util/regression/rand/assoc/detail/clear_fn_imps.hpp: Same.
3449         * testsuite/util/regression/rand/assoc/detail/get_set_load_fn_imps.hpp: Same.
3450         * testsuite/util/regression/rand/assoc/detail/operator_fn_imps.hpp: Same.
3451         * testsuite/util/regression/rand/assoc/detail/erase_fn_imps.hpp: Same.
3452         * testsuite/util/regression/rand/assoc/detail/resize_fn_imps.hpp: Same.
3453         * testsuite/util/regression/rand/assoc/detail/constructor_destructor_fn_imps.hpp: Same.
3454         * testsuite/util/regression/rand/assoc/detail/insert_fn_imps.hpp: Same.
3455         * testsuite/util/regression/rand/assoc/detail/split_join_fn_imps.hpp: Same.
3456         * testsuite/util/regression/rand/assoc/detail/get_set_loads_fn_imps.hpp: Same.
3457         * testsuite/util/regression/rand/assoc/rand_regression_test.hpp: Same.
3458         * testsuite/util/regression/rand/assoc/container_rand_regression_test.hpp: Same.
3459         * testsuite/util/regression/priority_queue: New.
3460         * testsuite/util/regression/priority_queue/common_type.hpp: Same.
3461         * testsuite/util/regression/basic_type.hpp: Same.
3462         * testsuite/util/regression/assoc: New.
3463         * testsuite/util/regression/assoc/common_type.hpp: Same.
3464         * testsuite/util/regression/res_mng: New.
3465         * testsuite/util/regression/res_mng/forced_exception.hpp: Same.
3466         * testsuite/util/regression/res_mng/dbg_ex_allocator_base.cc: Same.
3467         * testsuite/util/regression/res_mng/dbg_ex_allocator_base.hpp: Same.
3468         * testsuite/util/regression/res_mng/dbg_ex_allocator.hpp: Same.
3469         * testsuite/util/rng: New.
3470         * testsuite/util/rng/twister_rand_gen.cc: Same.
3471         * testsuite/util/rng/twister_rand_gen.hpp: Same.
3472         * testsuite/util/native_type: New.
3473         * testsuite/util/native_type/priority_queue: New.
3474         * testsuite/util/native_type/priority_queue/native_priority_queue.hpp: Same.
3475         * testsuite/util/native_type/priority_queue/native_pq_tag.hpp: Same.
3476         * testsuite/util/native_type/assoc: New.
3477         * testsuite/util/native_type/assoc/native_multimap.hpp: Same.
3478         * testsuite/util/native_type/assoc/native_tree_tag.hpp: Same.
3479         * testsuite/util/native_type/assoc/native_set.hpp: Same.
3480         * testsuite/util/native_type/assoc/native_hash_multimap.hpp: Same.
3481         * testsuite/util/native_type/assoc/native_map.hpp: Same.
3482         * testsuite/util/native_type/assoc/native_hash_tag.hpp: Same.
3483         * testsuite/util/native_type/assoc/native_hash_set.hpp: Same.
3484         * testsuite/util/native_type/assoc/native_hash_map.hpp: Same.
3485         * testsuite/util/common_type: New.
3486         * testsuite/util/common_type/priority_queue
3487         * testsuite/util/common_type/priority_queue/common_type.hpp: Same.
3488         * testsuite/util/common_type/priority_queue/string_form.hpp: Same.
3489         * testsuite/util/common_type/priority_queue/detail
3490         * testsuite/util/common_type/priority_queue/detail/ds_string_form.hpp: Same.
3491         * testsuite/util/common_type/assoc: New.
3492         * testsuite/util/common_type/assoc/common_type.hpp: Same.
3493         * testsuite/util/common_type/assoc/string_form.hpp: Same.
3494         * testsuite/util/common_type/assoc/template_policy.hpp: Same.
3495         * testsuite/util/common_type/assoc/detail: New.
3496         * testsuite/util/common_type/assoc/detail/resize_policy_string_form.hpp: Same.
3497         * testsuite/util/common_type/assoc/detail/trigger_policy_string_form.hpp: Same.
3498         * testsuite/util/common_type/assoc/detail/ds_string_form.hpp: Same.
3499         * testsuite/util/common_type/assoc/detail/comb_hash_fn_string_form.hpp: Same.
3500         * testsuite/util/common_type/assoc/detail/size_policy_string_form.hpp: Same.
3501         * testsuite/util/common_type/assoc/detail/probe_fn_string_form.hpp: Same.
3502         * testsuite/util/common_type/assoc/detail/tree_supports_order_statistics.hpp: Same.
3503         * testsuite/util/common_type/assoc/detail/trie_supports_prefix_search.hpp: Same.
3504         * testsuite/util/common_type/assoc/detail/list_update_policy_string_form.hpp: Same.
3505         * testsuite/util/common_type/assoc/detail/trie_supports_order_statistics.hpp: Same.
3506         * testsuite/util/common_type/assoc/detail/store_hash_string_form.hpp: Same.
3507         * testsuite/util/common_type/assoc/native_set.hpp: Same.
3508         * testsuite/util/performance: New.
3509         * testsuite/util/performance/priority_queue: New.
3510         * testsuite/util/performance/priority_queue/mem_usage: New.
3511         * testsuite/util/performance/priority_queue/mem_usage/pop_test.hpp: Same.
3512         * testsuite/util/performance/priority_queue/timing: New.
3513         * testsuite/util/performance/priority_queue/timing/push_pop_test.hpp: Same.
3514         * testsuite/util/performance/priority_queue/timing/push_test.hpp: Same.
3515         * testsuite/util/performance/priority_queue/timing/join_test.hpp: Same.
3516         * testsuite/util/performance/priority_queue/timing/modify_test.hpp: Same.
3517         * testsuite/util/performance/io: New.
3518         * testsuite/util/performance/io/xml_formatter.hpp: Same.
3519         * testsuite/util/performance/assoc: New.
3520         * testsuite/util/performance/assoc/mem_usage: New.
3521         * testsuite/util/performance/assoc/mem_usage/multimap_insert_test.hpp: Same.
3522         * testsuite/util/performance/assoc/mem_usage/erase_test.hpp: Same.
3523         * testsuite/util/performance/assoc/multimap_common_type.hpp: Same.
3524         * testsuite/util/performance/assoc/timing: New.
3525         * testsuite/util/performance/assoc/timing/common_type.hpp: Same.
3526         * testsuite/util/performance/assoc/timing/multimap_insert_test.hpp: Same.
3527         * testsuite/util/performance/assoc/timing/subscript_find_test.hpp: Same.
3528         * testsuite/util/performance/assoc/timing/find_test.hpp: Same.
3529         * testsuite/util/performance/assoc/timing/subscript_insert_test.hpp: Same.
3530         * testsuite/util/performance/assoc/timing/insert_test.hpp: Same.
3531         * testsuite/util/performance/assoc/timing/tree_order_statistics_test.hpp: Same.
3532         * testsuite/util/performance/assoc/timing/multimap_find_test.hpp: Same.
3533         * testsuite/util/performance/assoc/timing/tree_split_join_test.hpp: Same.
3534         * testsuite/util/performance/time: New.
3535         * testsuite/util/performance/time/elapsed_timer.cc: Same.
3536         * testsuite/util/performance/time/elapsed_timer.hpp: Same.
3537         * testsuite/util/performance/time/timing_test_base.hpp: Same.
3538         * testsuite/util/performance/mem: New.
3539         * testsuite/util/performance/mem/mem_track_allocator_base.hpp: Same.
3540         * testsuite/util/performance/mem/mem_track_allocator.hpp: Same.
3541         * testsuite/util/hash_fn: New.
3542         * testsuite/util/hash_fn/limit_string_hash_fn.hpp: Same.
3543         * testsuite/util/hash_fn/string_ranged_hash_fn.hpp: Same.
3544         * testsuite/util/hash_fn/string_hash_fn.hpp: Same.
3545         * testsuite/util/hash_fn/string_ranged_probe_fn.hpp: Same.
3546         * testsuite/util/hash_fn/dna_str_limit.hpp: Same.
3547         * testsuite/util/io: New.
3548         * testsuite/util/io/prog_bar.cc: Same.
3549         * testsuite/util/io/prog_bar.hpp: Same.
3550         * testsuite/util/io/text_populate.hpp: Same.
3551         * testsuite/util/io/xml.hpp: Same.
3552         * testsuite/util/io/illegal_input_error.hpp: Same.
3553         * testsuite/util/io/xml_test_formatter.hpp: Same.
3554         * testsuite/util/io/verified_cmd_line_input.cc: Same.
3555         * testsuite/util/io/verified_cmd_line_input.hpp: Same.
3556         * testsuite/util/statistic: New.
3557         * testsuite/util/statistic/sample_var.hpp: Same.
3558         * testsuite/util/statistic/res_recorder.hpp: Same.
3559         * testsuite/util/statistic/sample_mean.hpp: Same.
3560         * testsuite/util/statistic/sample_mean_confidence_checker.hpp: Same.
3561         
3562 2006-06-12  Paolo Carlini  <pcarlini@suse.de>
3563
3564         PR libstdc++/26970
3565         * config/locale/gnu/c_locale.h (__convert_from_v<>): Change to
3566         variadic function, instead of template function.
3567         * config/locale/generic/c_locale.h (__convert_from_v<>): Likewise.
3568         * include/bits/locale_facets.tcc (num_put<>::_M_insert_float):
3569         Adjust.
3570         (money_put<>::do_put(long double)): Likewise.
3571         * src/locale-misc-inst.cc: Remove.
3572         * src/Makefile.am: Adjust.
3573         * src/Makefile.in: Regenerate.
3574
3575 2006-06-09  Paolo Carlini  <pcarlini@suse.de>
3576
3577         * include/tr1/random (random_device::random_device(const
3578         std::string& = "/dev/urandom")): Open in binary mode.
3579
3580         * include/tr1/random (random_device::random_device(const
3581         std::string& = "rand")): Use mersenne_twister.
3582         (random_device::_M_strtoul): New.
3583         (random_device::operator()()): Update.
3584
3585         * include/tr1/random: Minor stylistic changes, consistently
3586         qualify with std::.
3587
3588 2006-06-09  Paolo Carlini  <pcarlini@suse.de>
3589
3590         * acinclude.m4 ([GLIBCXX_CHECK_RANDOM_TR1]): New, check for
3591         the availability of "/dev/random" and "/dev/urandom".
3592         * configure.ac: Use it.
3593         * include/tr1/random (random_device): Implement, a fall-back for
3594         systems not providing "/dev/random" and "/dev/urandom" included.
3595         * testsuite/tr1/5_numerical_facilities/random/random_device/
3596         cons/default.cc: New.
3597         * testsuite/tr1/5_numerical_facilities/random/random_device/
3598         cons/token.cc: Likewise.
3599         * testsuite/tr1/5_numerical_facilities/random/random_device/
3600         requirements/typedefs.cc: Likewise.
3601         * config.h.in: Regenerate.
3602         * configure: Likewise.
3603
3604         * testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
3605         cons/gen1.cc: Minor tweak, add bool test.
3606
3607 2006-06-06  Benjamin Kosnik  <bkoz@redhat.com>
3608
3609         * testsuite/util: New directory.
3610         * testsuite/testsuite_hooks.cc: Move to util sub-directory.
3611         * testsuite/testsuite_abi_check.cc: Same.
3612         * testsuite/testsuite_abi.cc: Same.
3613         * testsuite/testsuite_tr1.h: Same.
3614         * testsuite/testsuite_io.h: Same.
3615         * testsuite/testsuite_iterators.h: Same.
3616         * testsuite/testsuite_allocator.cc: Same.
3617         * testsuite/testsuite_allocator.h: Same.
3618         * testsuite/testsuite_hooks.h: Same.
3619         * testsuite/testsuite_character.cc: Same.
3620         * testsuite/testsuite_abi.h: Same.
3621         * testsuite/testsuite_character.h: Same.
3622         * testsuite/testsuite_visualization.h: Same.
3623         * testsuite/testsuite_performance.h: Same.
3624         * testsuite/testsuite_shared.cc: Same.
3625         * testsuite/testsuite_common_types.h: Same.
3626
3627         * testsuite/lib/libstdc++.exp (v3-build_support): Adjust paths.
3628         * testsuite/libstdc++-abi/abi.exp: Same.
3629         * testsuite/libstdc++-dg/conformance.exp: Remove any files in the
3630         utilities subdirectory from the list of test cases.
3631         
3632         * scripts/testsuite_flags.in (build-includes): Adjust path for
3633         testsuite includes.
3634         * scripts/create_testsuite_files (dlist): Don't let utility files
3635         creep into the testsuite_files list.
3636         
3637 2006-06-06  Paolo Carlini  <pcarlini@suse.de>
3638
3639         * include/tr1/random (mersenne_twister<>::operator==,
3640         operator!=, operator<<, operator>>): Implement.
3641         * testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
3642         operators/equal.cc: New.        
3643         * testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
3644         operators/not_equal.cc: Likewise.
3645         * testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
3646         operators/serialize.cc: Likewise.
3647
3648         * include/tr1/random (subtract_with_carry<>::operator==): Fix,
3649         compare the whole state; use std::equal.
3650
3651         * include/tr1/random: Minor formatting and style changes.
3652
3653 2006-06-06  Benjamin Kosnik  <bkoz@redhat.com>
3654
3655         * testsuite/tr1/5_numerical_facilies: Move to...
3656         * testsuite/tr1/5_numerical_facilities: ...this.        
3657
3658 2006-06-06  Paolo Carlini  <pcarlini@suse.de>
3659
3660         * include/tr1/random: Trivial uglification fixes.
3661         * include/tr1/random.tcc: Likewise.
3662
3663         * include/tr1/random (subtract_with_carry<>::
3664         subtract_with_carry(_IntType)): Fix parameter type to unsigned long.
3665         (subtract_with_carry<>::seed(_IntType)): Likewise.
3666         * include/tr1/random.tcc (subtract_with_carry<>::seed(_IntType)):
3667         Adjust.
3668
3669 2006-06-05  Paolo Carlini  <pcarlini@suse.de>
3670
3671         * include/tr1/random (mersenne_twister<>::seed()): Fix per
3672         tr1/5.1.4.2, p8.
3673         * include/tr1/random.tcc (mod_w): Add.
3674         (mersenne_twister<>::seed(unsigned long)): Fix per tr1/5.1.4.2, p9.
3675         (mersenne_twister<>::seed(Gen&, false_type)): Adjust to use mod_w.
3676         * testsuite/tr1/5_numerical_facilies/random/mt19937.cc: Fix
3677         expected result per tr1/5.1.5, p2.
3678         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
3679         cons/default.cc: Adjust.
3680
3681         * include/tr1/random (exponential_distribution<>::operator()()): Fix.
3682
3683 2006-06-05  Paolo Carlini  <pcarlini@suse.de>
3684
3685         * include/tr1/random.tcc (Max::value()): Cast 1 to Tp(1) and
3686         adjust shift count to w; rename as Max_w.
3687         (struct Mod_w): New.
3688         (mersenne_twister<>::seed(Gen&, false_type): Use the latter.
3689         (mersenne_twister<>::operator()()): Fix ~0ul to ~_UInt().
3690         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
3691         cons/default.cc: Fix ~0ul to 2^32-1.
3692         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
3693         cons/gen1.cc: Likewise.
3694
3695 2006-06-05  Stephen M. Webb  <stephen.webb@bregmasoft.com>
3696
3697         * include/tr1/random: New.
3698         * include/tr1/random.tcc: Likewise.
3699         * include/Makefile.am: Add.
3700         * testsuite/tr1/5_numerical_facilies/random/ranlux3.cc: New.
3701         * testsuite/tr1/5_numerical_facilies/random/ranlux4.cc: Likewise.
3702         * testsuite/tr1/5_numerical_facilies/random/mt19937.cc: Likewise.
3703         * testsuite/tr1/5_numerical_facilies/random/variate_generator/
3704         requirements/typedefs.cc: Likewise.
3705         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
3706         cons/seed1.cc: Likewise.
3707         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
3708         cons/seed2.cc: Likewise.
3709         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
3710         cons/default.cc: Likewise.
3711         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
3712         cons/gen1.cc: Likewise.
3713         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
3714         requirements/typedefs.cc: Likewise.
3715         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
3716         operators/equal.cc: Likewise.
3717         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
3718         operators/not_equal.cc: Likewise.
3719         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
3720         operators/serialize.cc: Likewise.
3721         * testsuite/tr1/5_numerical_facilies/random/uniform_real/
3722         requirements/typedefs.cc: Likewise.
3723         * testsuite/tr1/5_numerical_facilies/random/discard_block/
3724         requirements/requirements.cc: Likewise.
3725         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
3726         cons/seed1.cc: Likewise.
3727         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
3728         cons/seed2.cc: Likewise.
3729         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
3730         cons/default.cc: Likewise.
3731         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
3732         cons/gen1.cc: Likewise.
3733         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
3734         requirements/non_uint_neg.cc: Likewise.
3735         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
3736         requirements/typedefs.cc: Likewise.
3737         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
3738         operators/equal.cc: Likewise.
3739         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
3740         operators/not_equal.cc: Likewise.
3741         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
3742         operators/serialize.cc: Likewise.
3743         * testsuite/tr1/5_numerical_facilies/random/xor_combine/
3744         requirements/typedefs.cc: Likewise.
3745         * testsuite/tr1/5_numerical_facilies/random/minstd_rand.cc: Likewise.
3746         * testsuite/tr1/5_numerical_facilies/random/minstd_rand0.cc: Likewise.
3747         * testsuite/tr1/5_numerical_facilies/random/uniform_int/
3748         cons/range.cc: Likewise.
3749         * testsuite/tr1/5_numerical_facilies/random/uniform_int/
3750         cons/default.cc: Likewise.
3751         * testsuite/tr1/5_numerical_facilies/random/uniform_int/
3752         cons/range_neg.cc: Likewise.
3753         * testsuite/tr1/5_numerical_facilies/random/uniform_int/
3754         requirements/typedefs.cc: Likewise.
3755         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
3756         cons/seed1.cc: Likewise.
3757         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
3758         cons/seed2.cc: Likewise.
3759         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
3760         cons/default.cc: Likewise.
3761         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
3762         cons/gen1.cc: Likewise.
3763         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
3764         requirements/typedefs.cc: Likewise.
3765         * include/Makefile.in: Regenerate.
3766         * testsuite/tr1/headers.cc: Update.
3767
3768 2006-06-04  Paolo Carlini  <pcarlini@suse.de>
3769
3770         PR libstdc++/27867
3771         * include/bits/valarray_before.h (struct _BinClos<_Oper, _ValArray,
3772         _ValArray, _Tp, _Tp>): Fix value_type typedef.
3773         * testsuite/26_numerics/valarray/27867.cc: New.
3774
3775 2006-05-29  Paolo Carlini  <pcarlini@suse.de>
3776
3777         PR libstdc++/24692
3778         * include/bits/atomicity.h (__exchange_and_add_multi,
3779         __atomic_add_multi): New, depending on _GLIBCXX_ATOMIC_BUILTINS,
3780         inline the atomic builtins.
3781         (__exchange_and_add_dispatch, __atomic_add_dispatch): Adjust.
3782         * configure.ac: Define _GLIBCXX_ATOMIC_BUILTINS when the atomic
3783         builtins are available.
3784         * configure: Regenerate.
3785         * config.h.in: Likewise.
3786
3787 2006-05-27  Paolo Carlini  <pcarlini@suse.de>
3788
3789         * configure.host: If the CPU provides atomic builtins select
3790         generic/atomic_builtins/atomicity.h.
3791         * config/cpu/generic/atomic_builtins/atomicity.h: Add.
3792         * config/cpu/powerpc/atomicity.h: Remove.
3793         * config/cpu/ia64/atomicity.h: Likewise.
3794         * config/cpu/alpha/atomicity.h: Likewise.
3795         * config/cpu/s390/atomicity.h: Likewise.
3796
3797 2006-05-26  Carlos O'Donell  <carlos@codesourcery.com>
3798
3799         * Makefile.am: Add install-html target. Add install-html to .PHONY
3800         * Makefile.in: Regenerate.
3801
3802 2006-05-24  Paolo Carlini  <pcarlini@suse.de>
3803
3804         PR libstdc++/24704
3805         * include/bits/atomicity.h (__exchange_and_add_single,
3806         __atomic_add_single): New, single thread versions of the atomic
3807         functions.
3808         (__exchange_and_add_dispatch, __atomic_add_dispatch): New,
3809         depending on __GTHREADS and __gthread_active_p() dispatch either
3810         to the above or to the existing atomic functions.
3811         * include/ext/pool_allocator.h: Update callers.
3812         * include/ext/rc_string_base.h: Likewise.
3813         * include/bits/locale_classes.h: Likewise.
3814         * include/bits/basic_string.h: Likewise.
3815         * include/bits/ios_base.h: Likewise.
3816         * include/tr1/boost_shared_ptr.h: Likewise.
3817         * src/ios.cc: Likewise.
3818         * src/locale.cc: Likewise.
3819         * src/ios_init.cc: Likewise.
3820
3821 2006-05-23  Paolo Carlini  <pcarlini@suse.de>
3822
3823         * testsuite/testsuite_shared.cc: Fix --enable-threads=single build.
3824
3825 2006-05-19  Paolo Carlini  <pcarlini@suse.de>
3826
3827         * testsuite/27_io/objects/wchar_t/9661-1.cc: Avoid leaking the
3828         semaphores if a VERIFY fails.
3829         * testsuite/27_io/objects/wchar_t/7.cc: Likewise.
3830         * testsuite/27_io/objects/char/9661-1.cc: Likewise.
3831         * testsuite/27_io/objects/char/7.cc: Likewise.
3832         * testsuite/27_io/basic_filebuf/seekoff/char/26777.cc: Likewise.
3833         * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc: Likewise.
3834         * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise.
3835         * testsuite/27_io/basic_filebuf/close/char/4879.cc: Likewise.
3836         * testsuite/27_io/basic_filebuf/close/char/9964.cc: Likewise.
3837         * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Likewise.
3838
3839 2006-05-17  Paolo Carlini  <pcarlini@suse.de>
3840
3841         * include/tr1/hashtable (hashtable<>::m_find): Remove; update callers.
3842
3843         * include/tr1/hashtable (map_base<>::operator[]): Move out of line.
3844
3845         * include/tr1/hashtable (hashtable<>::m_insert(const value_type&,
3846         std::tr1::false_type)): Avoid memory leak risk for new_node.
3847
3848 2006-05-15  Paolo Carlini  <pcarlini@suse.de>
3849
3850         * include/tr1/hashtable (hashtable<>::m_find, m_insert_bucket): Add.
3851         (hashtable<>::find, m_insert(const value_type&, std::tr1::true_type),
3852         map_base<>::operator[]): Use the above.
3853         * testsuite/performance/23_containers/insert/unordered_map_array.cc:
3854         New.    
3855
3856         * include/tr1/hashtable (hashtable<>::find_node,
3857         insert(const value_type&, ...), erase_node): Rename to m_*, adjust
3858         callers.
3859         * include/tr1/hashtable: Minor cosmetic changes.
3860
3861 2006-05-13  Peter Doerfler  <gcc@pdoerfler.com>
3862
3863         * include/tr1/hashtable (identity<>::operator(),
3864         extract1st<>::operator()): Return by const ref.
3865
3866 2006-05-10  Steve Ellcey  <sje@cup.hp.com>
3867
3868         * testsuite/lib/libstdc++.exp (check_v3_target_cxa_atexit):
3869         Move to gcc subdir.
3870         * testsuite/lib/dg-options.exp (dg-require-iconv): Remove.
3871         (dg-require-cxa-atexit): Move to gcc subdir.
3872
3873 2006-05-10  Paolo Carlini  <pcarlini@suse.de>
3874             Peter Doerfler  <gcc@pdoerfler.com>
3875
3876         * include/tr1/hashtable (hashtable_iterator<>::hashtable_iterator(),
3877         hashtable_const_iterator<>::hashtable_const_iterator(),
3878         node_iterator<>::node_iterator(),
3879         node_const_iterator<>::node_const_iterator()): Add.
3880         (node_iterator<>::node_iterator(hash_node<>*),
3881         node_const_iterator<>::node_const_iterator(hash_node<>*)): Tweak,
3882         remove default.
3883         * testsuite/tr1/6_containers/unordered/hashtable/
3884         iterators_default_constructor.c: New.
3885
3886 2006-05-10  Marc Glisse  <marc.glisse@normalesup.org>
3887
3888         * include/ext/pool_allocator.h: Add missing std:: qualifications.
3889         * include/ext/mt_allocator.h: Likewise.
3890         * include/ext/pb_assoc/detail/resize_policy/
3891         hash_load_check_resize_trigger_imp.hpp: Likewise.
3892         * include/ext/pb_assoc/detail/resize_policy/
3893         hash_standard_resize_policy_imp.hpp: Likewise.
3894         * include/ext/pb_assoc/detail/lu_policy/
3895         counter_lu_metadata_imp.hpp: Likewise.
3896         * include/ext/pb_assoc/detail/map_debug_base.hpp: Likewise.
3897         * libsupc++/eh_alloc.cc: Typo: memcpy -> memset.
3898
3899 2006-05-07  Paolo Carlini  <pcarlini@suse.de>
3900
3901         * include/tr1/type_traits (integral_constant<>::value): Define.
3902         * testsuite/tr1/4_metaprogramming/helper_classes/static_definition.cc:
3903         New.
3904
3905 2006-05-04  Douglas Gregor  <dgregor@cs.indiana.edu>
3906
3907         PR libstdc++/27404
3908         * include/ext/rope (_Rope_const_iterator<>::operator*() const,
3909         _Rope_iterator<>::operator*() const): Add.
3910
3911 2006-05-01  Paolo Carlini  <pcarlini@suse.de>
3912
3913         * acinclude.m4 (GLIBCXX_ENABLE_WCHAR_T): Always check the
3914         presence of wctype.h, for use in GLIBCXX_ENABLE_C99.
3915         * configure: Regenerate.
3916
3917 2006-04-29  Paolo Carlini  <pcarlini@suse.de>
3918
3919         * include/bits/locale_facets.tcc (num_get<>::_M_extract_float):
3920         Special case main parsing loop for !_M_allocated (i.e., "C" locale).
3921         (num_get<>::_M_extract_int): Likewise.
3922         * include/bits/locale_facets.h (num_get<>::_M_find): New.
3923
3924 2006-04-27  Benjamin Kosnik  <bkoz@redhat.com>
3925
3926         * docs/html/17_intro/TODO: Update.
3927         
3928 2006-04-26  Benjamin Kosnik  <bkoz@redhat.com>
3929
3930         PR libstdc++/26875
3931         * include/ext/array_allocator.h (array_allocator): _M_used, new
3932         data member.  
3933         * testsuite/ext/array_allocator/26875.cc: New.
3934         
3935 2006-04-26  Shantonu Sen  <ssen@opendarwin.org>
3936
3937         PR libstdc++/26513
3938         * scripts/make_exports.pl: Use $ENV{NM_FOR_TARGET}, if present.
3939
3940 2006-04-23  Marc Glisse  <marc.glisse@normalesup.org>
3941
3942         PR libstdc++/27199
3943         * ext/pool_allocator.h: Add using declarations for size_t, ptrdiff_t.
3944         * ext/bitmap_allocator.h: Likewise; qualify with std::.
3945         * ext/new_allocator.h: Likewise.
3946         * ext/malloc_allocator.h: Likewise.
3947         * ext/array_allocator.h: Likewise.
3948         * ext/mt_allocator.h: Likewise.
3949         * ext/functional: Likewise for size_t.
3950         * ext/debug_allocator.h: Likewise.
3951         * bits/char_traits.h: Qualify with std:: size_t.
3952         * debug/hash_multimap.h: Likewise.
3953
3954 2006-04-23  Paolo Carlini  <pcarlini@suse.de>
3955
3956         * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 42.
3957
3958 2006-04-19  Paolo Carlini  <pcarlini@suse.de>
3959
3960         PR libstdc++/26424
3961         * include/tr1/hashtable (X<>::primes): Extend for 64-bit machines.
3962         (X<>::n_primes): Adjust.
3963         (prime_rehash_policy::next_bkt, bkt_for_elements, need_rehash): Adjust.
3964
3965 2006-04-18  Paolo Carlini  <pcarlini@suse.de>
3966
3967         * docs/html/faq/index.html ([5.5]): Adjust to mention function
3968         objects and reference_wrapper; minor tweaks.
3969         * docs/html/faq/index.txt: Regenerate.
3970
3971 2006-04-16  Paolo Carlini  <pcarlini@suse.de>
3972
3973         PR libstdc++/6702 (again)
3974         * acinclude.m4 (GLIBCXX_ENABLE_C99): Don't check non-C99
3975         wchar_t functions...
3976         (GLIBCXX_ENABLE_WCHAR_T): ... do that here.
3977         * configure.ac: Adjust order of checks.
3978         * configure: Regenerate.
3979
3980 2006-04-14  Douglas Gregor  <dgregor@cs.indiana.edu>
3981
3982         PR libstdc++/27162
3983         * include/bits/stl_algo.h (__search_n(,,,, _BinaryPredicate,
3984         std::forward_iterator_tag)): Use __binary_pred, not ==.
3985
3986 2006-04-10  Matthias Klose  <doko@debian.org>
3987
3988         * testsuite/lib/libstdc++.exp (libstdc++_init): Recognize multilib
3989         directory names containing underscores.
3990
3991 2006-04-10  Paolo Carlini  <pcarlini@suse.de>
3992
3993         DR 538, [Ready]
3994         * include/bits/stl_algo.h (__unique_copy(,,, input_iterator_tag,
3995         output_iterator_tag), and predicated counterpart): Revert to the
3996         algorithm pre-DR 241, i.e., value_type of InputIterator is now
3997         required to be Assignable too.
3998         * testsuite/25_algorithms/unique_copy/3.cc: Remove.
3999         * docs/html/ext/howto.html: Add an entry for DR 538.
4000
4001 2006-03-29  Benjamin Kosnik  <bkoz@redhat.com>
4002
4003         * testsuite/data/sgetn.txt: Correct copyright holder.
4004         * testsuite/data/wistream_extractor_other-1.tst: Same.
4005         * testsuite/data/wistream_extractor_other-2.tst: Same.
4006         * testsuite/data/istream_extractor_other-1.txt: Same.
4007         * testsuite/data/filebuf_virtuals-1.txt: Same.
4008         * testsuite/data/wostream_inserter_other-1.tst: Same.
4009         * testsuite/data/wostream_inserter_other-2.tst: Same.
4010         * testsuite/data/ostream_inserter_other-1.tst: Same.
4011         * testsuite/data/ostream_inserter_other-2.tst: Same.
4012         * testsuite/data/wistream_extractor_other-1.txt: Same.
4013         * testsuite/data/istream_extractor_other-1.tst: Same.
4014         * testsuite/data/istream_extractor_other-2.tst: Same.
4015         * testsuite/data/filebuf_virtuals-1.tst: Same.
4016         * testsuite/27_io/basic_filebuf/sgetn/char/1-in.cc: Adjust test
4017         conditions.
4018         * testsuite/27_io/basic_filebuf/sgetn/char/1-io.cc: Same.
4019         * testsuite/27_io/basic_filebuf/sgetn/char/2-in.cc: Same.
4020         * testsuite/27_io/basic_filebuf/sgetn/char/2-io.cc: Same.
4021
4022 2006-03-28  Paolo Carlini  <pcarlini@suse.de>
4023
4024         * include/ext/vstring.h (operator[]): Allow s[s.size()] in
4025         debug mode, but not pedantic mode.
4026
4027 2006-03-24  Mark Mitchell  <mark@codesourcery.com>
4028             Joseph S. Myers  <joseph@codesourcery.com>
4029
4030         PR libstdc++/20448
4031         PR libstdc++/20451
4032         * scripts/testsuite_flags.in (--cxxflags): Don't define LOCALEDIR.
4033         * testsuite/lib/libstdc++.exp (libstdc++_init): Always define
4034         LOCALEDIR to ".".
4035         (v3-build_support): Build MO files.
4036
4037 2006-03-22  Paolo Carlini  <pcarlini@suse.de>
4038
4039         PR libstdc++/26777
4040         * include/bits/fstream.tcc (basic_filebuf<>::_M_seek): Check
4041         the return value of _M_file.seekoff.
4042         * testsuite/27_io/basic_filebuf/seekoff/char/26777.cc: New.
4043
4044 2006-03-21  Paolo Carlini  <pcarlini@suse.de>
4045
4046         PR libstdc++/25482
4047         * include/bits/stl_algobase.h (__copy_aux(_CharT*, _CharT*,
4048         ostreambuf_iterator<_CharT>), __copy_aux(const _CharT*, const _CharT*,
4049         ostreambuf_iterator<_CharT>), __copy_aux(istreambuf_iterator<_CharT>,
4050         istreambuf_iterator<_CharT>, _CharT*), copy(istreambuf_iterator<_CharT>,
4051         istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>)): Declare.
4052         * include/bits/stl_algo.h (find(istreambuf_iterator<_CharT>,
4053         istreambuf_iterator<_CharT>, _CharT)): Likewise.
4054         * include/bits/streambuf_iterator.h (copy(istreambuf_iterator<_CharT>,
4055         istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>),
4056         __copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>),
4057         __copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>),
4058         __copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
4059         _CharT*), find(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
4060         _CharT)): Define.
4061         (class istreambuf_iterator<>, class ostreambuf_iterator<>): Declare
4062         friends.
4063         * include/std/std_streambuf.h (class basic_streambuf<>): Likewise.
4064         * include/bits/cpp_type_traits.h (struct __is_char<>): Add.
4065         * testsuite/25_algorithms/copy/streambuf_iterators/char/1.cc: New.
4066         * testsuite/25_algorithms/copy/streambuf_iterators/char/2.cc: New.
4067         * testsuite/25_algorithms/copy/streambuf_iterators/char/3.cc: New.
4068         * testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc: New.
4069         * testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/1.cc: New.
4070         * testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/2.cc: New.
4071         * testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/3.cc: New.
4072         * testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/4.cc: New.
4073         * testsuite/25_algorithms/find/istreambuf_iterators/char/1.cc: New.
4074         * testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc: New.
4075         * testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/1.cc: New.
4076         * testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/2.cc: New.
4077         * testsuite/performance/25_algorithms/copy_streambuf_iterators.cc: New.
4078         * testsuite/performance/25_algorithms/find_istreambuf_iterators.cc: New.
4079
4080 006-03-13  Paolo Carlini  <pcarlini@suse.de>
4081
4082         * include/bits/postypes.h (fpos<>::operator==, operator!=): Remove,
4083         exploit conversion to streamoff.
4084         * testsuite/27_io/fpos/mbstate_t/5.cc: New.
4085
4086 2006-03-12  Howard Hinnant  <hhinnant@apple.com>
4087
4088         * testsuite/27_io/basic_filebuf/underflow/char/10097.cc:
4089         Fix race condition.
4090         * testsuite/27_io/objects/char/9661-1.cc: Likewise.
4091         * testsuite/27_io/objects/wchar_t/9661-1.cc: Likewise.
4092
4093 2006-03-10  Paolo Carlini  <pcarlini@suse.de>
4094
4095         * include/tr1/cmath: Add atan2 and pow bits; add using declarations.    
4096         * include/tr1/math.h: Add using declarations.
4097         * include/tr1/complex: Add using declarations.
4098         * testsuite/tr1/8_c_compatibility/cmath/functions.cc: Fully
4099         qualify calls.
4100         * testsuite/tr1/8_c_compatibility/cmath/overloads.cc: Likewise;
4101         add atan2 and pow bits.
4102         * testsuite/tr1/8_c_compatibility/complex/overloads_float.cc: Likewise.
4103         * testsuite/tr1/8_c_compatibility/complex/overloads_int.cc: Likewise;
4104         adjust polar bits.
4105
4106         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add checks for double_t
4107         and float_t typedefs.
4108         * include/tr1/cmath: Add double_t and float_t.
4109         * testsuite/tr1/8_c_compatibility/cmath/types.cc: New.
4110
4111         * include/tr1/ctgmath: New.
4112         * include/tr1/tgmath.h: Likewise.
4113         * include/Makefile.am: Add.
4114         * testsuite/tr1/headers.cc: Update.
4115
4116         * include/Makefile.in: Regenerate.
4117         * configure: Likewise.
4118
4119         * docs/html/ext/tr1.html: Update.
4120
4121 2006-03-08  Paolo Carlini  <pcarlini@suse.de>
4122
4123         Implement the resolution of DR 455, [DR].
4124         * src/ios_init.cc (ios_base::Init::Init()): Do it.
4125         * testsuite/27_io/objects/char/dr455.cc: New.
4126         * testsuite/27_io/objects/wchar_t/dr455.cc: Likewise.
4127         * docs/html/ext/howto.html: Add an entry for DR 455.
4128
4129 2006-03-07  Paolo Carlini  <pcarlini@suse.de>
4130
4131         * include/tr1/cmath: Add C99 overloads.
4132         * include/tr1/common.h (struct __promote_3): Add.
4133         * testsuite/tr1/8_c_compatibility/cmath/overloads.cc: New.
4134
4135         * testsuite/tr1/8_c_compatibility/cmath/functions.cc: Tweak.
4136         * testsuite/tr1/8_c_compatibility/complex/overloads_float.cc: Likewise.
4137
4138 2006-03-06  Paolo Carlini  <pcarlini@suse.de>
4139
4140         PR target/26532
4141         * config/io/c_io_stdio.h (struct __ios_flags): Remove.
4142         * include/bits/ios_base.h: Adjust consistently.
4143         (ios_base::_S_local_word_size): Change to an anonymous enum.
4144         * src/ios.cc: Do not define static const data of __ios_flags,
4145         likewise for ios_base::_S_local_word_size.      
4146         * include/bits/locale_classes.h (locale::_S_categories_size):
4147         Change to an anonymous enum.
4148         * src/locale.cc: Don't define.
4149
4150 2006-03-03  Paolo Carlini  <pcarlini@suse.de>
4151
4152         PR libstdc++/26526
4153         * config/abi/pre/gnu.ver (__copy_streambufs, 64-bit version): Add
4154         @GLIBCXX_3.4.8; move existing symbols @GLIBCXX_3.4.8 to 3.4.9.
4155         * configure.ac (libtool_VERSION): To 6:9:0.
4156         * testsuite/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.9.
4157         * configure: Regenerate.
4158
4159 2006-03-02  Paolo Carlini  <pcarlini@suse.de>
4160
4161         * config/abi/pre/gnu.ver: Adjust __copy_streambufs_eof export
4162         vs 64-bit arches.
4163
4164 2006-03-01  Paolo Carlini  <pcarlini@suse.de>
4165
4166         * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 41.
4167
4168 2006-02-27  Jakub Jelinek  <jakub@redhat.com>
4169
4170         PR other/26208
4171         * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use
4172         _Unwind_GetIPInfo instead of _Unwind_GetIP.
4173
4174 2006-02-27  Paolo Carlini  <pcarlini@suse.de>
4175
4176         PR libstdc++/14866
4177         * testsuite/27_io/ios_base/sync_with_stdio/1.cc: Redirect
4178         stderr instead.
4179
4180 2006-02-26  Paolo Carlini  <pcarlini@suse.de>
4181
4182         * include/tr1/cmath: Add templates (8.16.3).    
4183         * include/tr1/cstdbool: New.
4184         * include/tr1/stdbool.h: Likewise.
4185         * include/Makefile.am: Add.
4186         * testsuite/tr1/8_c_compatibility/cmath/templates.cc: New.
4187         * testsuite/tr1/headers.cc: Update.
4188         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <stdbool.h> check.
4189         * docs/html/ext/tr1.html: Update.
4190         * include/Makefile.in: Regenerate.
4191         * config.h.in: Likewise.
4192         * configure: Likewise.
4193
4194 2006-02-24  Paolo Carlini  <pcarlini@suse.de>
4195
4196         * include/tr1/array (array<>::swap, assign): Implement.
4197         * include/tr1/array (operator==, operator!=, operator<,
4198         operator>, operator>=, operator<=, swap, get): Inline.
4199         * testsuite/tr1/6_containers/array/requirements/member_swap.cc: New.
4200         * testsuite/tr1/6_containers/array/requirements/assign.cc: Likewise.
4201         * testsuite/tr1/6_containers/array/specialized_algorithms/swap.cc:
4202         Likewise.
4203
4204 2006-02-23  Benjamin Kosnik  <bkoz@redhat.com>
4205
4206         * testsuite/22_locale/codecvt/in/wchar_t/1.cc (test01): Change int
4207         to size_t. Use explicit static_cast for casts.
4208         * testsuite/22_locale/codecvt/in/wchar_t/6.cc (test06): Same.
4209         * testsuite/22_locale/codecvt/in/wchar_t/5.cc (test05): Same.
4210         * testsuite/ext/stdio_sync_filebuf/wchar_t/1.cc (test01): Same.
4211         
4212 2006-02-22  Paolo Carlini  <pcarlini@suse.de>
4213
4214         * docs/html/ext/pb_assoc/
4215         basic_tree_assoc_cntnr_const_node_iterator.html:Fix links
4216         * docs/html/ext/pb_assoc/basic_tree_assoc_cntnr_node_iterator.html:
4217         Likewise.
4218         * docs/html/ext/pb_assoc/hash_based_containers.html: Likewise.
4219         * docs/html/ext/pb_assoc/hash_standard_resize_policy.html: Likewise.
4220         * docs/html/ext/pb_assoc/interface.html: Likewise..
4221         * docs/html/ext/pb_assoc/list_updates.html: Likewise.
4222         * docs/html/ext/pb_assoc/lu_based_containers.html: Likewise.
4223         * docs/html/ext/pb_assoc/resize_policies.html: Likewise.
4224         * docs/html/ext/pb_assoc/sample_probe_fn.html: Likewise.
4225         * docs/html/ext/pb_assoc/sample_range_hashing.html: Likewise.
4226         * docs/html/ext/pb_assoc/sample_ranged_hash_fn.html: Likewise.
4227         * docs/html/ext/pb_assoc/sample_ranged_probe_fn.html: Likewise.
4228         * docs/html/ext/pb_assoc/sample_resize_policy.html: Likewise.
4229         * docs/html/ext/pb_assoc/tree_assoc_cntnr_const_node_iterator.html:
4230         Likewise.
4231         * docs/html/ext/pb_assoc/tree_assoc_cntnr_node_iterator.html: Likewise.
4232
4233 2006-02-22  Paolo Carlini  <pcarlini@suse.de>
4234
4235         PR libstdc++/26132
4236         * include/tr1/hashtable (hashtable<>::rehash): Define.
4237         * testsuite/tr1/6_containers/unordered/hashtable/26132.cc: New.
4238
4239         * include/tr1/hashtable: Trivial formatting and stylistic fixes.
4240
4241         * testsuite/tr1/headers.cc: remove <tr1/hashtable>, not a tr1 header,
4242         only an implementation detail.
4243
4244 2006-02-22  Paolo Carlini  <pcarlini@suse.de>
4245
4246         * include/debug/list (splice): Remove splice_alloc check, redundant
4247         after implementing the splice bits of N1599.
4248
4249 2006-02-21  Benjamin Kosnik  <bkoz@redhat.com>
4250
4251         * include/c_std/cmath.tcc: Use _GLIBCXX_BEGIN_NAMESPACE,
4252         _GLIBCXX_END_NAMESPACE.
4253
4254 2006-02-21  Benjamin Kosnik  <bkoz@redhat.com>
4255
4256         * include/bits/c++config: Simplify debug namespaces.
4257         * include/ext/hash_set: Specialize insert_iterator after norm,
4258         debug containers have been (optionally) declared. Use nested
4259         namespaces.     
4260         * include/ext/hash_map: Same.
4261         * include/debug/hash_map.h (insert): Add specialization for value
4262         pointer types.
4263         * include/debug/hash_set.h (insert): Same.
4264         * include/debug/hash_multimap.h: Change __gnu_debug_def to __debug.
4265         * include/debug/set.h: Same.
4266         * include/debug/bitset: Same.
4267         * include/debug/multiset.h: Same.
4268         * include/debug/hash_multiset.h: Same.
4269         * include/debug/vector: Same.
4270         * include/debug/map.h: Same.
4271         * include/debug/deque: Same.
4272         * include/debug/list: Same.
4273         * include/debug/multimap.h. Same.
4274         * include/debug/macros.h: Use __gnu_debug.
4275         * include/debug/debug.h: Same.
4276         * include/debug/formatter.h: Same.
4277         * include/debug/safe_sequence.h: Same.
4278         * include/debug/functions.h: Same.
4279         * include/debug/safe_base.h: Same.
4280         * include/debug/safe_iterator.h: Same.
4281         * include/debug/safe_iterator.tcc: Same.
4282         (_M_invalidate): Adjust compare order.
4283         * include/debug/string: Change std::__gnu_debug to __gnu_debug.
4284         * include/ext/hashtable.h: Formatting fixes.
4285         * include/bits/stl_map.h: Formatting fixes.             
4286         * src/compatibility.cc: Adjust compatibility symbols for old debug
4287         mode model.     
4288         * src/debug_list.cc: Tweak.
4289         * src/debug.cc: Adjust namespaces.
4290         * docs/html/debug_mode.html: Adjust namespace names.
4291         * testsuite/25_algorithms/heap/heap.cc: Restore _GLIBCXX_DEBUG
4292         macro guards, as count values differ when in debug mode.        
4293         * testsuite/23_containers/vector/26412.cc: Move to...
4294         * testsuite/23_containers/vector/26412-1.cc: ... here.
4295         * testsuite/23_containers/vector/26412-2.cc: Add.
4296
4297         * include/ext/pb_assoc/detail/standard_policies.hpp
4298         (PB_ASSOC_HASH_NAMESPACE): Remove, use __gnu_cxx::hash_map and
4299         std::equal_to.
4300
4301         * configure.ac (libtool_VERSION): To 6:8:0.
4302         * configure: Regenerate.
4303         * config/abi/pre/gnu.ver: Revert to exporting __gnu_debug symbols.
4304         (GLIBCXX_3.4.8): New.
4305         * testsuite/testsuite_abi.cc: Add GLIBCXX_3.4.8 to known versions.
4306         
4307 2006-02-21  Paolo Carlini  <pcarlini@suse.de>
4308
4309         * include/tr1/hashtable: Trivial formatting fixes.
4310
4311 2006-02-20  Paolo Carlini  <pcarlini@suse.de>
4312
4313         Revert recent commit for libstdc++/26211, now suspended waiting for
4314         DR 342 (reopened) to reach a new resolution.
4315         * include/bits/istream.tcc (basic_istream<>::tellg, seekg(pos_type),
4316         seekg(off_type, ios_base::seekdir)): Remove sentry.
4317         * testsuite/27_io/basic_istream/seekg/char/26211.cc: Remove.
4318         * testsuite/27_io/basic_istream/seekg/wchar_t/26211.cc: Likewise.
4319         * testsuite/27_io/basic_istream/tellg/char/26211.cc: Likewise.
4320         * testsuite/27_io/basic_istream/tellg/wchar_t/26211.cc: Likewise.
4321         * testsuite/27_io/basic_istream/seekg/char/8348-1.cc: Revert changes.
4322         * testsuite/27_io/basic_istream/seekg/wchar_t/8348-1.cc: Likewise.
4323         * testsuite/27_io/basic_istream/seekg/char/8348-2.cc: Likewise.
4324         * testsuite/27_io/basic_istream/seekg/wchar_t/8348-1.cc: Likewise.
4325         * testsuite/27_io/basic_istream/tellg/char/8348.cc: Likewise.
4326         * testsuite/27_io/basic_istream/tellg/wchar_t/8348.cc: Likewise.
4327
4328 2006-02-19  Paolo Carlini  <pcarlini@suse.de>
4329
4330         * include/std/std_sstream.h (basic_stringbuf<>::setbuf): Simply
4331         clear the internal _M_string, adjust _M_sync call.
4332         * include/bits/sstream.tcc (basic_stringbuf<>::_M_sync): Adjust
4333         consistently for calls from setbuf.
4334
4335 2006-02-17  Paolo Carlini  <pcarlini@suse.de>
4336             Howard Hinnant  <hhinnant@apple.com>
4337
4338         PR libstdc++/26250
4339         * include/bits/sstream.tcc (basic_stringbuf<>::overflow): Tweak
4340         to leave epgtr() just past the new write position, as per the
4341         relevant bits of 27.7.1.3/8 (not changed by DR 432).
4342         * testsuite/27_io/basic_stringbuf/overflow/char/26250.cc: New.
4343         * testsuite/27_io/basic_stringbuf/overflow/wchar_t/26250.cc: Same.
4344
4345         * docs/html/ext/howto.html: Add entries for DR 169 and DR 432.
4346
4347         * include/std/std_sstream.h (basic_stringbuf<>::_M_sync): Move out
4348         of line...
4349         * include/bits/sstream.tcc: ... here.
4350
4351 2006-02-16  Joseph S. Myers  <joseph@codesourcery.com>
4352
4353         PR libstdc++/14939
4354         * config/os/uclibc/ctype_base.h, config/os/uclibc/ctype_inline.h,
4355         config/os/uclibc/ctype_noninline.h, config/os/uclibc/os_defines.h:
4356         New.
4357         * acinclude.m4 (GLIBCXX_CONFIGURE): Test whether using uClibc.
4358         * configure.host: Use os/uclibc for uClibc.
4359         * crossconfig.m4 (*-linux*): Use link tests.  Don't hardcode
4360         presence of math functions.
4361         * configure: Regenerate.
4362
4363 2006-02-12  Paolo Carlini  <pcarlini@suse.de>
4364
4365         PR libstdc++/26211
4366         * include/bits/istream.tcc (basic_istream<>::tellg, seekg(pos_type),
4367         seekg(off_type, ios_base::seekdir)): Construct a sentry, as per
4368         27.6.1.3/1.
4369         * testsuite/27_io/basic_istream/seekg/char/26211.cc: New.
4370         * testsuite/27_io/basic_istream/seekg/wchar_t/26211.cc: Likewise.
4371         * testsuite/27_io/basic_istream/tellg/char/26211.cc: Likewise.
4372         * testsuite/27_io/basic_istream/tellg/wchar_t/26211.cc: Likewise.
4373         * testsuite/27_io/basic_istream/seekg/char/8348-1.cc: Adjust.
4374         * testsuite/27_io/basic_istream/seekg/wchar_t/8348-1.cc: Likewise.
4375         * testsuite/27_io/basic_istream/seekg/char/8348-2.cc: Likewise.
4376         * testsuite/27_io/basic_istream/seekg/wchar_t/8348-1.cc: Likewise.
4377         * testsuite/27_io/basic_istream/tellg/char/8348.cc: Likewise.
4378         * testsuite/27_io/basic_istream/tellg/wchar_t/8348.cc: Likewise.
4379
4380 2006-02-10  Paolo Carlini  <pcarlini@suse.de>
4381
4382         PR libstdc++/26181
4383         * include/bits/streambuf.tcc (__copy_streambufs_eof): New, like
4384         the existing __copy_streambufs but reporting eof in input.
4385         (__copy_streambufs): Just use the latter.
4386         * src/streambuf.cc (__copy_streambufs_eof): Adjust specializations
4387         of __copy_streambufs.
4388         * include/bits/istream.tcc (operator>>(__streambuf_type*)): Use
4389         __copy_streambufs_eof instead.
4390         * include/std/std_streambuf.h: Adjust.
4391         * src/streambuf-inst.cc: Adjust.
4392         * config/abi/pre/gnu.ver: Export the new symbols.
4393         * testsuite/27_io/basic_istream/extractors_other/char/26181.cc: New.
4394         * testsuite/27_io/basic_istream/extractors_other/wchar_t/26181.cc:
4395         Likewise.
4396         * testsuite/27_io/basic_istream/extractors_other/char/1.cc: Adjust.
4397         * testsuite/27_io/basic_istream/extractors_other/wchar_t/1.cc:
4398         Likewise.
4399
4400 2006-02-08  Benjamin Kosnik  <bkoz@redhat.com>
4401
4402         PR libstdc++/26142
4403         * include/debug/debug.h: Move debug alias inside namespace std,
4404         same with namespace __gnu_cxx. Add top-level __gnu_debug
4405         namespace.      
4406         * include/debug/hash_multimap.h: Nest within __gnu_cxx, not
4407         std. Also, change nesting namespace name from __gnu_debug_def to
4408         __gnu_debug.    
4409         * include/debug/hash_map.h: Same.
4410         * include/debug/hash_multiset.h: Same.
4411         * include/debug/hash_set.h: Same.
4412         * docs/html/debug.html: Same.
4413         * testsuite/23_containers/vector/26412.cc: New.
4414         * testsuite/23_containers/vector/invalidation/1.cc:  Correct
4415         qualifications for debug namespace change.
4416         * testsuite/23_containers/vector/invalidation/2.cc: Same.
4417         * testsuite/23_containers/vector/invalidation/3.cc: Same.
4418         * testsuite/23_containers/vector/invalidation/4.cc: Same.
4419         * testsuite/23_containers/deque/invalidation/1.cc: Same.
4420         * testsuite/23_containers/deque/invalidation/2.cc: Same.
4421         * testsuite/23_containers/deque/invalidation/3.cc: Same.
4422         * testsuite/23_containers/deque/invalidation/4.cc: Same.
4423         * testsuite/23_containers/multiset/invalidation/1.cc: Same.
4424         * testsuite/23_containers/multiset/invalidation/2.cc: Same.
4425         * testsuite/23_containers/multimap/invalidation/1.cc: Same.
4426         * testsuite/23_containers/multimap/invalidation/2.cc: Same.
4427         * testsuite/23_containers/bitset/invalidation/1.cc: Same.
4428         * testsuite/23_containers/bitset/cons/16020.cc: Same.
4429         * testsuite/23_containers/bitset/operations/13838.cc: Same.
4430         * testsuite/23_containers/list/invalidation/1.cc: Same.
4431         * testsuite/23_containers/list/invalidation/2.cc: Same.
4432         * testsuite/23_containers/list/invalidation/3.cc: Same.
4433         * testsuite/23_containers/list/invalidation/4.cc: Same.
4434         * testsuite/23_containers/set/invalidation/1.cc: Same.
4435         * testsuite/23_containers/set/invalidation/2.cc: Same.
4436         * testsuite/23_containers/map/invalidation/1.cc: Same.
4437         * testsuite/23_containers/map/invalidation/2.cc: Same.
4438         * testsuite/23_containers/map/modifiers/insert/16813.cc: Same.
4439         * testsuite/21_strings/basic_string/2.cc: Same.
4440
4441 2006-02-08  Paolo Carlini  <pcarlini@suse.de>
4442
4443         PR libstdc++/26133  (DR 241, [WP])
4444         * include/bits/stl_algo.h (__unique_copy(,,, forward_iterator_tag,
4445         output_iterator_tag), __unique_copy(,,, input_iterator_tag,
4446         output_iterator_tag), __unique_copy(,,, input_iterator_tag,
4447         forward_iterator_tag), and predicated counterparts): Add.
4448         (__unique_copy(,,, output_iterator_tag), __unique_copy(,,,
4449         forward_iterator_tag), and predicated counterparts): Remove.
4450         (unique_copy): Adjust, dispatch to the three helpers above.
4451         * testsuite/25_algorithms/unique_copy/2.cc: New.
4452         * testsuite/25_algorithms/unique_copy/26133.cc: Likewise.
4453         * testsuite/25_algorithms/unique_copy/3.cc: Likewise.   
4454         * docs/html/ext/howto.html: Add an entry for DR 241.
4455
4456         * testsuite/25_algorithms/unique_copy/1.cc: Minor cosmetic changes.
4457
4458 2006-02-07  Jakub Jelinek  <jakub@redhat.com>
4459             Benjamin Kosnik  <bkoz@redhat.com>
4460
4461         * configure.ac (_GLIBCXX_LONG_DOUBLE_COMPAT): New check.
4462         If true, set also port_specific_symbol_files and create
4463         as_symver_specs.
4464         (GLIBCXX_LDBL_COMPAT): New GLIBCXX_CONDITIONAL.
4465         * configure: Rebuilt.
4466         * config.h.in: Rebuilt.
4467         * config/os/gnu-linux/ldbl-extra.ver: New file.
4468         * config/abi/pre/gnu.ver: Make sure no __float128 symbols are
4469         exported.
4470         * include/bits/c++config (_GLIBCXX_LONG_DOUBLE_COMPAT,
4471         _GLIBCXX_LDBL_NAMESPACE, _GLIBCXX_BEGIN_LDBL_NAMESPACE,
4472         _GLIBCXX_END_LDBL_NAMESPACE): Define.
4473         * include/bits/localefwd.h: Use them to conditionally scope facets.
4474         * include/bits/locale_facets.h: Surround std::{money,num}_{get,put}
4475         with _GLIBCXX_BEGIN_LDBL_NAMESPACE and _GLIBCXX_END_LDBL_NAMESPACE.
4476         Surround std::{money,num}_{get,put}
4477         with _GLIBCXX_BEGIN_LDBL_NAMESPACE and _GLIBCXX_END_LDBL_NAMESPACE.
4478         [_GLIBCXX_LONG_DOUBLE_COMPAT] (std::money_get): Add __do_get method.
4479         [_GLIBCXX_LONG_DOUBLE_COMPAT] (std::money_put): Add __do_put method.
4480         [_GLIBCXX_LONG_DOUBLE_COMPAT] (std::num_get): Add __do_get method.
4481         [_GLIBCXX_LONG_DOUBLE_COMPAT] (std::num_put): Add __do_put method.
4482         * include/bits/locale_facets.tcc: Surround std::{money,num}_{get,put}
4483         with _GLIBCXX_BEGIN_LDBL_NAMESPACE and _GLIBCXX_END_LDBL_NAMESPACE.
4484         (std::money_get::__do_get, std::money_put::__do_put,
4485         std::num_get::__do_get, std::num_put::__do_put): New
4486         specializations.
4487         * include/Makefile.am: Conditionally define
4488         _GLIBCXX_LONG_DOUBLE_COMPAT in c++config.
4489         * include/Makefile.in: Regenerate.
4490         * src/locale.cc [_GLIBCXX_LONG_DOUBLE_COMPAT] (_GLIBCXX_LOC_ID,
4491         _GLIBCXX_SYNC_ID): Define, use them.
4492         * src/compatibility-ldbl.cc: New file.
4493         * src/complex_io.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Add compatibility
4494         symbols.
4495         * src/limits.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
4496         * src/locale.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
4497         * src/locale-inst.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.   
4498         * src/locale-misc-inst.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
4499         * src/istream-inst.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
4500         * src/ostream-inst.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
4501         * src/locale.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
4502         * src/wlocale-inst.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
4503         * src/compatibility.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
4504         * config/locale/generic/c_locale.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]:
4505         Likewise.
4506         * config/locale/gnu/c_locale.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]:
4507         Likewise.
4508         * src/Makefile.am (libstdc++-symbol.ver): Append instead of
4509         insert in the middle if port specific symbol file requests it.
4510         (ldbl_compat_sources): New variable.
4511         (sources): Use it.
4512         (compatibility-ldbl.lo, compatibility-ldbl.o): New rules.
4513         * src/Makefile.in: Rebuilt.
4514         * testsuite/testsuite_abi.cc: Recognize GLIBCXX_LDBL_3.4,
4515         GLIBCXX_LDBL_3.4.7, CXXABI_LDBL_1.3.    
4516
4517 2006-02-07  Paolo Carlini  <pcarlini@suse.de>   
4518
4519         * include/tr1/hashtable: Trivial formatting fixes.
4520
4521 2006-02-07  Paolo Carlini  <pcarlini@suse.de>
4522             Zak Kipling  <zak@transversal.com>
4523
4524         PR libstdc++/26127
4525         * include/tr1/hashtable (hashtable<>::key_equal): Define.
4526         (hashtable<>::bucket, rehash_base<>::max_load_factor): Fix.
4527         * testsuite/tr1/6_containers/unordered/hashtable/26127.cc: New.
4528
4529 2006-02-07  Paolo Carlini  <pcarlini@suse.de>
4530
4531         * include/tr1/cmath: New.
4532         * include/tr1/cstdlib: Likewise.
4533         * include/tr1/ctime: Likewise.
4534         * include/tr1/math.h: Likewise. 
4535         * include/tr1/stdlib.h: Likewise.
4536         * include/Makefile.am: Add.
4537         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <math.h> checks.
4538         * testsuite/tr1/8_c_compatibility/cmath/functions.cc: New.
4539         * testsuite/tr1/8_c_compatibility/cstdlib/functions.cc: Likewise.
4540         * testsuite/tr1/8_c_compatibility/cstdlib/types.cc: Likewise.
4541         * testsuite/tr1/headers.cc: Update.     
4542
4543         * include/tr1/cinttypes: Do not provide abs and div, conflicting
4544         with the above overloads for _Longlong types.
4545         * include/tr1/inttypes.h: Adjust.
4546         * testsuite/tr1/8_c_compatibility/cinttypes/functions.cc: Adjust.
4547
4548         * docs/html/ext/tr1.html: Update.
4549         
4550         * testsuite/tr1/8_c_compatibility/cwchar/functions.cc: Tweak.
4551
4552         * include/Makefile.in: Regenerate.
4553         * config.h.in: Likewise.
4554         * configure: Likewise.
4555
4556 2006-02-07  Mark Mitchell  <mark@codesourcery.com>
4557
4558         * testsuite/testsuite_tr1.h (test_property): New function.
4559         * testsuite/tr1/4_metaprogramming/type_properties/extent/extent.cc 
4560         (test01) 
4561
4562 2006-02-05  Paolo Carlini  <pcarlini@suse.de>
4563
4564         * include/tr1/cstdio: New.
4565         * include/tr1/stdio.h: Likewise.
4566         * include/Makefile.am: Add.
4567         * testsuite/tr1/8_c_compatibility/cstdio/functions.cc: New.
4568         * testsuite/tr1/headers.cc: Update.     
4569         * docs/html/ext/tr1.html: Update.
4570
4571         * include/tr1/cwchar: Simplify, use _GLIBCXX_USE_C99, consistently
4572         with the facilities in std::.
4573         * include/tr1/cwctype: Likewise.
4574         * testsuite/tr1/8_c_compatibility/cwchar/functions.cc: Tweak.
4575         * testsuite/tr1/8_c_compatibility/cwctype/functions.cc: Likewise.
4576         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Remove <wchar.h> and
4577         <wctype.h> checks.
4578
4579         * include/Makefile.in: Regenerate.
4580         * config.h.in: Likewise.
4581         * configure: Likewise.
4582
4583 2006-02-04  Paolo Carlini  <pcarlini@suse.de>
4584
4585         * testsuite/tr1/8_c_compatibility/cwchar/functions.cc: Fix.
4586
4587 2006-02-04  Paolo Carlini  <pcarlini@suse.de>
4588
4589         * testsuite/27_io/basic_stringbuf/in_avail/char/21955.cc: Avoid
4590         warning on string constant.
4591
4592 2006-02-03  Paolo Carlini  <pcarlini@suse.de>
4593
4594         * include/tr1/cwchar: New.
4595         * include/tr1/cwctype: Likewise.
4596         * include/tr1/wchar.h: Likewise.
4597         * include/tr1/wctype.h: Likewise.
4598         * include/Makefile.am: Add.
4599         * testsuite/tr1/8_c_compatibility/cwchar/functions.cc: New.
4600         * testsuite/tr1/8_c_compatibility/cwctype/functions.cc: Likewise.
4601         * testsuite/tr1/headers.cc: Update.
4602         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <wchar.h> and
4603         <wctype.h> checks.
4604         * docs/html/ext/tr1.html: Update.
4605         * include/Makefile.in: Regenerate.
4606         * config.h.in: Likewise.
4607         * configure: Likewise.
4608
4609         * testsuite/tr1/8_c_compatibility/cctype/functions.cc: Cosmetic tweak.
4610
4611 2006-02-02  Paolo Carlini  <pcarlini@suse.de>
4612
4613         * include/tr1/cfloat: New.
4614         * include/tr1/climits: Likewise.                
4615         * include/tr1/cstdarg: Likewise.
4616         * include/tr1/ctype.h: Likewise.
4617         * include/tr1/fenv.h: Likewise.
4618         * include/tr1/float.h: Likewise.
4619         * include/tr1/inttypes.h: Likewise.
4620         * include/tr1/limits.h: Likewise.
4621         * include/tr1/stdint.h: Likewise.
4622         * include/tr1/stdarg.h: Likewise.
4623         * include/Makefile.am: Add.
4624         * include/Makefile.in: Regenerate.
4625         * docs/html/ext/tr1.html: Update.
4626         * testsuite/tr1/headers.cc: New.
4627
4628         * include/tr1/cctype: Include <cctype> instead.
4629
4630 2006-01-31  Paolo Carlini  <pcarlini@suse.de>
4631
4632         PR libstdc++/21554
4633         * include/tr1/array (array<>::_M_instance): Maximally align.
4634         * testsuite/ext/array_allocator/2.cc: Do not xfail for powerpc.
4635
4636 2006-01-31  Ed Smith-Rowland  <3dw4rd@verizon.net>
4637
4638         * docs/html/faq/index.html ([1.0]): Replace references to CVS
4639         with appropriate references to SVN.
4640         ([1.3]): Likewise.
4641         ([1.4]): Likewise.
4642         ([2.3]): Likewise.
4643         * docs/html/faq/index.txt: Regenerated.
4644
4645 2006-01-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4646
4647         * include/bits/valarray_array.h (__valarray_default_construct):
4648         Replace use __is_fundamental with __is_pod.
4649         (__valarray_fill_construct): Likewise.
4650         (__valarray_copy_construct): Likewise.
4651         (__valarray_destroy_elements): Likewise.
4652         (__valarray_copy): Likewise.
4653
4654 2006-01-30  Paolo Carlini  <pcarlini@suse.de>
4655
4656         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Do the <inttypes.h>
4657         checks only if the <stdint.h> checks are successful.
4658         * configure: Regenerate.
4659
4660 2006-01-30  Paolo Carlini  <pcarlini@suse.de>
4661
4662         * include/tr1/cinttypes: New.
4663         * include/Makefile.am: Add.
4664         * testsuite/tr1/8_c_compatibility/cinttypes/functions: New.     
4665         * testsuite/tr1/8_c_compatibility/cinttypes/types: Likewise.
4666         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <inttypes.h> checks.
4667         * docs/html/ext/tr1.html: Update.
4668         * include/Makefile.in: Regenerate.
4669         * config.h.in: Likewise.
4670         * configure: Likewise.
4671
4672         * testsuite/tr1/8_c_compatibility/cfenv/functions.cc: Cosmetic tweak.
4673         * testsuite/tr1/8_c_compatibility/cfenv/types.cc: Likewise.
4674
4675         * testsuite/tr1/8_c_compatibility/cstdint/types.cc: Fix, check in
4676         std::tr1.
4677
4678 2006-01-29  Paolo Carlini  <pcarlini@suse.de>
4679
4680         * include/tr1/cstdint: New.
4681         * include/Makefile.am: Add.
4682         * testsuite/tr1/8_c_compatibility/cstdint/types: New.
4683         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <stdint.h> checks.
4684         * docs/html/ext/tr1.html: Update.
4685         * include/Makefile.in: Regenerate.
4686         * config.h.in: Likewise.
4687         * configure: Likewise.
4688
4689         * testsuite/tr1/8_c_compatibility/cfenv/types.cc: Cosmetic tweak.
4690
4691 2006-01-29  Paolo Carlini  <pcarlini@suse.de>
4692
4693         PR libstdc++/26006
4694         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Tighten <ctype.h> and
4695         <fenv.h> checks.
4696         * configure: Regenerate.
4697
4698 2006-01-26  Paolo Carlini  <pcarlini@suse.de>
4699
4700         * include/std/std_bitset.h (bitset<>::_M_copy_to_string):
4701         Call the internal _Unchecked_set(size_t) instead of set.
4702
4703 2006-01-26  Paolo Carlini  <pcarlini@suse.de>
4704
4705         * docs/html/install.html ([Tools you will need beforehand]):
4706         Clarify that the de_DE locale is used by configure; clarify
4707         that missing localedata leads to skipped tests, not fails.
4708
4709 2006-01-26  Paolo Carlini  <pcarlini@suse.de>
4710
4711         * include/tr1/cfenv: New.
4712         * include/Makefile.am: Add.
4713         * testsuite/tr1/8_c_compatibility/cfenv/functions.cc: New.
4714         * testsuite/tr1/8_c_compatibility/cfenv/types.cc: Likewise.
4715         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <fenv.h> checks.
4716         * docs/html/ext/tr1.html: Update; add note.
4717         * include/Makefile.in: Regenerate.
4718         * config.h.in: Likewise.
4719         * configure: Likewise.  
4720
4721         * testsuite/tr1/8_c_compatibility/complex/functions.cc: Tweak.
4722         * testsuite/tr1/8_c_compatibility/cctype/functions.cc: Likewise.
4723
4724         * docs/html/faq/index.html: Fix link to tr1.html text; fix
4725         formatting.
4726
4727 2006-01-25  Paolo Carlini  <pcarlini@suse.de>
4728
4729         * include/tr1/cctype: New.
4730         * include/Makefile.am: Add.
4731         * testsuite/tr1/8_c_compatibility/cctype/functions.cc: New.
4732         * include/Makefile.in: Regenerate.
4733
4734         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): New, check for C99
4735         support to TR1, Chapter 8.
4736         * configure.ac: Use it.
4737         * include/tr1/complex: Adjust.
4738         * config.h.in: Regenerate.
4739         * configure: Likewise.
4740
4741 2006-01-25  Benjamin Kosnik  <bkoz@redhat.com>
4742
4743         * docs/html/configopts.html: Tweak docs.
4744
4745         * libsupc++/eh_personality.cc: Fix typos.
4746
4747 2006-01-24  Paolo Carlini  <pcarlini@suse.de>
4748
4749         PR libstdc++/25649
4750         * include/std/std_istream.h (operator>>(short&), operator>>(int&)):
4751         Move out of line...
4752         * include/bits/istream.tcc: ... here.
4753         * include/std/std_ostream.h (operator<<(short), operator<<(int)):
4754         Move out of line...
4755         * include/bits/ostream.tcc: ... here.
4756
4757 2006-01-24  Ed Smith-Rowland  <3dw4rd@verizon.net>
4758
4759         * docs/html/faq/index.html ([5.2]): Mention TR1 and point to
4760         paragraph [5.5], describing it.
4761         ([5.5]): New.
4762         * docs/html/ext/tr1.html: New.
4763
4764 2006-01-20  Benjamin Kosnik  <bkoz@redhat.com>
4765
4766         * acinclude.m4 (GLIBCXX_CHECK_LINKER_FEATURES): Verbose ld version
4767         reporting.  Disable --gc-sections for old binutils, by version.
4768         * configure: Regenerate.
4769
4770 2006-01-20  Joseph S. Myers  <joseph@codesourcery.com>
4771
4772         PR libstdc++/25524
4773         * include/Makefile.am: Install host-specific headers in multilib
4774         subdirectory.
4775         * include/Makefile.in: Regenerate.
4776
4777 2006-01-19  Paolo Carlini  <pcarlini@suse.de>
4778
4779         Implement list::splice (and merge) bits of N1599
4780         * include/bits/stl_list.h (list<>::_M_check_equal_allocators): New.
4781         (list<>::splice(iterator, list&), splice(iterator, list&, iterator),
4782         splice(iterator, list&, iterator, iterator)): Use it.
4783         * include/bits/list.tcc (list<>::merge(list&), merge(list&,
4784         _StrictWeakOrdering)): Likewise.
4785         * testsuite/23_containers/list/operators/5.cc: New.
4786
4787 2006-01-19  H.J. Lu  <hongjiu.lu@intel.com>
4788
4789         PR libstdc++/25797
4790         * acinclude.m4 (GLIBCXX_CHECK_LINKER_FEATURES): Remove -Werror
4791         from CFLAGS.  Check if linker really supports --gc-sections.
4792         * configure: Regenerated.
4793
4794 2006-01-18  Paul Brook  <paul@codesourcery.com>
4795
4796         * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort.
4797
4798 2006-01-18  Paolo Carlini  <pcarlini@suse.de>
4799
4800         * include/bits/allocator.h: Include <bits/cpp_type_traits.h>.
4801
4802 2006-01-18  Perry Smith  <pedz@easesoftware.net>
4803
4804         PR libstdc++/25823
4805         PR libstdc++/25824
4806         * libsupc++/eh_alloc.cc: Fix return type of memset declaration.
4807         * libsupc++/eh_globals.cc: If !_GLIBCXX_HOSTED declare malloc and free.
4808
4809 2006-01-18  Paolo Carlini  <pcarlini@suse.de>
4810
4811         * include/ext/pb_assoc/detail/value_type_adapter/
4812         value_type_adapter.hpp: Include <tr1/type_traits>.
4813         * include/ext/pb_assoc/detail/value_type_adapter/
4814         it_value_type_traits.hpp (it_value_type_traits_<>::value_type_holder):
4815         Use tr1::aligned_storage and tr1::alignment_of.
4816         (it_value_type_traits_<>::buf_t): Remove.
4817         (it_value_type_traits_<>::make_valid, recast): Adjust.
4818
4819 2006-01-16  Benjamin Kosnik  <bkoz@redhat.com>
4820
4821         PR libstdc++/25797
4822         * acinclude.m4 (GLIBCXX_CHECK_LINKER_FEATURES): Add -Werror to
4823         CFLAGS for --gc-sections test.  Correct compile test.
4824         * configure: Regenerated.
4825         
4826 2006-01-15  Paolo Carlini  <pcarlini@suse.de>
4827             Gabriel Dos Reis  <gdr@integrable-solutions.net>
4828
4829         PR libstdc++/25626
4830         * include/std/std_valarray.h (valarray(const slice_array<>&),
4831         valarray(const gslice_array<>&), valarray(const mask_array<>&),
4832         valarray(const indirect_array<>&), valarray(const _Expr<>&)):
4833         Forward to __valarray_copy_construct, not __valarray_copy.
4834         * include/bits/valarray_array.h
4835         (__valarray_copy_construct(_Array<>, _Array<>, _Array<>, size_t),
4836         __valarray_copy_construct(_Array<>, size_t, size_t, _Array<>)):
4837         New.
4838
4839 2006-01-15  Paolo Carlini  <pcarlini@suse.de>
4840
4841         * testsuite/tr1/8_c_compatibility/complex/overloads_int.cc:
4842         Fix norm test, use casts everywhere.
4843
4844 2006-01-14  Paolo Carlini  <pcarlini@suse.de>
4845
4846         * testsuite/testsuite_tr1.h: Add missing include; use std::__are_same.
4847
4848 2006-01-14  Paolo Carlini  <pcarlini@suse.de>
4849
4850         * testsuite/tr1/8_c_compatibility/complex/overloads_int.cc:
4851         Fix wrong test (don't pick by mistake the (const complex<>&, int)
4852         overload); add some.
4853
4854 2006-01-13  Paolo Carlini  <pcarlini@suse.de>
4855             Howard Hinnant  <hhinnant@apple.com>
4856
4857         * include/tr1/complex (arg, conj, imag, norm, polar, pow, real):
4858         Add, implementing TR1, 8.1.9.
4859         (__promote_2): New.
4860         * include/tr1/common.h: New, provides __promote, __promote_2.
4861         * include/Makefile.am: Add.
4862         * include/Makefile.in: Regenerate.
4863         * testsuite/testsuite_tr1.h (check_ret_type): New.
4864         * testsuite/tr1/8_c_compatibility/complex/overloads_int.cc: New.
4865         * testsuite/tr1/8_c_compatibility/complex/overloads_float.cc: New.
4866
4867 2006-01-12  Benjamin Kosnik  <bkoz@redhat.com>
4868
4869         * acinclude.m4(GLIBCXX_CHECK_LINKER_FEATURES): Enable
4870         --gc-sections in more cases.    
4871         * configure: Regenerate.
4872         * scripts/testsuite_flags.in: Remove SECTION_LDFLAGS.
4873         * scripts/testsuite_flags.in (cxxldflags): New.
4874         * testsuite/lib/libstdc++.exp (v3_target_compile): Add cxxldflags.
4875         (libstdc++_init ): Same.
4876                 
4877 2006-01-12  Jan Beulich  <jbeulich@novell.com>
4878
4879         * crossconfig.m4: Add AC_DEFINE-s for HAVE_HYPOT, HAVE_ISINF, and
4880         HAVE_ISNAN for *-*-netware*.
4881         * configure: Refresh.
4882
4883 2006-01-11  Benjamin Kosnik  <bkoz@redhat.com>
4884
4885         * acinclude.m4(GLIBCXX_CHECK_LINKER_FEATURES): Use -Wl,-z,relro if
4886         possible.  
4887         * configure: Regenerate.
4888
4889 2006-01-10  Paolo Carlini  <pcarlini@suse.de>
4890
4891         * include/tr1/complex: New file, hosts the additions to header
4892         <complex> described in TR1, Chapter 8 [tr.c99].
4893         * include/Makefile.am: Add.
4894         * include/Makefile.in: Regenerate.
4895         * testsuite/tr1/8_c_compatibility/complex/functions.cc: New.
4896
4897 2006-01-09  Paolo Carlini  <pcarlini@suse.de>
4898
4899         PR libstdc++/25658
4900         * testsuite/23_containers/deque/cons/assign/1.cc: Divide
4901         sizes by 10.
4902
4903 2006-01-08  Paolo Carlini  <pcarlini@suse.de>
4904
4905         PR libstdc++/22102 (insert as close to hint as possible)
4906         * include/bits/stl_tree.h (_Rb_tree<>::_M_insert_lower,
4907         _M_insert_equal_lower): New.
4908         (_M_insert_equal(iterator, const _Val&),
4909         _M_insert_equal(const_iterator, const _Val&)): Use the above.
4910         * docs/html/ext/howto.html: Add an entry for DR 233.
4911         * testsuite/23_containers/multiset/modifiers/insert/22102.cc: New.
4912         * testsuite/23_containers/multimap/modifiers/insert/22102.cc: New.
4913
4914         * testsuite/23_containers/set/insert/: Move...
4915         * testsuite/23_containers/set/modifiers/insert/: ...here.
4916         * testsuite/23_containers/map/insert/: Move...
4917         * testsuite/23_containers/map/modifiers/insert/: ...here.
4918         * testsuite/23_containers/multiset/insert/: Move...
4919         * testsuite/23_containers/multiset/modifiers/insert/: ...here.
4920
4921 2006-01-06  Paolo Carlini  <pcarlini@suse.de>
4922
4923         * include/bits/stl_tree.h (_Rb_tree<>::insert_unique): Rename
4924         to _M_insert_unique.
4925         (_Rb_tree<>::insert_equal): Rename to _M_insert_equal.
4926         * include/bits/stl_map.h (class map<>): Update callers.
4927         * include/bits/stl_set.h (class set<>): Likewise.
4928         * include/bits/stl_multimap.h (class multimap<>): Likewise.
4929         * include/bits/stl_multiset.h (class multiset<>): Likewise.
4930
4931 2006-01-06  Paolo Carlini  <pcarlini@suse.de>
4932
4933         * include/bits/stl_bvector.h (vector<bool>::erase(iterator,
4934         iterator)): Just use _M_erase_at_end.
4935
4936 2006-01-06  Paolo Carlini  <pcarlini@suse.de>
4937
4938         * include/bits/stl_bvector.h (class vector<bool>): Move all the
4939         helpers under protected access mode, consistently with the primary
4940         vector template.
4941         (vector<bool>::_M_erase_at_end): Add.
4942         (erase(iterator, iterator), clear, resize, _M_fill_assign,
4943         _M_assign_aux): Use it.
4944         * testsuite/23_containers/vector/bool/modifiers/erase/1.cc: New.
4945
4946 2006-01-06  Paolo Carlini  <pcarlini@suse.de>
4947
4948         Implement Option 3 of DR 431 for vector<bool>.
4949         * include/bits/stl_bvector.h (class _Bvector_base): Change to
4950         a struct, consistently with the primary vector template.
4951         (class vector<bool>): Adjust to protected inheritance, tidy
4952         typedefs.
4953         (_Bvector_base<>::_M_get_Bit_allocator): Add.
4954         (vector<bool>::vector(const vector&)): Use it.
4955         (_Bvector_base<>::get_allocator): Tidy.
4956         (vector<bool>::swap): Use __alloc_swap.
4957         * testsuite/23_containers/vector/bool/modifiers/swap/1.cc: New.
4958         * testsuite/23_containers/vector/bool/modifiers/swap/2.cc: New.
4959
4960 2006-01-05  Paolo Carlini  <pcarlini@suse.de>
4961         
4962         * testsuite/testsuite_hooks.h (test_tm(unsigned)): Change to
4963         take all the tm members.
4964         * testsuite/testsuite_hooks.cc (test_tm): Adjust.
4965         * testsuite/22_locale/time_put/put/wchar_t/10.cc: Update.
4966         * testsuite/22_locale/time_put/put/wchar_t/1.cc: Likewise.
4967         * testsuite/22_locale/time_put/put/wchar_t/2.cc: Likewise.
4968         * testsuite/22_locale/time_put/put/wchar_t/3.cc: Likewise.
4969         * testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise.
4970         * testsuite/22_locale/time_put/put/wchar_t/5.cc: Likewise.
4971         * testsuite/22_locale/time_put/put/wchar_t/6.cc: Likewise.
4972         * testsuite/22_locale/time_put/put/wchar_t/7.cc: Likewise.
4973         * testsuite/22_locale/time_put/put/wchar_t/8.cc: Likewise.
4974         * testsuite/22_locale/time_put/put/wchar_t/9.cc: Likewise.
4975         * testsuite/22_locale/time_put/put/wchar_t/17038.cc: Likewise.
4976         * testsuite/22_locale/time_put/put/char/10.cc: Likewise.
4977         * testsuite/22_locale/time_put/put/char/1.cc: Likewise.
4978         * testsuite/22_locale/time_put/put/char/2.cc: Likewise.
4979         * testsuite/22_locale/time_put/put/char/3.cc: Likewise.
4980         * testsuite/22_locale/time_put/put/char/4.cc: Likewise.
4981         * testsuite/22_locale/time_put/put/char/5.cc: Likewise.
4982         * testsuite/22_locale/time_put/put/char/6.cc: Likewise.
4983         * testsuite/22_locale/time_put/put/char/7.cc: Likewise.
4984         * testsuite/22_locale/time_put/put/char/8.cc: Likewise.
4985         * testsuite/22_locale/time_put/put/char/9.cc: Likewise.
4986         * testsuite/22_locale/time_put/put/char/17038.cc: Likewise.
4987         * testsuite/22_locale/time_get/get_year/wchar_t/1.cc: Likewise.
4988         * testsuite/22_locale/time_get/get_year/wchar_t/3.cc: Likewise.
4989         * testsuite/22_locale/time_get/get_year/char/1.cc: Likewise.
4990         * testsuite/22_locale/time_get/get_year/char/3.cc: Likewise.
4991         * testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Likewise.
4992         * testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Likewise.
4993         * testsuite/22_locale/time_get/get_monthname/char/1.cc: Likewise.
4994         * testsuite/22_locale/time_get/get_monthname/char/2.cc: Likewise.
4995         * testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Likewise.
4996         * testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Likewise.
4997         * testsuite/22_locale/time_get/get_weekday/wchar_t/3.cc: Likewise.
4998         * testsuite/22_locale/time_get/get_weekday/char/1.cc: Likewise.
4999         * testsuite/22_locale/time_get/get_weekday/char/2.cc: Likewise.
5000         * testsuite/22_locale/time_get/get_weekday/char/3.cc: Likewise.
5001         * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
5002         * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
5003         * testsuite/22_locale/time_get/get_date/wchar_t/1.cc: Likewise.
5004         * testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Likewise.
5005         * testsuite/22_locale/time_get/get_date/wchar_t/3.cc: Likewise.
5006         * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
5007         * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
5008         * testsuite/22_locale/time_get/get_date/char/1.cc: Likewise.
5009         * testsuite/22_locale/time_get/get_date/char/2.cc: Likewise.
5010         * testsuite/22_locale/time_get/get_date/char/3.cc: Likewise.
5011         * testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Likewise.
5012         * testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Likewise.
5013         * testsuite/22_locale/time_get/get_time/wchar_t/3.cc: Likewise.
5014         * testsuite/22_locale/time_get/get_time/wchar_t/4.cc: Likewise.
5015         * testsuite/22_locale/time_get/get_time/char/1.cc: Likewise.
5016         * testsuite/22_locale/time_get/get_time/char/2.cc: Likewise.
5017         * testsuite/22_locale/time_get/get_time/char/3.cc: Likewise.
5018         * testsuite/22_locale/time_get/get_time/char/4.cc: Likewise.
5019
5020 2006-01-05  Paolo Carlini  <pcarlini@suse.de>
5021         
5022         * testsuite/testsuite_hooks.h (test_tm(unsigned)): New.
5023         * testsuite/testsuite_hooks.cc (test_tm(unsigned)): Define.
5024         * testsuite/22_locale/time_put/put/wchar_t/10.cc: Use it.
5025         * testsuite/22_locale/time_put/put/wchar_t/1.cc: Likewise.
5026         * testsuite/22_locale/time_put/put/wchar_t/2.cc: Likewise.
5027         * testsuite/22_locale/time_put/put/wchar_t/3.cc: Likewise.
5028         * testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise.
5029         * testsuite/22_locale/time_put/put/wchar_t/5.cc: Likewise.
5030         * testsuite/22_locale/time_put/put/wchar_t/6.cc: Likewise.
5031         * testsuite/22_locale/time_put/put/wchar_t/7.cc: Likewise.
5032         * testsuite/22_locale/time_put/put/wchar_t/8.cc: Likewise.
5033         * testsuite/22_locale/time_put/put/wchar_t/9.cc: Likewise.
5034         * testsuite/22_locale/time_put/put/wchar_t/17038.cc: Likewise.
5035         * testsuite/22_locale/time_put/put/char/10.cc: Likewise.
5036         * testsuite/22_locale/time_put/put/char/1.cc: Likewise.
5037         * testsuite/22_locale/time_put/put/char/2.cc: Likewise.
5038         * testsuite/22_locale/time_put/put/char/3.cc: Likewise.
5039         * testsuite/22_locale/time_put/put/char/4.cc: Likewise.
5040         * testsuite/22_locale/time_put/put/char/5.cc: Likewise.
5041         * testsuite/22_locale/time_put/put/char/6.cc: Likewise.
5042         * testsuite/22_locale/time_put/put/char/7.cc: Likewise.
5043         * testsuite/22_locale/time_put/put/char/8.cc: Likewise.
5044         * testsuite/22_locale/time_put/put/char/9.cc: Likewise.
5045         * testsuite/22_locale/time_put/put/char/17038.cc: Likewise.
5046         * testsuite/22_locale/time_get/get_year/wchar_t/1.cc: Likewise.
5047         * testsuite/22_locale/time_get/get_year/wchar_t/3.cc: Likewise.
5048         * testsuite/22_locale/time_get/get_year/char/1.cc: Likewise.
5049         * testsuite/22_locale/time_get/get_year/char/3.cc: Likewise.
5050         * testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Likewise.
5051         * testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Likewise.
5052         * testsuite/22_locale/time_get/get_monthname/char/1.cc: Likewise.
5053         * testsuite/22_locale/time_get/get_monthname/char/2.cc: Likewise.
5054         * testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Likewise.
5055         * testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Likewise.
5056         * testsuite/22_locale/time_get/get_weekday/wchar_t/3.cc: Likewise.
5057         * testsuite/22_locale/time_get/get_weekday/char/1.cc: Likewise.
5058         * testsuite/22_locale/time_get/get_weekday/char/2.cc: Likewise.
5059         * testsuite/22_locale/time_get/get_weekday/char/3.cc: Likewise.
5060         * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
5061         * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
5062         * testsuite/22_locale/time_get/get_date/wchar_t/1.cc: Likewise.
5063         * testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Likewise.
5064         * testsuite/22_locale/time_get/get_date/wchar_t/3.cc: Likewise.
5065         * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
5066         * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
5067         * testsuite/22_locale/time_get/get_date/char/1.cc: Likewise.
5068         * testsuite/22_locale/time_get/get_date/char/2.cc: Likewise.
5069         * testsuite/22_locale/time_get/get_date/char/3.cc: Likewise.
5070         * testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Likewise.
5071         * testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Likewise.
5072         * testsuite/22_locale/time_get/get_time/wchar_t/3.cc: Likewise.
5073         * testsuite/22_locale/time_get/get_time/wchar_t/4.cc: Likewise.
5074         * testsuite/22_locale/time_get/get_time/char/1.cc: Likewise.
5075         * testsuite/22_locale/time_get/get_time/char/2.cc: Likewise.
5076         * testsuite/22_locale/time_get/get_time/char/3.cc: Likewise.
5077         * testsuite/22_locale/time_get/get_time/char/4.cc: Likewise.
5078
5079 2006-01-04  Paolo Carlini  <pcarlini@suse.de>
5080
5081         * include/ext/sso_string_base.h (__sso_string_base<>::_M_dataplus):
5082         Use _CharT_alloc_type as base class.
5083         (_M_get_allocator, _M_swap, _M_create, _M_destroy): Adjust.
5084         * include/ext/vstring.h (get_allocator): Tidy.
5085
5086 2006-01-04  Paolo Carlini  <pcarlini@suse.de>
5087
5088         Implement Option 3 of DR 431 for all the containers.
5089         * include/bits/allocator.h (struct __alloc_swap): Add, swaps
5090         allocators, optimized to nothing in case they are empty.
5091         * include/bits/stl_deque.h (deque<>::swap): Use it.
5092         * include/bits/stl_list.h (list<>::swap): Likewise.
5093         * include/bits/stl_tree.h (_Rb_tree<>::swap): Likewise.
5094         * include/bits/stl_vector.h (vector<>::swap): Likewise.
5095         * include/tr1/hashtable (hashtable<>::swap): Likewise.
5096         * include/ext/rc_string_base.h (__rc_string_base<>::_M_swap):
5097         Likewise.
5098         * include/ext/sso_string_base.h (__sso_string_base<>::_M_swap):
5099         Likewise.
5100         * include/ext/vstring_util.h (__vstring_utility<>::_Alloc_hider):
5101         Clean-up (now vstring uses the generic __alloc_swap facility).
5102         * include/tr1/unordered_map: Adjust includes.
5103         * include/tr1/unordered_set: Likewise.
5104         * docs/html/ext/howto.html: Add an entry for DR 431.
5105         * testsuite/23_containers/deque/modifiers/swap.cc: Move to...
5106         * testsuite/23_containers/deque/modifiers/swap/1.cc: ... here.          
5107         * testsuite/23_containers/deque/modifiers/swap/2.cc: New.
5108         * testsuite/23_containers/deque/modifiers/swap/3.cc: New.
5109         * testsuite/23_containers/list/modifiers/swap.cc: Move to...
5110         * testsuite/23_containers/list/modifiers/swap/1.cc: ... here.           
5111         * testsuite/23_containers/list/modifiers/swap/2.cc: New.
5112         * testsuite/23_containers/list/modifiers/swap/3.cc: New.
5113         * testsuite/23_containers/vector/modifiers/swap.cc: Move to...
5114         * testsuite/23_containers/vector/modifiers/swap/1.cc: ... here.         
5115         * testsuite/23_containers/vector/modifiers/swap/2.cc: New.
5116         * testsuite/23_containers/vector/modifiers/swap/3.cc: New.
5117         * testsuite/23_containers/set/modifiers/swap.cc: Move to...
5118         * testsuite/23_containers/set/modifiers/swap/1.cc: ... here.            
5119         * testsuite/23_containers/set/modifiers/swap/2.cc: New.
5120         * testsuite/23_containers/set/modifiers/swap/3.cc: New.
5121         * testsuite/23_containers/map/modifiers/swap.cc: Move to...
5122         * testsuite/23_containers/map/modifiers/swap/1.cc: ... here.            
5123         * testsuite/23_containers/map/modifiers/swap/2.cc: New.
5124         * testsuite/23_containers/map/modifiers/swap/3.cc: New.
5125         * testsuite/23_containers/multiset/modifiers/swap.cc: Move to...
5126         * testsuite/23_containers/multiset/modifiers/swap/1.cc: ... here.               
5127         * testsuite/23_containers/multiset/modifiers/swap/2.cc: New.
5128         * testsuite/23_containers/multiset/modifiers/swap/3.cc: New.
5129         * testsuite/23_containers/multimap/modifiers/swap.cc: Move to...
5130         * testsuite/23_containers/multimap/modifiers/swap/1.cc: ... here.               
5131         * testsuite/23_containers/multimap/modifiers/swap/2.cc: New.
5132         * testsuite/23_containers/multimap/modifiers/swap/3.cc: New.
5133         * testsuite/tr1/6_containers/unordered/swap/unordered_set/1.cc: New.    
5134         * testsuite/tr1/6_containers/unordered/swap/unordered_set/2.cc: New.
5135         * testsuite/tr1/6_containers/unordered/swap/unordered_map/1.cc: New.    
5136         * testsuite/tr1/6_containers/unordered/swap/unordered_map/2.cc: New.
5137         * testsuite/tr1/6_containers/unordered/swap/unordered_multiset/1.cc: New.       
5138         * testsuite/tr1/6_containers/unordered/swap/unordered_multiset/2.cc: New.
5139         * testsuite/tr1/6_containers/unordered/swap/unordered_multimap/1.cc: New.       
5140         * testsuite/tr1/6_containers/unordered/swap/unordered_multimap/2.cc: New.
5141
5142 2006-01-03  Paolo Carlini  <pcarlini@suse.de>
5143
5144         * include/bits/stl_list.h (_List_base<>::_M_get_Node_allocator): Add.
5145         (_M_get_Tp_allocator, get_allocator): Tidy.
5146         (list<>::list(const list&), insert(iterator, size_type, const
5147         value_type&), insert(iterator, _InputIterator, _InputIterator)):
5148         Use _M_get_Node_allocator.
5149         * include/bits/stl_tree.h (_Rb_tree<>::_M_get_Node_allocator()): Add.
5150         (_Rb_tree(const _Rb_tree<>&): Use it.
5151         * include/bits/stl_deque.h (_Deque_base<>::_M_get_map_allocator,
5152         get_allocator): Tidy.
5153         * include/bits/stl_vector.h (_Vector_base<>::get_allocator): Tidy.
5154         * testsuite/23_containers/map/operators/1_neg.cc: Adjust dg-error
5155         line numbers.
5156         * testsuite/23_containers/set/operators/1_neg.cc: Likewise.
5157         
5158         * testsuite/testsuite_allocator.h (uneq_allocator<>::swap): Fix.
5159
5160         * testsuite/testsuite_allocator.h (class uneq_allocator): A simple
5161         non-empty testing allocator which can be endowed of a "personality"
5162         at construction time.
5163
5164 2006-01-03  Paolo Carlini  <pcarlini@suse.de>
5165
5166         * testsuite/27_io/basic_stringstream/str/char/1.cc: Initialize vars.
5167         * testsuite/27_io/basic_stringstream/str/wchar_t/1.cc: Likewise.
5168         * testsuite/27_io/basic_istringstream/str/char/1.cc: Likewise, tidy.
5169         * testsuite/27_io/basic_istringstream/str/wchar_t/1.cc: Likewise.
5170
5171 2006-01-02  Mark Mitchell  <mark@codesourcery.com>
5172
5173         * src/Makefile.am (LTLDFLAGS): New variable. 
5174         (CXXLINK): Use LTLDFLAGS.
5175         * src/Makefile.in: Regenerated.
5176         * libsupc++/Makefile.am (LTLDFLAGS): New variable. 
5177         (CXXLINK): Use LTLDFLAGS.
5178         * libsupc++/Makefile.in: Regenerated.
5179
5180 2006-01-02  Paolo Carlini  <pcarlini@suse.de>
5181
5182         PR libstdc++/24645
5183         * include/std/std_istream.h (basic_istream<>::_M_extract): New.
5184         (operator>>(bool&), operator>>(short&), operator>>(unsigned short&),
5185         operator>>(int&), operator>>(unsigned int&), operator>>(long&),
5186         operator>>(unsigned long&), operator>>(long long&), operator>>
5187         (unsigned long long&), operator>>(float&), operator>>(double&),
5188         operator>>(long double&), operator>>(void*&)): Use it.
5189         * include/bits/istream.tcc (basic_istream<>::_M_extract): Define.
5190         * include/std/std_ostream.h (basic_ostream<>::_M_insert): New.
5191         (operator<<(long), operator<<(unsigned long), operator<<(bool),
5192         operator<<(short), operator<<(unsigned short), operator<<(int),
5193         operator<<(unsigned int), operator<<(long long), operator<<
5194         (unsigned long long), operator<<(double), operator<<(float),
5195         operator<<(long double), operator<<(const void*): Use it.
5196         * include/bits/ostream.tcc (basic_ostream<>::_M_insert): Define.
5197         * src/istream-inst.cc: Add _M_extract instantiations.
5198         * src/ostream-inst.cc: Add _M_insert instantiations.
5199         * config/abi/pre/gnu.ver: Export the new symbols @GLIBCXX_3.4.7;
5200         detail existing @GLIBCXX_3.4 exports of basic_ostream, num_put,
5201         money_put, etc., symbols to avoid exporting _M_insert symbols
5202         @GLIBCXX_3.4.