OSDN Git Service

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