OSDN Git Service

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