OSDN Git Service

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