OSDN Git Service

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