OSDN Git Service

2006-07-20 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / ChangeLog
1 2006-07-20  Benjamin Kosnik  <bkoz@redhat.com>
2             Jakub Jelinek  <jakub@redhat.com>
3         
4         PR libstdc++/19664 round 1
5         * acinclude.m4 (GLIBCXX_ENABLE_VISIBILITY): Check it.
6         * configure.ac: Use it.
7         * configure: Regenerate.
8         * docs/html/configopts.html: Document it.
9         * include/Makefile.am: Slip in to c++config.
10         * include/Makefile.in: Regenerate.
11         * include/bits/c++config (_GLIBCXX_VISIBILITY): New.
12         (_GLIBCXX_BEGIN_NAMESPACE): Use it.
13         (_GLIBCXX_END_NAMESPACE): Use it.
14         (_GLIBCXX_BEGIN_NESTED_NAMESPACE): Use it.
15         (_GLIBCXX_END_NESTED_NAMESPACE): Use it.                
16         * src/debug.cc: Mark __gnu_internal namespace with hidden
17         visibility attribute.
18         * src/ext-inst.cc: Same.
19         * src/globals_io.cc: Same.
20         * src/globals_locale.cc: Same.
21         * src/ios_init.cc: Same.
22         * src/locale.cc: Same.
23         * src/mt_allocator.cc: Same.
24         * src/pool_allocator.cc: Same.
25
26 2006-07-16  Paolo Carlini  <pcarlini@suse.de>
27
28         PR libstdc++/28277 (partial: valarray bits)
29         * include/std/std_valarray.h (valarray<>::shift(int),
30         valarray<>::cshift(int)): Avoid __builtin_alloca with no limit,
31         do the work in place.
32         * testsuite/26_numerics/valarray/28277.cc: New.
33
34 2006-07-15  Paolo Carlini  <pcarlini@suse.de>
35
36         PR libstdc++/28277 (partial: ostream bits 1)
37         * include/bits/ostream.tcc (operator<<(basic_ostream<_CharT>&,
38         const char*)): Avoid __builtin_alloca with no limit in the
39         widening.
40         * testsuite/27_io/basic_ostream/inserters_character/wchar_t/
41         28277-1.cc: New.
42
43 2006-07-14  Benjamin Kosnik  <bkoz@redhat.com>
44
45         * acinclude.m4 (GLIBCXX_ENABLE_ATOMIC_BUILTINS): New.
46         * configure.ac: Use it.
47         * configure: Regenerated.
48         * config.h.in: Regenerated.
49         * configure.host: Simplify.
50         * include/bits/atomicity.h: Adjust macros.
51         * config/cpu/generic/atomicity.h: Move...
52         * config/cpu/generic/atomicity_mutex: New.
53         * config/cpu/generic/atomicity_mutex/atomicity.h: ...here.
54         * config/cpu/generic/atomic_builtins: Rename...
55         * config/cpu/generic/atomicity_builtins: ...to this.
56         * config/cpu/generic/atomicity_builtins/atomicity.h: Moved.
57         * config/cpu/mips/atomicity.h: Comment MIPS II requirement.
58
59         * scripts/testsuite_flags.in: Make --cxxflags reflect CXXFLAGS.
60         
61 2006-07-14  Paolo Carlini  <pcarlini@suse.de>
62
63         * include/tr1/random (minstd_rand0, minstd_rand, ranlux3, ranlux4):
64         Use unsigned long as implementation-defined type.
65
66 2006-07-14  Paolo Carlini  <pcarlini@suse.de>
67
68         * include/tr1/random.tcc (struct _To_Unsigned_Type): Add.
69         (subtract_with_carry<>::seed(_Gen&, false_type)): Use an
70         unsigned type in the loop, fix factor multiplier, take g
71         invocations modulo 2^32.
72
73         * include/tr1/random.tcc (subtract_with_carry<>::
74         seed(unsigned long)): Fix value == 0 special case.
75
76         * include/tr1/random (struct _Shift): Fix for large shifts.
77
78 2006-07-13  Paolo Carlini  <pcarlini@suse.de>
79
80         * testsuite/performance/21_strings/string_copy_cons_and_dest.cc: New.
81
82 2006-07-13  Benjamin Kosnik  <bkoz@redhat.com>
83
84         * include/Makefile.am (pch*_output_anchor): Add.
85         (pch*_output): Use.
86         (CLEANFILES): Use.
87         * include/Makefile.in: Regenerate.
88         
89         * scripts/check_performance: Be verbose on compile error.
90
91 2006-07-12  Benjamin Kosnik  <bkoz@redhat.com>
92
93         * include/Makefile.am: Revert last change.
94         * include/Makefile.in: Same.
95
96 2006-07-12  Benjamin Kosnik  <bkoz@redhat.com>
97
98         * include/Makefile.am (pch_output): Don't precompile extc++.h.
99         (pch_output_dirs): Same.
100         * include/Makefile.in: Regenerate.
101
102         * testsuite/lib/libstdc++.exp: Test PCH with stdtr1c++.h.
103         
104 2006-07-11  Paolo Carlini  <pcarlini@suse.de>
105
106         * include/ext/codecvt_specializations.h: Fix typo in commit
107         for libstdc++/28290.
108
109 2006-07-11  Paolo Carlini  <pcarlini@suse.de>
110
111         * include/bits/locale_facets.tcc (collate<>::do_transform(
112         const _CharT*, const _CharT*)): Simplify previous fix for
113         libstdc++/28277, always allocate memory dynamically.
114
115 2006-07-11  Paolo Carlini  <pcarlini@suse.de>
116
117         PR libstdc++/28344
118         * include/tr1/random (gamma_distribution<>::
119         gamma_distribution(const result_type&)): Don't use __alpha as
120         parameter name, a predefined macro on Alpha systems.
121
122 2006-07-11  Paolo Carlini  <pcarlini@suse.de>
123
124         PR libstdc++/28290
125         * include/ext/codecvt_specializations.h: Fix, adding missing
126         includes and guards.
127
128 2006-07-11  Paolo Carlini  <pcarlini@suse.de>
129
130         PR libstdc++/28277 (partial: collate bits)
131         * include/bits/locale_facets.tcc (collate<>::do_transform(
132         const _CharT*, const _CharT*)): Avoid __builtin_alloca with no
133         limit; also avoid multiple calls (in a loop).
134         * testsuite/22_locale/collate/transform/char/28277.cc: New.
135         * testsuite/22_locale/collate/transform/wchar_t/28277.cc: Likewise.
136
137 2006-07-10  Mike Stump  <mrs@apple.com>
138
139         * libsupc++/eh_globals.cc (~__eh_globals_init): Unset _M_init.
140
141 2006-07-10  Benjamin Kosnik  <bkoz@redhat.com>
142
143         PR libstdc++/15448
144         * include/Makefile.am: Clean up pch rules.
145         * include/Makefile.in: Regenerate.
146
147 2006-07-09  Paolo Carlini  <pcarlini@suse.de>
148
149         * include/bits/locale_facets.tcc (__int_to_char<>(_CharT*,
150         long, const _CharT*, ios_base::fmtflags), __int_to_char<>(_CharT*,
151         unsigned long, const _CharT*, ios_base::fmtflags),
152         __int_to_char<>(_CharT*, long long, const _CharT*, ios_base::fmtflags),
153         __int_to_char<>(_CharT*, unsigned long long, const _CharT*,
154         ios_base::fmtflags)): Remove.
155         (__int_to_char<>(_CharT*, _ValueT, const _CharT*, ios_base::fmtflags,
156         bool)): Adjust.
157         (num_put<>::_M_insert_int(_OutIter, ios_base&, _CharT, _ValueT)):
158         Likewise.
159
160 2006-07-06  Paolo Carlini  <pcarlini@suse.de>
161
162         * include/tr1/random (class gamma_distribution<>): Add.
163         * include/tr1/random.tcc (gamma_distribution<>::operator(),
164         operator<<(std::basic_ostream<>&, const gamma_distribution<>&)):
165         Define.
166         * testsuite/tr1/5_numerical_facilities/random/gamma_distribution/
167         requirements/typedefs.cc: New.
168
169 2006-07-06  Benjamin Kosnik  <bkoz@redhat.com>
170
171         * testsuite/util/regression/trait/assoc/trait.hpp: Format.
172         * testsuite/util/regression/rand/priority_queue/
173         rand_regression_test.hpp: Same.
174         * testsuite/util/regression/rand/assoc/rand_regression_test.hpp: Same.
175         * testsuite/util/regression/rand/
176         assoc/container_rand_regression_test.hpp: Same.
177         * testsuite/util/regression/priority_queue/common_type.hpp: Same.
178         * testsuite/util/regression/assoc/common_type.hpp: Same.
179         * testsuite/util/regression/basic_type.hpp: Same.
180
181 2006-07-05  Benjamin Kosnik  <bkoz@redhat.com>  
182
183         * include/Makefile.am (pch_output): New.
184         (clean-local): Use it.
185         * include/Makefile.in: Regenerate.
186
187 2006-07-04  Paolo Carlini  <pcarlini@suse.de>
188
189         * include/tr1/random (_Adaptor<>::operator()()): Cast 1 to
190         result_type.
191         (variate_generator<>::operator()(),
192         variate_generator<>::operator()(_Tp)): Inline.
193
194         * include/tr1/random: Minor cosmetic changes.
195
196 2006-07-03  Paolo Carlini  <pcarlini@suse.de>
197
198         * include/ext/rc_string_base.h (__rc_string_base::_S_max_size):
199         Adjust, take into account rounding in _M_create.
200         (__rc_string_base::_M_create): Add early _S_max_size check.
201
202 2006-07-03  Ian Lance Taylor  <ian@airs.com>
203             Paolo Carlini  <pcarlini@suse.de>
204
205         * include/ext/rc_string_base.h (__rc_string_base::_S_max_size):
206         Increase by a factor of two.
207         * include/ext/sso_string_base.h (__sso_string_base::_S_max_size):
208         Likewise.
209
210 2006-07-03  Paolo Carlini  <pcarlini@suse.de>
211
212         * include/ext/sso_string_base.h (__sso_string_base::_M_create): Never
213         allocate a string bigger than _S_max_size.
214
215 2006-06-29  Benjamin Kosnik  <bkoz@redhat.com>
216
217         * include/Makefile.am (pch1_input, pch1_output_builddir,
218         pch1_outputj_installdir, pch1_source): Move from pch_*.
219         (pch2_input, pch2_output_builddir,
220         pch2_output_installdir, pch2_source): Clone for ext.
221         (pch3_input, pch3_output_builddir,
222         pch3_output_installdir, pch3_source): Clone for tr1.
223         (install-pch): Same.
224         * include/Makefile.in: Regenerate.
225
226         * include/precompiled: New directory.
227         * include/stdc++.h: Move...
228         * include/precompiled/stdc++.h: ... here.               
229         * include/precompiled/stdtr1c++.h: New.
230         * include/precompiled/extc++.h: New.
231
232         * testsuite/lib/libstdc++.exp (libstdc++_init): Set PCH_CXXFLAGS
233         to -include bits/stdtr1c++.h.
234
235 2006-06-29  Benjamin Kosnik  <bkoz@redhat.com>
236
237         * testsuite/lib/libstdc++.exp (v3_target_compile): Set timeout to
238         600.
239
240 2006-06-27  Benjamin Kosnik  <bkoz@redhat.com>
241
242         * testsuite/util/regression/rand/priority_queue/
243         rand_regression_test.hpp: Revert.
244
245 2006-06-27  Benjamin Kosnik  <bkoz@redhat.com>
246
247         * include/ext/typelist.h (typelist_append): To append_typelist. 
248         (typelist): To node.
249         Enclose in namespace typelist.
250         * testsuite/util/testsuite_common_types.h: Adjust names, namespaces.
251         * testsuite/performance/23_containers/find/map.cc: Same.
252         * testsuite/performance/23_containers/create/map.cc: Same.
253         * testsuite/performance/23_containers/insert_erase/associative.cc: 
254         Same.
255         * testsuite/performance/23_containers/insert/sequence.cc: Same.
256         * testsuite/performance/23_containers/insert/associative.cc: Same.
257         * testsuite/performance/23_containers/create_from_sorted/set.cc: Same.
258         * testsuite/performance/23_containers/index/map.cc: Same.
259         * testsuite/performance/23_containers/insert_from_sorted/set.cc: Same.
260         * testsuite/performance/23_containers/create_sort/list.cc: Same.
261         * testsuite/performance/23_containers/sort_search/list.cc: Same.
262         * testsuite/performance/23_containers/producer_consumer/sequence.cc: 
263         Same.
264         * testsuite/performance/23_containers/producer_consumer/associative.cc:
265         Same.
266
267 2006-06-26  Benjamin Kosnik  <bkoz@redhat.com>
268
269         * testsuite/ext/pb_ds/regression/trie_no_data_map_rand.cc:
270         Reduce iterations by half.
271         * testsuite/ext/pb_ds/regression/hash_data_map_rand.cc: Same.
272         * testsuite/ext/pb_ds/regression/hash_no_data_map_rand.cc: Same.
273         * testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc: Same.
274         * testsuite/ext/pb_ds/regression/list_update_no_data_map_rand.cc: Same.
275         * testsuite/ext/pb_ds/regression/priority_queue_rand.cc: Same.
276         * testsuite/ext/pb_ds/regression/tree_data_map_rand.cc: Same.
277         * testsuite/ext/pb_ds/regression/tree_no_data_map_rand.cc: Same.
278         * testsuite/ext/pb_ds/regression/trie_data_map_rand.cc: Same.
279
280         * testsuite/util/regression/rand/assoc/rand_regression_test.hpp:
281         Set probability of compare from 1 to 0.25.
282         * testsuite/util/regression/rand/priority_queue/
283         rand_regression_test.hpp: Same.
284
285 2006-06-25  Paolo Carlini  <pcarlini@suse.de>
286
287         * include/tr1/random (operator<<(std::basic_ostream<>&,
288         const linear_congruential<>&), operator>>(std::basic_istream<>&,
289         linear_congruential<>&), operator<<(std::basic_ostream<>&,
290         const mersenne_twister<>&), operator>>(std::basic_istream<>&,
291         mersenne_twister<>&), operator<<(std::basic_ostream<>&,
292         const subtract_with_carry<>&), operator>>(std::basic_istream<>&,
293         subtract_with_carry<>&), operator<<(std::basic_ostream<>&,
294         const discard_block<>&), operator>>(std::basic_istream<>&,
295         discard_block<>&), operator<<(std::basic_ostream<>&,
296         const xor_combine<>&), operator>>(std::basic_istream<>&,
297         xor_combine<>&), operator<<(std::basic_ostream<>&,
298         const uniform_int<>&), operator>>(std::basic_istream<>&,
299         uniform_int<>&), operator<<(std::basic_ostream<>&,
300         const bernoulli_distribution&), operator<<(std::basic_ostream<>&,
301         const geometric_distribution<>&), operator<<(std::basic_ostream<>&,
302         const uniform_real<>&), operator>>(std::basic_istream<>&,
303         uniform_real<>&), operator<<(std::basic_ostream<>&,
304         const exponential_distribution<>&), operator<<(std::basic_ostream<>&,
305         const normal_distribution<>&), operator>>(std::basic_istream<>&,
306         normal_distribution<>&)): Redo per TR1 specs; move out of line...
307         * include/tr1/random.tcc: ... here.
308
309 2006-06-24  Paolo Carlini  <pcarlini@suse.de>
310
311         * include/tr1/random (class normal_distribution<>): Add.
312         * include/tr1/random.tcc (normal_distribution<>::operator()): Define.
313         
314         * include/tr1/random.tcc (struct _Max): Remove, "inline" in the
315         only user, mersenne_twister<>::max().
316
317         * include/tr1/random.tcc (struct _Shift): Move...
318         * include/tr1/random: ... here.
319
320         * include/tr1/random.tcc (linear_congruential<>::
321         linear_congruential(unsigned long), linear_congruential<>::
322         linear_congruential(_Gen&), mersenne_twister<>::max())): Move inline...
323         * include/tr1/random: ... here.
324
325         * include/tr1/random (exponential_distribution<>::
326         exponential_distribution(const result_type&)): Add missing
327         _GLIBCXX_DEBUG_ASSERT.
328
329         * testsuite/tr1/5_numerical_facilities/random/
330         exponential_distribution/requirements/typedefs.cc: New.
331         * testsuite/tr1/5_numerical_facilities/random/
332         normal_distribution/requirements/typedefs.cc: Likewise.
333         * testsuite/tr1/5_numerical_facilities/random/
334         bernoulli_distribution/requirements/typedefs.cc: Likewise.
335         * testsuite/tr1/5_numerical_facilities/random/
336         geometric_distribution/requirements/typedefs.cc: Likewise.
337
338 2006-06-23  Benjamin Kosnik  <bkoz@redhat.com>
339
340         PR libstdc++/27984
341         * testsuite/lib/libstdc++.exp (libstdc++_init): Adjust
342         testing includes.
343         * docs/html/test.html: Adjust for testsuite changes.
344         
345 2006-06-22  Jonathan Lennox  <lennox@cs.columbia.edu>
346             Paolo Carlini  <pcarlini@suse.de>
347
348         * include/ext/pb_ds/detail/resize_policy/
349         hash_prime_size_policy_imp.hpp: Cast to size_t instead.
350
351 2006-06-22  Ami Tavory  <atavory@gmail.com>
352
353         * include/ext/pb_ds/detail/resize_policy/
354         hash_prime_size_policy_imp.hpp: Fix for 64-bit machines.
355
356 2006-06-21  Paolo Carlini  <pcarlini@suse.de>
357
358         * include/bits/postypes.h (operator==(const fpos<>&, const fpos<>&),
359         operator!=(const fpos<>&, const fpos<>&)): Add.
360         * testsuite/27_io/fpos/mbstate_t/6.cc: New.
361
362 2006-06-21  Mark Mitchell  <mark@codesourcery.com>
363
364         * acinclude.m4 (GLIBCXX_EXPORT_INSTALL_INFO): When
365         cross-compiling, put headers in $prefix/$target/include/c++.
366         * configure: Regenerated.
367
368 2006-06-20  Paolo Carlini  <pcarlini@suse.de>
369
370         * include/tr1/random.tcc (struct _Private::_Mod_w<>,
371         _Private::__mod_w<>): Remove.
372         (struct _Private::_Shift<>): New.
373         (struct _Private::_Max_w<>): Rename to _Max, use the latter.
374         (mersenne_twister<>::seed(unsigned long), seed(_Gen&, false_type),
375         max()): Adjust.
376
377 2006-06-20  Vladimir Prus  <vladimir@codesourcery.com>
378
379         * libsupc++/eh_arm.cc (__cxa_begin_cleanup): Always return 'true'.
380
381 2006-06-19  Paolo Carlini  <pcarlini@suse.de>
382
383         * include/tr1/random (xor_combine<>::operator<<): Fix typo.
384         
385         * include/tr1/random (bernoulli_distribution::min(),
386         bernoulli_distribution::max(), geometric_distribution<>::min(),
387         geometric_distribution<>::max()): Remove.
388
389         * include/tr1/random (geometric_distribution<>::operator()):
390         Simplify formula.
391
392         * include/tr1/random: Minor cosmetic changes.
393
394         * testsuite/tr1/5_numerical_facilities/random/discard_block/
395         operators/equal.cc: New.
396         * testsuite/tr1/5_numerical_facilities/random/discard_block/
397         operators/not_equal.cc: Likewise.
398         * testsuite/tr1/5_numerical_facilities/random/discard_block/
399         operators/serialize.cc: Likewise.
400         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
401         operators/equal.cc: Likewise.
402         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
403         operators/not_equal.cc: Likewise.
404         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
405         operators/serialize.cc: Likewise.
406
407 2006-06-17  Ami Tavory  <atavory@gmail.com>
408             Paolo Carlini  <pcarlini@suse.de>
409
410         * testsuite/util/rng/twister_rand_gen.cc: Adapt to simply use
411         tr1::mt19937.
412         * testsuite/util/rng/twister_rand_gen.hpp: Likewise.
413
414 2006-06-16  Paolo Carlini  <pcarlini@suse.de>
415
416         * include/tr1/random (uniform_real<>::uniform_real(_RealType,
417         _RealType)): Implement.
418         (uniform_real<>::min()): Likewise.
419         (uniform_real<>::max()): Likewise.
420         (uniform_real<>::reset()): Likewise.
421
422         * include/tr1/random (class uniform_real<>): Minor cosmetic tweaks.
423
424 2006-06-16  Paolo Carlini  <pcarlini@suse.de>
425
426         * include/bits/locale_facets.tcc (time_get<>::_M_extract_via_format):
427         Ignore the value of the __err argument.
428         (time_get<>::do_get_weekday): Likewise.
429         (time_get<>::do_get_monthname): Likewise.
430         * testsuite/22_locale/time_get/get_year/wchar_t/5.cc: New.
431         * testsuite/22_locale/time_get/get_year/char/5.cc: Likewise.
432         * testsuite/22_locale/time_get/get_monthname/wchar_t/5.cc: Likewise.
433         * testsuite/22_locale/time_get/get_monthname/char/5.cc: Likewise.
434         * testsuite/22_locale/time_get/get_weekday/wchar_t/5.cc: Likewise.
435         * testsuite/22_locale/time_get/get_weekday/char/5.cc: Likewise.
436         * testsuite/22_locale/time_get/get_date/wchar_t/5.cc: Likewise.
437         * testsuite/22_locale/time_get/get_date/char/5.cc: Likewise.
438         * testsuite/22_locale/time_get/get_time/wchar_t/5.cc: Likewise.
439         * testsuite/22_locale/time_get/get_time/char/5.cc: Likewise.
440
441 2006-06-15  Benjamin Kosnik  <bkoz@redhat.com>
442
443         * include/ext/pb_ds/detail/type_utils.hpp (numeric_traits): Add,
444         const expression interface to std::numeric_limits::min and max
445         functions.
446         * include/ext/pb_ds/trie_policy.hpp (string_trie_e_access_traits):
447         Use it.
448
449         * include/ext/pb_ds/detail/resize_policy/
450         hash_load_check_resize_trigger_imp.hpp: Format.
451         * include/ext/pb_ds/detail/pat_trie_/internal_node.hpp: Same.
452
453 2006-06-15  Paolo Carlini  <pcarlini@suse.de>
454
455         * include/tr1/random.tcc (mersenne_twister<>::operator()()):
456         Reload the last position of the _M_x vector too.
457
458 2006-06-15  Paolo Carlini  <pcarlini@suse.de>
459
460         * include/tr1/random (class xor_combine): Fix result_type typedef.
461         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
462         cons/default.cc: New.
463         * testsuite/tr1/5_numerical_facilities/random/xor_combine/
464         requirements/typedefs.cc: Tweak.
465
466         * include/tr1/random: Minor cosmetic changes.
467
468 2006-06-14  Ami Tavory  <atavory@gmail.com>
469             Benjamin Kosnik  <bkoz@redhat.com>
470
471         * include/ext/pb_assoc: Delete.
472         * include/ext/pb_ds: Add.
473         * docs/html/ext/pb_assoc: Delete.
474         * docs/html/ext/pb_ds: Add.
475         * testsuite/ext/pb_assoc: Delete.
476         * testsuite/ext/pb_ds: Add.
477         * testsuite/performance/ext: Add.
478         * testsuite/performance/ext/pb_ds: Add. 
479
480         * testsuite/util/regression: New.
481         * testsuite/util/rng: New.
482         * testsuite/util/native_type: New.
483         * testsuite/util/common_type: New.
484         * testsuite/util/performance: New.
485         * testsuite/util/hash_fn: New.
486         * testsuite/util/io: New.
487         * testsuite/util/statistic: New.
488
489         * scripts/make_graph.py: New.
490         * scripts/make_graphs.py: New.
491         * testsuite/data/thirty_years_among_the_dead_preproc.txt: Add.
492         * testsuite/data/make_graph_htmls.xml: Add.
493         * testsuite/data/make_graph_test_infos.xml: Add.        
494
495         * testsuite/lib/libstdc++.exp (v3-build_support): Add in new
496         object files for regression testing.
497         * docs/html/documentation.html: Adjust links.
498         * include/Makefile.am (install-headers): Update for new sources,
499         directories.
500         * include/Makefine.in: Regenerate.
501         * scripts/testsuite_flags.in: Adjust to testsuite/util path.
502         * scripts/check_performance: Simplify, adjust for new testsuite output.
503         * testsuite/Makefile.am (check-performance): Adjust.
504         (doc-performance): New.
505         * testsuite/Makefile.in: Regenerate.
506
507         * include/ext/pb_ds: New.
508         * include/ext/pb_ds/assoc_container.hpp: Same.
509         * include/ext/pb_ds/detail: New.
510         * include/ext/pb_ds/detail/binomial_heap_base_: New.
511         * include/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp: Same.
512         * include/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp: Same.
513         * include/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp: Same.
514         * include/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp: Same.
515         * include/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp: Same.
516         * include/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp: Same.
517         * include/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp: Same.
518         * include/ext/pb_ds/detail/resize_policy: New.
519         * include/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp: Same.
520         * include/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp: Same.
521         * include/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp: Same.
522         * include/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp: Same.
523         * include/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp: Same.
524         * include/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp: Same.
525         * include/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp: Same.
526         * include/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp: Same.
527         * include/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp: Same.
528         * include/ext/pb_ds/detail/container_base_dispatch.hpp: Same.
529         * include/ext/pb_ds/detail/cc_hash_table_map_: New.
530         * include/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp: Same.
531         * include/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp: Same.
532         * include/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp: Same.
533         * include/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp: Same.
534         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp: Same.
535         * include/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp: Same.
536         * include/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp: Same.
537         * include/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp: Same.
538         * include/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp: Same.
539         * include/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp: Same.
540         * include/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp: Same.
541         * include/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp: Same.
542         * include/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp: Same.
543         * include/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp: Same.
544         * include/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp: Same.
545         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp: Same.
546         * include/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp: Same.
547         * include/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp: Same.
548         * include/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp: Same.
549         * include/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp: Same.
550         * include/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp: Same.
551         * include/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp: Same.
552         * include/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp: Same.
553         * include/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp: Same.
554         * include/ext/pb_ds/detail/cc_hash_table_map_/standard_policies.hpp: Same.
555         * include/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp: Same.
556         * include/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp: Same.
557         * include/ext/pb_ds/detail/typelist_assoc_container.hpp: Same.
558         * include/ext/pb_ds/detail/tree_trace_base.hpp: Same.
559         * include/ext/pb_ds/detail/unordered_iterator: New.
560         * include/ext/pb_ds/detail/unordered_iterator/iterator.hpp: Same.
561         * include/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp: Same.
562         * include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp: Same.
563         * include/ext/pb_ds/detail/unordered_iterator/const_point_iterator.hpp: Same.
564         * include/ext/pb_ds/detail/typelist.hpp: Same.
565         * include/ext/pb_ds/detail/pat_trie_: New.
566         * include/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp: Same.
567         * include/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp: Same.
568         * include/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp: Same.
569         * include/ext/pb_ds/detail/pat_trie_/child_iterator.hpp: Same.
570         * include/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp: Same.
571         * include/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp: Same.
572         * include/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp: Same.
573         * include/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp: Same.
574         * include/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp: Same.
575         * include/ext/pb_ds/detail/pat_trie_/head.hpp: Same.
576         * include/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp: Same.
577         * include/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp: Same.
578         * include/ext/pb_ds/detail/pat_trie_/traits.hpp: Same.
579         * include/ext/pb_ds/detail/pat_trie_/cond_dtor_entry_dealtor.hpp: Same.
580         * include/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp: Same.
581         * include/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp: Same.
582         * include/ext/pb_ds/detail/pat_trie_/leaf.hpp: Same.
583         * include/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp: Same.
584         * include/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp: Same.
585         * include/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp: Same.
586         * include/ext/pb_ds/detail/pat_trie_/node_base.hpp: Same.
587         * include/ext/pb_ds/detail/pat_trie_/node_metadata_base.hpp: Same.
588         * include/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp: Same.
589         * include/ext/pb_ds/detail/pat_trie_/node_iterators.hpp: Same.
590         * include/ext/pb_ds/detail/pat_trie_/internal_node.hpp: Same.
591         * include/ext/pb_ds/detail/pat_trie_/point_iterators.hpp: Same.
592         * include/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp: Same.
593         * include/ext/pb_ds/detail/bin_search_tree_: New.
594         * include/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp: Same.
595         * include/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp: Same.
596         * include/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp: Same.
597         * include/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp: Same.
598         * include/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp: Same.
599         * include/ext/pb_ds/detail/bin_search_tree_/cond_dtor_entry_dealtor.hpp: Same.
600         * include/ext/pb_ds/detail/bin_search_tree_/traits.hpp: Same.
601         * include/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp: Same.
602         * include/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp: Same.
603         * include/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp: Same.
604         * include/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp: Same.
605         * include/ext/pb_ds/detail/bin_search_tree_/cond_key_dtor_entry_dealtor.hpp: Same.
606         * include/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp: Same.
607         * include/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp: Same.
608         * include/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp: Same.
609         * include/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp: Same.
610         * include/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp: Same.
611         * include/ext/pb_ds/detail/gp_hash_table_map_: New.
612         * include/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp: Same.
613         * include/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp: Same.
614         * include/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp: Same.
615         * include/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp: Same.
616         * include/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp: Same.
617         * include/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp: Same.
618         * include/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp: Same.
619         * include/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp: Same.
620         * include/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp: Same.
621         * include/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp: Same.
622         * include/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp: Same.
623         * include/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp: Same.
624         * include/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp: Same.
625         * include/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp: Same.
626         * include/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp: Same.
627         * include/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp: Same.
628         * include/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp: Same.
629         * include/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp: Same.
630         * include/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp: Same.
631         * include/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp: Same.
632         * include/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp: Same.
633         * include/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp: Same.
634         * include/ext/pb_ds/detail/gp_hash_table_map_/standard_policies.hpp: Same.
635         * include/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp: Same.
636         * include/ext/pb_ds/detail/standard_policies.hpp: Same.
637         * include/ext/pb_ds/detail/typelist: New.
638         * include/ext/pb_ds/detail/typelist/typelist_flatten.hpp: Same.
639         * include/ext/pb_ds/detail/typelist/typelist_contains.hpp: Same.
640         * include/ext/pb_ds/detail/typelist/typelist_typelist_append.hpp: Same.
641         * include/ext/pb_ds/detail/typelist/typelist_apply.hpp: Same.
642         * include/ext/pb_ds/detail/typelist/typelist_filter.hpp: Same.
643         * include/ext/pb_ds/detail/typelist/typelist_append.hpp: Same.
644         * include/ext/pb_ds/detail/typelist/typelist_assoc_container_find.hpp: Same.
645         * include/ext/pb_ds/detail/typelist/typelist_transform.hpp: Same.
646         * include/ext/pb_ds/detail/typelist/typelist_at_index.hpp: Same.
647         * include/ext/pb_ds/detail/tree_policy: New.
648         * include/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp: Same.
649         * include/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp: Same.
650         * include/ext/pb_ds/detail/tree_policy/null_node_update_imp.hpp: Same.
651         * include/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp: Same.
652         * include/ext/pb_ds/detail/basic_tree_policy: New.
653         * include/ext/pb_ds/detail/basic_tree_policy/basic_tree_policy_base.hpp: Same.
654         * include/ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp: Same.
655         * include/ext/pb_ds/detail/basic_tree_policy/traits.hpp: Same.
656         * include/ext/pb_ds/detail/types_traits.hpp: Same.
657         * include/ext/pb_ds/detail/binary_heap_: New.
658         * include/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp: Same.
659         * include/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp: Same.
660         * include/ext/pb_ds/detail/binary_heap_/const_iterator.hpp: Same.
661         * include/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp: Same.
662         * include/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp: Same.
663         * include/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp: Same.
664         * include/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp: Same.
665         * include/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp: Same.
666         * include/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp: Same.
667         * include/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp: Same.
668         * include/ext/pb_ds/detail/binary_heap_/entry_pred.hpp: Same.
669         * include/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp: Same.
670         * include/ext/pb_ds/detail/binary_heap_/resize_policy.hpp: Same.
671         * include/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp: Same.
672         * include/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp: Same.
673         * include/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp: Same.
674         * include/ext/pb_ds/detail/trie_policy: New.
675         * include/ext/pb_ds/detail/trie_policy/string_trie_e_access_traits_imp.hpp: Same.
676         * include/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp: Same.
677         * include/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp: Same.
678         * include/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp: Same.
679         * include/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp: Same.
680         * include/ext/pb_ds/detail/trie_policy/sample_trie_e_access_traits.hpp: Same.
681         * include/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp: Same.
682         * include/ext/pb_ds/detail/trie_policy/null_node_update_imp.hpp: Same.
683         * include/ext/pb_ds/detail/cond_dealtor.hpp: Same.
684         * include/ext/pb_ds/detail/priority_queue_base_dispatch.hpp: Same.
685         * include/ext/pb_ds/detail/pairing_heap_: Name.
686         * include/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp: Same.
687         * include/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp: Same.
688         * include/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp: Same.
689         * include/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp: Same.
690         * include/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp: Same.
691         * include/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp: Same.
692         * include/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp: Same.
693         * include/ext/pb_ds/detail/binomial_heap_: New.
694         * include/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp: Same.
695         * include/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp: Same.
696         * include/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp: Same.
697         * include/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp: Same.
698         * include/ext/pb_ds/detail/type_utils.hpp: Same.
699         * include/ext/pb_ds/detail/eq_fn: New.
700         * include/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp: Same.
701         * include/ext/pb_ds/detail/eq_fn/eq_by_less.hpp: Same.
702         * include/ext/pb_ds/detail/basic_types.hpp: Same.
703         * include/ext/pb_ds/detail/list_update_policy: New.
704         * include/ext/pb_ds/detail/list_update_policy/mtf_lu_policy_imp.hpp: Same.
705         * include/ext/pb_ds/detail/list_update_policy/counter_lu_metadata.hpp: Same.
706         * include/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp: Same.
707         * include/ext/pb_ds/detail/list_update_policy/counter_lu_policy_imp.hpp: Same.
708         * include/ext/pb_ds/detail/thin_heap_: New.
709         * include/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp: Same.
710         * include/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp: Same.
711         * include/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp: Same.
712         * include/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp: Same.
713         * include/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp: Same.
714         * include/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp: Same.
715         * include/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp: Same.
716         * include/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp: Same.
717         * include/ext/pb_ds/detail/left_child_next_sibling_heap_: New.
718         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp: Same.
719         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp: Same.
720         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/null_metadata.hpp: Same.
721         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp: Same.
722         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp: Same.
723         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp: Same.
724         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp: Same.
725         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp: Same.
726         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp: Same.
727         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp: Same.
728         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp: Same.
729         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp: Same.
730         * include/ext/pb_ds/detail/left_child_next_sibling_heap_/const_point_iterator.hpp: Same.
731         * include/ext/pb_ds/detail/ov_tree_map_: New.
732         * include/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp: Same.
733         * include/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp: Same.
734         * include/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp: Same.
735         * include/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp: Same.
736         * include/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp: Same.
737         * include/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp: Same.
738         * include/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp: Same.
739         * include/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp: Same.
740         * include/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp: Same.
741         * include/ext/pb_ds/detail/ov_tree_map_/traits.hpp: Same.
742         * include/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp: Same.
743         * include/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp: Same.
744         * include/ext/pb_ds/detail/map_debug_base.hpp: Same.
745         * include/ext/pb_ds/detail/hash_fn: New.
746         * include/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp: Same.
747         * include/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp: Same.
748         * include/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp: Same.
749         * include/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp: Same.
750         * include/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp: Same.
751         * include/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp: Same.
752         * include/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp: Same.
753         * include/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp: Same.
754         * include/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp: Same.
755         * include/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp: Same.
756         * include/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp: Same.
757         * include/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp: Same.
758         * include/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp: Same.
759         * include/ext/pb_ds/detail/splay_tree_: New.
760         * include/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp: Same.
761         * include/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp: Same.
762         * include/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp: Same.
763         * include/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp: Same.
764         * include/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp: Same.
765         * include/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp: Same.
766         * include/ext/pb_ds/detail/splay_tree_/node.hpp: Same.
767         * include/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp: Same.
768         * include/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp: Same.
769         * include/ext/pb_ds/detail/splay_tree_/traits.hpp: Same.
770         * include/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp: Same.
771         * include/ext/pb_ds/detail/list_update_map_: New.
772         * include/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp: Same.
773         * include/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp: Same.
774         * include/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp: Same.
775         * include/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp: Same.
776         * include/ext/pb_ds/detail/list_update_map_/lu_map_.hpp: Same.
777         * include/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp: Same.
778         * include/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp: Same.
779         * include/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp: Same.
780         * include/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp: Same.
781         * include/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp: Same.
782         * include/ext/pb_ds/detail/rc_binomial_heap_: New.
783         * include/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp: Same.
784         * include/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp: Same.
785         * include/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp: Same.
786         * include/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp: Same.
787         * include/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp: Same.
788         * include/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp: Same.
789         * include/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp: Same.
790         * include/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp: Same.
791         * include/ext/pb_ds/detail/rb_tree_map_: New.
792         * include/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp: Same.
793         * include/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp: Same.
794         * include/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp: Same.
795         * include/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp: Same.
796         * include/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp: Same.
797         * include/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp: Same.
798         * include/ext/pb_ds/detail/rb_tree_map_/node.hpp: Same.
799         * include/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp: Same.
800         * include/ext/pb_ds/detail/rb_tree_map_/traits.hpp: Same.
801         * include/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp: Same.
802         * include/ext/pb_ds/list_update_policy.hpp: Same.
803         * include/ext/pb_ds/exception.hpp: Same.
804         * include/ext/pb_ds/tree_policy.hpp: Same.
805         * include/ext/pb_ds/tag_and_trait.hpp: Same.
806         * include/ext/pb_ds/hash_policy.hpp: Same.
807         * include/ext/pb_ds/trie_policy.hpp: Same.
808         * include/ext/pb_ds/priority_queue.hpp: Same.
809
810         * docs/html/ext/pb_ds: New.
811         * docs/html/ext/pb_ds/container_tag.html: Same.
812         * docs/html/ext/pb_ds/trivial_iterator_tag.html: Same.
813         * docs/html/ext/pb_ds/tree_text_lor_find_timing_test_local.png
814         * docs/html/ext/pb_ds/sample_trie_e_access_traits.html: Same.
815         * docs/html/ext/pb_ds/gp_hash_table.html: Same.
816         * docs/html/ext/pb_ds/priority_queue_tag_cd.svg
817         * docs/html/ext/pb_ds/container_cd.svg
818         * docs/html/ext/pb_ds/linear_probe_fn.html: Same.
819         * docs/html/ext/pb_ds/hash_random_int_erase_mem_usage_test_local.png
820         * docs/html/ext/pb_ds/quadratic_probe_fn.html: Same.
821         * docs/html/ext/pb_ds/assoc_regression_tests.html: Same.
822         * docs/html/ext/pb_ds/tree_tag.html: Same.
823         * docs/html/ext/pb_ds/hash_random_int_erase_mem_usage_test.html: Same.
824         * docs/html/ext/pb_ds/interface.html: Same.
825         * docs/html/ext/pb_ds/hash_zlob_random_int_find_timing_test_msvc.png
826         * docs/html/ext/pb_ds/hash_random_int_subscript_find_timing_test.html: Same.
827         * docs/html/ext/pb_ds/lu_based_containers.html: Same.
828         * docs/html/ext/pb_ds/embedded_lists_3.png
829         * docs/html/ext/pb_ds/tree_text_find_find_timing_test.html: Same.
830         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_hash_local.png
831         * docs/html/ext/pb_ds/assoc_performance_tests.html: Same.
832         * docs/html/ext/pb_ds/list_update.html: Same.
833         * docs/html/ext/pb_ds/priority_queue_random_int_push_pop_timing_test_gcc.png
834         * docs/html/ext/pb_ds/tree_text_insert_timing_test_pat_trie_local.png
835         * docs/html/ext/pb_ds/point_iterators_range_ops_1.png
836         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_insert_msvc.png
837         * docs/html/ext/pb_ds/hash_zlob_random_int_find_timing_test_gcc.png
838         * docs/html/ext/pb_ds/text_find_timing_test_tree_like_msvc.png
839         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_tree_local.png
840         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_local.png
841         * docs/html/ext/pb_ds/tree_text_insert_timing_test_pat_trie_msvc.png
842         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test.html: Same.
843         * docs/html/ext/pb_ds/move_to_front_lu_policy.html: Same.
844         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_hash_gcc.png
845         * docs/html/ext/pb_ds/hash_random_int_find_find_timing_test.html: Same.
846         * docs/html/ext/pb_ds/string_trie_e_access_traits.html: Same.
847         * docs/html/ext/pb_ds/prerequisites.html: Same.
848         * docs/html/ext/pb_ds/gp_hash_tag.html: Same.
849         * docs/html/ext/pb_ds/priority_queue_tag_cd.png
850         * docs/html/ext/pb_ds/container_cd.png
851         * docs/html/ext/pb_ds/priority_queue_text_join_timing_test_gcc.png
852         * docs/html/ext/pb_ds/container_base.html: Same.
853         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_hash_msvc.png
854         * docs/html/ext/pb_ds/tree_random_int_find_find_timing_test.html: Same.
855         * docs/html/ext/pb_ds/binary_priority_queue_random_int_push_timing_test_msvc.png
856         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_find_local.png
857         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_find_gcc.png
858         * docs/html/ext/pb_ds/priority_queue_text_push_pop_timing_test_msvc.png
859         * docs/html/ext/pb_ds/random_int_find_find_timing_test_tree_msvc.png
860         * docs/html/ext/pb_ds/text_find_timing_test_hash_local.png
861         * docs/html/ext/pb_ds/tree_text_insert_timing_test_node_tree_msvc.png
862         * docs/html/ext/pb_ds/ov_tree_tag.html: Same.
863         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_hash_local.png
864         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_hash_msvc.png
865         * docs/html/ext/pb_ds/priority_queue_text_pop_mem_usage_test_msvc.png
866         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_pairing_thin_msvc.png
867         * docs/html/ext/pb_ds/list_update_tag.html: Same.
868         * docs/html/ext/pb_ds/balls_and_bins.png
869         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_tree_local.png
870         * docs/html/ext/pb_ds/disclaimer.html: Same.
871         * docs/html/ext/pb_ds/insert_error.html: Same.
872         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_hash_gcc.png
873         * docs/html/ext/pb_ds/ccgp_hash_random_int_subscript_timing_test_insert_gcc.png
874         * docs/html/ext/pb_ds/examples.html: Same.
875         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small.html: Same.
876         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_pop_timing_test_gcc.png
877         * docs/html/ext/pb_ds/sample_probe_fn.html: Same.
878         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_hash_local.png
879         * docs/html/ext/pb_ds/priority_queue_text_push_timing_test.html: Same.
880         * docs/html/ext/pb_ds/priority_queue_random_int_push_timing_test_gcc.png
881         * docs/html/ext/pb_ds/null_mapped_type.html: Same.
882         * docs/html/ext/pb_ds/binary_priority_queue_random_int_push_timing_test_gcc.png
883         * docs/html/ext/pb_ds/tree_order_statistics_timing_test_gcc.png
884         * docs/html/ext/pb_ds/associative_container_tag.html: Same.
885         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_tree_local.png
886         * docs/html/ext/pb_ds/design.html: Same.
887         * docs/html/ext/pb_ds/cc_hash_max_collision_check_resize_trigger.html: Same.
888         * docs/html/ext/pb_ds/pairing_heap_tag.html: Same.
889         * docs/html/ext/pb_ds/tree_text_lor_find_timing_test_gcc.png
890         * docs/html/ext/pb_ds/references.html: Same.
891         * docs/html/ext/pb_ds/tree_order_statistics_timing_test_msvc.png
892         * docs/html/ext/pb_ds/hash_load_check_resize_trigger.html: Same.
893         * docs/html/ext/pb_ds/priority_queue_text_pop_mem_usage_test_gcc.png
894         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_pairing_thin_gcc.png
895         * docs/html/ext/pb_ds/hash_random_int_erase_mem_usage_test_gcc.png
896         * docs/html/ext/pb_ds/pq_different_underlying_dss.png
897         * docs/html/ext/pb_ds/insert_resize_sequence_diagram1.png
898         * docs/html/ext/pb_ds/pq_regression_tests.html: Same.
899         * docs/html/ext/pb_ds/sample_tree_node_update.html: Same.
900         * docs/html/ext/pb_ds/invalidation_guarantee_erase.png
901         * docs/html/ext/pb_ds/basic_invalidation_guarantee.html: Same.
902         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_hash_local.png
903         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_hash_gcc.png
904         * docs/html/ext/pb_ds/hash_zlob_random_int_find_timing_test_local.png
905         * docs/html/ext/pb_ds/point_iterators_range_ops_2.png
906         * docs/html/ext/pb_ds/null_probe_fn.html: Same.
907         * docs/html/ext/pb_ds/hash_prime_size_policy.html: Same.
908         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_hash_msvc.png
909         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_gcc.png
910         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_tree_local.png
911         * docs/html/ext/pb_ds/binary_priority_queue_random_int_push_timing_test_local.png
912         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_hash_msvc.png
913         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_tree_gcc.png
914         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large.html: Same.
915         * docs/html/ext/pb_ds/sample_resize_policy.html: Same.
916         * docs/html/ext/pb_ds/binomial_heap_tag.html: Same.
917         * docs/html/ext/pb_ds/priority_queue_text_pop_mem_usage_test_local.png
918         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_pairing_thin_local.png
919         * docs/html/ext/pb_ds/tree_text_lor_find_find_timing_test.html: Same.
920         * docs/html/ext/pb_ds/priority_queue_text_join_timing_test_msvc.png
921         * docs/html/ext/pb_ds/trie_based_containers.html: Same.
922         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_insert_gcc.png
923         * docs/html/ext/pb_ds/tree_split_join_timing_test_local.png
924         * docs/html/ext/pb_ds/text_find_timing_test_hash_gcc.png
925         * docs/html/ext/pb_ds/motivation.html: Same.
926         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_tree_msvc.png
927         * docs/html/ext/pb_ds/tree_split_join_timing_test_gcc.png
928         * docs/html/ext/pb_ds/tree.html: Same.
929         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_hash_gcc.png
930         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_insert_msvc.png
931         * docs/html/ext/pb_ds/invalidation_guarantee_cd.png
932         * docs/html/ext/pb_ds/tutorial.html: Same.
933         * docs/html/ext/pb_ds/null_trie_node_update.html: Same.
934         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_gcc.png
935         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_tree_msvc.png
936         * docs/html/ext/pb_ds/ccgp_hash_random_int_subscript_timing_test_insert_local.png
937         * docs/html/ext/pb_ds/point_iterators_cd.png
938         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_hash_local.png
939         * docs/html/ext/pb_ds/priority_queue_random_int_push_pop_timing_test_local.png
940         * docs/html/ext/pb_ds/rb_tree_tag.html: Same.
941         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_find_msvc.png
942         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_timing_test_msvc.png
943         * docs/html/ext/pb_ds/tree_text_insert_timing_test_pat_trie_gcc.png
944         * docs/html/ext/pb_ds/exceptions.html: Same.
945         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_msvc.png
946         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_tree_local.png
947         * docs/html/ext/pb_ds/hash_policy_cd.png
948         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_tree_gcc.png
949         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small.html: Same.
950         * docs/html/ext/pb_ds/ds_gen.html: Same.
951         * docs/html/ext/pb_ds/hash_exponential_size_policy.html: Same.
952         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_insert_local.png
953         * docs/html/ext/pb_ds/hash_random_int_erase_mem_usage_test_msvc.png
954         * docs/html/ext/pb_ds/index.html: Same.
955         * docs/html/ext/pb_ds/binary_heap_tag.html: Same.
956         * docs/html/ext/pb_ds/basic_hash_tag.html: Same.
957         * docs/html/ext/pb_ds/trie_order_statistics_node_update.html: Same.
958         * docs/html/ext/pb_ds/sample_resize_trigger.html: Same.
959         * docs/html/ext/pb_ds/priority_queue_text_push_timing_test_local.png
960         * docs/html/ext/pb_ds/hash_text_find_find_timing_test.html: Same.
961         * docs/html/ext/pb_ds/tree_text_insert_timing_test.html: Same.
962         * docs/html/ext/pb_ds/trie_tag.html: Same.
963         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_find_local.png
964         * docs/html/ext/pb_ds/pq_tests.html: Same.
965         * docs/html/ext/pb_ds/insert_resize_sequence_diagram2.png
966         * docs/html/ext/pb_ds/node_invariant_invalidations.png
967         * docs/html/ext/pb_ds/priority_queue_text_modify_down_timing_test_msvc.png
968         * docs/html/ext/pb_ds/resize_policy_cd.png
969         * docs/html/ext/pb_ds/embedded_lists_1.png
970         * docs/html/ext/pb_ds/hash_ranged_hash_range_hashing_fns.png
971         * docs/html/ext/pb_ds/null_lu_metadata.html: Same.
972         * docs/html/ext/pb_ds/tree_order_statistics_timing_test.html: Same.
973         * docs/html/ext/pb_ds/trie_prefix_search_node_update.html: Same.
974         * docs/html/ext/pb_ds/hash_range_hashing_seq_diagram.png
975         * docs/html/ext/pb_ds/point_invalidation_guarantee.html: Same.
976         * docs/html/ext/pb_ds/direct_mod_range_hashing.html: Same.
977         * docs/html/ext/pb_ds/tree_text_insert_timing_test_vector_tree_local.png
978         * docs/html/ext/pb_ds/priority_queue_random_int_push_pop_timing_test_msvc.png
979         * docs/html/ext/pb_ds/misc.html: Same.
980         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_hash_local.png
981         * docs/html/ext/pb_ds/counter_lu_policy.html: Same.
982         * docs/html/ext/pb_ds/different_underlying_dss.png
983         * docs/html/ext/pb_ds/restoring_node_invariants.png
984         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large.html: Same.
985         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_timing_test_local.png
986         * docs/html/ext/pb_ds/sample_update_policy.html: Same.
987         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_timing_test_gcc.png
988         * docs/html/ext/pb_ds/tree_order_statistics_timing_test_local.png
989         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_tree_msvc.png
990         * docs/html/ext/pb_ds/simple_list.png
991         * docs/html/ext/pb_ds/text_find_timing_test_hash_msvc.png
992         * docs/html/ext/pb_ds/assoc_examples.html: Same.
993         * docs/html/ext/pb_ds/priority_queue_text_push_pop_timing_test_local.png
994         * docs/html/ext/pb_ds/hash_based_containers.html: Same.
995         * docs/html/ext/pb_ds/text_find_timing_test_tree_like_local.png
996         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_tree_local.png
997         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_tree_gcc.png
998         * docs/html/ext/pb_ds/tree_node_iterator.html: Same.
999         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_pairing_thin_msvc.png
1000         * docs/html/ext/pb_ds/trie_node_iterator.html: Same.
1001         * docs/html/ext/pb_ds/tree_based_containers.html: Same.
1002         * docs/html/ext/pb_ds/hash_random_int_subscript_insert_timing_test.html: Same.
1003         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_tree_msvc.png
1004         * docs/html/ext/pb_ds/ccgp_hash_random_int_subscript_timing_test_insert_msvc.png
1005         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_hash_msvc.png
1006         * docs/html/ext/pb_ds/priority_queue_text_push_timing_test_gcc.png
1007         * docs/html/ext/pb_ds/rationale_null_node_updator.png
1008         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_pairing_thin_local.png
1009         * docs/html/ext/pb_ds/lu.png
1010         * docs/html/ext/pb_ds/assoc_container_traits.html: Same.
1011         * docs/html/ext/pb_ds/gp_hash_random_int_find_timing_test_msvc.png
1012         * docs/html/ext/pb_ds/assoc_design.html: Same.
1013         * docs/html/ext/pb_ds/splay_tree_tag.html: Same.
1014         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_find_gcc.png
1015         * docs/html/ext/pb_ds/priority_queue_random_int_push_timing_test.html: Same.
1016         * docs/html/ext/pb_ds/assoc_container_tag_cd.svg
1017         * docs/html/ext/pb_ds/resize_error.html: Same.
1018         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_hash_msvc.png
1019         * docs/html/ext/pb_ds/tree_text_insert_timing_test_node_tree_gcc.png
1020         * docs/html/ext/pb_ds/priority_queue_text_join_timing_test.html: Same.
1021         * docs/html/ext/pb_ds/basic_tree_assoc_container_const_node_iterator.html: Same.
1022         * docs/html/ext/pb_ds/gp_hash_random_int_find_timing_test_gcc.png
1023         * docs/html/ext/pb_ds/trie_const_node_iterator.html: Same.
1024         * docs/html/ext/pb_ds/hash_zlob_random_int_find_find_timing_test.html: Same.
1025         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_tree_gcc.png
1026         * docs/html/ext/pb_ds/sample_size_policy.html: Same.
1027         * docs/html/ext/pb_ds/tree_text_insert_timing_test_vector_tree_gcc.png
1028         * docs/html/ext/pb_ds/cc_hash_table.html: Same.
1029         * docs/html/ext/pb_ds/node_invariants.png
1030         * docs/html/ext/pb_ds/tree_split_join_timing_test_msvc.png
1031         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test.html: Same.
1032         * docs/html/ext/pb_ds/tree_order_statistics_node_update.html: Same.
1033         * docs/html/ext/pb_ds/cc_hash_random_int_find_timing_test_msvc.png
1034         * docs/html/ext/pb_ds/cc_hash_random_int_subscript_timing_test_insert_local.png
1035         * docs/html/ext/pb_ds/priority_queue.html: Same.
1036         * docs/html/ext/pb_ds/assoc_tests.html: Same.
1037         * docs/html/ext/pb_ds/assoc_container_tag_cd.png
1038         * docs/html/ext/pb_ds/basic_hash_table.html: Same.
1039         * docs/html/ext/pb_ds/basic_tree_tag.html: Same.
1040         * docs/html/ext/pb_ds/tree_split_join_timing_test.html: Same.
1041         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_local.png
1042         * docs/html/ext/pb_ds/insert_resize_sequence_diagram3.png
1043         * docs/html/ext/pb_ds/embedded_lists_2.png
1044         * docs/html/ext/pb_ds/random_int_find_find_timing_test_tree_local.png
1045         * docs/html/ext/pb_ds/sample_ranged_probe_fn.html: Same.
1046         * docs/html/ext/pb_ds/random_int_find_find_timing_test_tree_gcc.png
1047         * docs/html/ext/pb_ds/sample_trie_node_update.html: Same.
1048         * docs/html/ext/pb_ds/introduction.html: Same.
1049         * docs/html/ext/pb_ds/pq_performance_tests.html: Same.
1050         * docs/html/ext/pb_ds/pat_trie.png
1051         * docs/html/ext/pb_ds/range_invalidation_guarantee.html: Same.
1052         * docs/html/ext/pb_ds/contact.html: Same.
1053         * docs/html/ext/pb_ds/sample_range_hashing.html: Same.
1054         * docs/html/ext/pb_ds/priority_queue_random_int_push_timing_test_local.png
1055         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large_s2p_hash_gcc.png
1056         * docs/html/ext/pb_ds/update_seq_diagram.png
1057         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large_s2p_tree_gcc.png
1058         * docs/html/ext/pb_ds/direct_mask_range_hashing.html: Same.
1059         * docs/html/ext/pb_ds/tests.html: Same.
1060         * docs/html/ext/pb_ds/cc_hash_random_int_find_timing_test_gcc.png
1061         * docs/html/ext/pb_ds/tree_node_updator_policy_cd.png
1062         * docs/html/ext/pb_ds/text_find_timing_test_tree_like_gcc.png
1063         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_large.html: Same.
1064         * docs/html/ext/pb_ds/trie_node_updator_policy_cd.png
1065         * docs/html/ext/pb_ds/priority_queue_random_int_push_timing_test_msvc.png
1066         * docs/html/ext/pb_ds/concepts.html: Same.
1067         * docs/html/ext/pb_ds/pq_examples.html: Same.
1068         * docs/html/ext/pb_ds/priority_queue_tag.html: Same.
1069         * docs/html/ext/pb_ds/priority_queue_random_int_push_pop_timing_test.html: Same.
1070         * docs/html/ext/pb_ds/update_policy_cd.png
1071         * docs/html/ext/pb_ds/thin_heap_tag.html: Same.
1072         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_pop_timing_test_msvc.png
1073         * docs/html/ext/pb_ds/basic_tree.html: Same.
1074         * docs/html/ext/pb_ds/null_hash_fn.html: Same.
1075         * docs/html/ext/pb_ds/null_tree_node_update.html: Same.
1076         * docs/html/ext/pb_ds/priority_queue_text_modify_up_timing_test_pairing_thin_gcc.png
1077         * docs/html/ext/pb_ds/trie.html: Same.
1078         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small_s2p_tree_msvc.png
1079         * docs/html/ext/pb_ds/rc_binomial_heap_tag.html: Same.
1080         * docs/html/ext/pb_ds/priority_queue_text_push_timing_test_msvc.png
1081         * docs/html/ext/pb_ds/pq_container_traits.html: Same.
1082         * docs/html/ext/pb_ds/pq_design.html: Same.
1083         * docs/html/ext/pb_ds/checked_by_tidy.gif
1084         * docs/html/ext/pb_ds/tree_text_insert_timing_test_node_tree_local.png
1085         * docs/html/ext/pb_ds/multimap_text_insert_mem_usage_test_small_s2p_hash_gcc.png
1086         * docs/html/ext/pb_ds/priority_queue_text_push_pop_timing_test.html: Same.
1087         * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small_s2p_tree_gcc.png
1088         * docs/html/ext/pb_ds/pairing_priority_queue_text_push_pop_timing_test_local.png
1089         * docs/html/ext/pb_ds/acks.html: Same.
1090         * docs/html/ext/pb_ds/gp_hash_random_int_find_timing_test_local.png
1091         * docs/html/ext/pb_ds/cc_hash_tag.html: Same.
1092         * docs/html/ext/pb_ds/sample_ranged_hash_fn.html: Same.
1093         * docs/html/ext/pb_ds/multimap_text_find_timing_test_large_s2p_tree_msvc.png
1094         * docs/html/ext/pb_ds/priority_queue_text_pop_mem_usage_test.html: Same.
1095         * docs/html/ext/pb_ds/multimap_text_find_timing_test_small.html: Same.
1096         * docs/html/ext/pb_ds/tree_text_lor_find_timing_test_msvc.png
1097         * docs/html/ext/pb_ds/hash_range_hashing_seq_diagram2.png
1098         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_find_msvc.png
1099         * docs/html/ext/pb_ds/PythonPoweredSmall.gif
1100         * docs/html/ext/pb_ds/cc_hash_random_int_find_timing_test_local.png
1101         * docs/html/ext/pb_ds/pat_trie_tag.html: Same.
1102         * docs/html/ext/pb_ds/hash_standard_resize_policy.html: Same.
1103         * docs/html/ext/pb_ds/tree_text_insert_timing_test_vector_tree_msvc.png
1104         * docs/html/ext/pb_ds/gp_hash_random_int_subscript_timing_test_insert_gcc.png
1105         * docs/html/ext/pb_ds/join_error.html: Same.
1106         * docs/html/ext/pb_ds/priority_queue_text_push_pop_timing_test_gcc.png
1107         * docs/html/ext/pb_ds/priority_queue_text_join_timing_test_local.png
1108
1109         * testsuite/ext/pb_ds: New.
1110         * testsuite/ext/pb_ds/regression: New.
1111         * testsuite/ext/pb_ds/regression/trie_data_map_rand.cc: Same.
1112         * testsuite/ext/pb_ds/regression/hash_data_map_rand.cc: Same.
1113         * testsuite/ext/pb_ds/regression/associative_containers.cc: Same.
1114         * testsuite/ext/pb_ds/regression/list_update_no_data_map_rand.cc: Same.
1115         * testsuite/ext/pb_ds/regression/tree_no_data_map_rand.cc: Same.
1116         * testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc: Same.
1117         * testsuite/ext/pb_ds/regression/priority_queues.cc: Same.
1118         * testsuite/ext/pb_ds/regression/hash_no_data_map_rand.cc: Same.
1119         * testsuite/ext/pb_ds/regression/priority_queue_rand.cc: Same.
1120         * testsuite/ext/pb_ds/regression/trie_no_data_map_rand.cc: Same.
1121         * testsuite/ext/pb_ds/regression/tree_data_map_rand.cc: Same.
1122         * testsuite/ext/pb_ds/example: New.
1123         * testsuite/ext/pb_ds/example/hash_shift_mask.cc: Same.
1124         * testsuite/ext/pb_ds/example/basic_set.cc: Same.
1125         * testsuite/ext/pb_ds/example/hash_illegal_resize.cc: Same.
1126         * testsuite/ext/pb_ds/example/hash_resize_neg.cc: Same.
1127         * testsuite/ext/pb_ds/example/store_hash.cc: Same.
1128         * testsuite/ext/pb_ds/example/assoc_container_traits.cc: Same.
1129         * testsuite/ext/pb_ds/example/hash_load_set_change.cc: Same.
1130         * testsuite/ext/pb_ds/example/ranged_hash.cc: Same.
1131         * testsuite/ext/pb_ds/example/hash_resize.cc: Same.
1132         * testsuite/ext/pb_ds/example/tree_order_statistics.cc: Same.
1133         * testsuite/ext/pb_ds/example/trie_prefix_search.cc: Same.
1134         * testsuite/ext/pb_ds/example/basic_multiset.cc: Same.
1135         * testsuite/ext/pb_ds/example/priority_queue_xref.cc: Same.
1136         * testsuite/ext/pb_ds/example/hash_find_neg.cc: Same.
1137         * testsuite/ext/pb_ds/example/erase_if.cc: Same.
1138         * testsuite/ext/pb_ds/example/priority_queue_container_traits.cc: Same.
1139         * testsuite/ext/pb_ds/example/tree_join.cc: Same.
1140         * testsuite/ext/pb_ds/example/basic_map.cc: Same.
1141         * testsuite/ext/pb_ds/example/trie_split.cc: Same.
1142         * testsuite/ext/pb_ds/example/priority_queue_split_join.cc: Same.
1143         * testsuite/ext/pb_ds/example/priority_queue_dijkstra.cc: Same.
1144         * testsuite/ext/pb_ds/example/priority_queue_erase_if.cc: Same.
1145         * testsuite/ext/pb_ds/example/hash_mod.cc: Same.
1146         * testsuite/ext/pb_ds/example/tree_order_statistics_join.cc: Same.
1147         * testsuite/ext/pb_ds/example/trie_dna.cc: Same.
1148         * testsuite/ext/pb_ds/example/hash_initial_size.cc: Same.
1149         * testsuite/ext/pb_ds/example/basic_priority_queue.cc: Same.
1150         * testsuite/ext/pb_ds/example/tree_intervals.cc: Same.
1151         * testsuite/ext/pb_ds/example/basic_multimap.cc: Same.
1152         * testsuite/performance/ext: New.
1153         * testsuite/performance/ext/pb_ds: New.
1154         * testsuite/performance/ext/pb_ds/multimap_text_find_timing_small.cc: Same.
1155         * testsuite/performance/ext/pb_ds/text_find_timing.cc: Same.
1156         * testsuite/performance/ext/pb_ds/hash_random_int_erase_mem_usage.cc: Same.
1157         * testsuite/performance/ext/pb_ds/tree_text_insert_timing.cc: Same.
1158         * testsuite/performance/ext/pb_ds/priority_queue_text_modify_down_timing.cc: Same.
1159         * testsuite/performance/ext/pb_ds/random_int_subscript_find_timing.cc: Same.
1160         * testsuite/performance/ext/pb_ds/priority_queue_text_push_timing.cc: Same.
1161         * testsuite/performance/ext/pb_ds/tree_split_join_timing.cc: Same.
1162         * testsuite/performance/ext/pb_ds/random_int_find_timing.cc: Same.
1163         * testsuite/performance/ext/pb_ds/multimap_text_insert_timing_large.cc: Same.
1164         * testsuite/performance/ext/pb_ds/multimap_text_insert_mem_usage.hpp: Same.
1165         * testsuite/performance/ext/pb_ds/priority_queue_random_int_push_timing.cc: Same.
1166         * testsuite/performance/ext/pb_ds/multimap_text_find_timing.hpp: Same.
1167         * testsuite/performance/ext/pb_ds/priority_queue_text_modify_timing.hpp: Same.
1168         * testsuite/performance/ext/pb_ds/tree_order_statistics_timing.cc: Same.
1169         * testsuite/performance/ext/pb_ds/priority_queue_text_modify_up_timing.cc: Same.
1170         * testsuite/performance/ext/pb_ds/multimap_text_insert_mem_usage_large.cc: Same.
1171         * testsuite/performance/ext/pb_ds/priority_queue_text_push_pop_timing.cc: Same.
1172         * testsuite/performance/ext/pb_ds/multimap_text_find_timing_large.cc: Same.
1173         * testsuite/performance/ext/pb_ds/priority_queue_text_join_timing.cc: Same.
1174         * testsuite/performance/ext/pb_ds/multimap_text_insert_timing_small.cc: Same.
1175         * testsuite/performance/ext/pb_ds/priority_queue_random_int_push_pop_timing.cc: Same.
1176         * testsuite/performance/ext/pb_ds/random_int_subscript_insert_timing.cc: Same.
1177         * testsuite/performance/ext/pb_ds/tree_text_lor_find_timing.cc: Same.
1178         * testsuite/performance/ext/pb_ds/priority_queue_text_pop_mem_usage.cc: Same.
1179         * testsuite/performance/ext/pb_ds/multimap_text_insert_timing.hpp: Same.
1180         * testsuite/performance/ext/pb_ds/hash_zlob_random_int_find_timing.cc: Same.
1181         * testsuite/performance/ext/pb_ds/multimap_text_insert_mem_usage_small.cc: Same.
1182         * testsuite/data/make_graph_test_infos.xml: Same.
1183         * testsuite/data/thirty_years_among_the_dead_preproc.txt: New.
1184         * testsuite/data/make_graph_htmls.xml: Same.
1185         * testsuite/util/regression: New.
1186         * testsuite/util/regression/trait: New.
1187         * testsuite/util/regression/trait/priority_queue: New.
1188         * testsuite/util/regression/trait/priority_queue/trait.hpp: Same.
1189         * testsuite/util/regression/trait/erase_if_fn.hpp: Same.
1190         * testsuite/util/regression/trait/assoc: New.
1191         * testsuite/util/regression/trait/assoc/native_type_trait.hpp: Same.
1192         * testsuite/util/regression/trait/assoc/node_update_trait.hpp: Same.
1193         * testsuite/util/regression/trait/assoc/get_set_load_trait.hpp: Same.
1194         * testsuite/util/regression/trait/assoc/get_set_loads_trait.hpp: Same.
1195         * testsuite/util/regression/trait/assoc/trait.hpp: Same.
1196         * testsuite/util/regression/trait/assoc/type_trait.hpp: Same.
1197         * testsuite/util/regression/trait/assoc/resize_trait.hpp: Same.
1198         * testsuite/util/regression/trait/assoc/to_string.hpp: Same.
1199         * testsuite/util/regression/rand: New.
1200         * testsuite/util/regression/rand/priority_queue: New.
1201         * testsuite/util/regression/rand/priority_queue/detail: New.
1202         * testsuite/util/regression/rand/priority_queue/detail/erase_fn_imps.hpp: Same.
1203         * testsuite/util/regression/rand/priority_queue/detail/cmp_fn_imps.hpp: Same.
1204         * testsuite/util/regression/rand/priority_queue/detail/policy_access_fn_imps.hpp: Same.
1205         * testsuite/util/regression/rand/priority_queue/detail/defs_fn_imps.hpp: Same.
1206         * testsuite/util/regression/rand/priority_queue/detail/it_conversion_fn_imps.hpp: Same.
1207         * testsuite/util/regression/rand/priority_queue/detail/constructor_destructor_fn_imps.hpp: Same.
1208         * testsuite/util/regression/rand/priority_queue/detail/diagnostic_fn_imps.hpp: Same.
1209         * testsuite/util/regression/rand/priority_queue/detail/insert_fn_imps.hpp: Same.
1210         * testsuite/util/regression/rand/priority_queue/detail/clear_fn_imps.hpp: Same.
1211         * testsuite/util/regression/rand/priority_queue/detail/modify_fn_imps.hpp: Same.
1212         * testsuite/util/regression/rand/priority_queue/detail/split_join_fn_imps.hpp: Same.
1213         * testsuite/util/regression/rand/priority_queue/detail/operator_fn_imps.hpp: Same.
1214         * testsuite/util/regression/rand/priority_queue/rand_regression_test.hpp: Same.
1215         * testsuite/util/regression/rand/priority_queue/container_rand_regression_test.hpp: Same.
1216         * testsuite/util/regression/rand/io: New.
1217         * testsuite/util/regression/rand/io/priority_queue: New.
1218         * testsuite/util/regression/rand/io/priority_queue/xml_formatter.hpp: Same.
1219         * testsuite/util/regression/rand/io/assoc: New.
1220         * testsuite/util/regression/rand/io/assoc/xml_formatter.hpp: Same.
1221         * testsuite/util/regression/rand/io/xml_formatter.hpp: Same.
1222         * testsuite/util/regression/rand/assoc: New.
1223         * testsuite/util/regression/rand/assoc/detail: New.
1224         * testsuite/util/regression/rand/assoc/detail/subscript_fn_imps.hpp: Same.
1225         * testsuite/util/regression/rand/assoc/detail/cmp_fn_imps.hpp: Same.
1226         * testsuite/util/regression/rand/assoc/detail/policy_access_fn_imps.hpp: Same.
1227         * testsuite/util/regression/rand/assoc/detail/defs_fn_imps.hpp: Same.
1228         * testsuite/util/regression/rand/assoc/detail/it_conversion_fn_imps.hpp: Same.
1229         * testsuite/util/regression/rand/assoc/detail/diagnostic_fn_imps.hpp: Same.
1230         * testsuite/util/regression/rand/assoc/detail/clear_fn_imps.hpp: Same.
1231         * testsuite/util/regression/rand/assoc/detail/get_set_load_fn_imps.hpp: Same.
1232         * testsuite/util/regression/rand/assoc/detail/operator_fn_imps.hpp: Same.
1233         * testsuite/util/regression/rand/assoc/detail/erase_fn_imps.hpp: Same.
1234         * testsuite/util/regression/rand/assoc/detail/resize_fn_imps.hpp: Same.
1235         * testsuite/util/regression/rand/assoc/detail/constructor_destructor_fn_imps.hpp: Same.
1236         * testsuite/util/regression/rand/assoc/detail/insert_fn_imps.hpp: Same.
1237         * testsuite/util/regression/rand/assoc/detail/split_join_fn_imps.hpp: Same.
1238         * testsuite/util/regression/rand/assoc/detail/get_set_loads_fn_imps.hpp: Same.
1239         * testsuite/util/regression/rand/assoc/rand_regression_test.hpp: Same.
1240         * testsuite/util/regression/rand/assoc/container_rand_regression_test.hpp: Same.
1241         * testsuite/util/regression/priority_queue: New.
1242         * testsuite/util/regression/priority_queue/common_type.hpp: Same.
1243         * testsuite/util/regression/basic_type.hpp: Same.
1244         * testsuite/util/regression/assoc: New.
1245         * testsuite/util/regression/assoc/common_type.hpp: Same.
1246         * testsuite/util/regression/res_mng: New.
1247         * testsuite/util/regression/res_mng/forced_exception.hpp: Same.
1248         * testsuite/util/regression/res_mng/dbg_ex_allocator_base.cc: Same.
1249         * testsuite/util/regression/res_mng/dbg_ex_allocator_base.hpp: Same.
1250         * testsuite/util/regression/res_mng/dbg_ex_allocator.hpp: Same.
1251         * testsuite/util/rng: New.
1252         * testsuite/util/rng/twister_rand_gen.cc: Same.
1253         * testsuite/util/rng/twister_rand_gen.hpp: Same.
1254         * testsuite/util/native_type: New.
1255         * testsuite/util/native_type/priority_queue: New.
1256         * testsuite/util/native_type/priority_queue/native_priority_queue.hpp: Same.
1257         * testsuite/util/native_type/priority_queue/native_pq_tag.hpp: Same.
1258         * testsuite/util/native_type/assoc: New.
1259         * testsuite/util/native_type/assoc/native_multimap.hpp: Same.
1260         * testsuite/util/native_type/assoc/native_tree_tag.hpp: Same.
1261         * testsuite/util/native_type/assoc/native_set.hpp: Same.
1262         * testsuite/util/native_type/assoc/native_hash_multimap.hpp: Same.
1263         * testsuite/util/native_type/assoc/native_map.hpp: Same.
1264         * testsuite/util/native_type/assoc/native_hash_tag.hpp: Same.
1265         * testsuite/util/native_type/assoc/native_hash_set.hpp: Same.
1266         * testsuite/util/native_type/assoc/native_hash_map.hpp: Same.
1267         * testsuite/util/common_type: New.
1268         * testsuite/util/common_type/priority_queue
1269         * testsuite/util/common_type/priority_queue/common_type.hpp: Same.
1270         * testsuite/util/common_type/priority_queue/string_form.hpp: Same.
1271         * testsuite/util/common_type/priority_queue/detail
1272         * testsuite/util/common_type/priority_queue/detail/ds_string_form.hpp: Same.
1273         * testsuite/util/common_type/assoc: New.
1274         * testsuite/util/common_type/assoc/common_type.hpp: Same.
1275         * testsuite/util/common_type/assoc/string_form.hpp: Same.
1276         * testsuite/util/common_type/assoc/template_policy.hpp: Same.
1277         * testsuite/util/common_type/assoc/detail: New.
1278         * testsuite/util/common_type/assoc/detail/resize_policy_string_form.hpp: Same.
1279         * testsuite/util/common_type/assoc/detail/trigger_policy_string_form.hpp: Same.
1280         * testsuite/util/common_type/assoc/detail/ds_string_form.hpp: Same.
1281         * testsuite/util/common_type/assoc/detail/comb_hash_fn_string_form.hpp: Same.
1282         * testsuite/util/common_type/assoc/detail/size_policy_string_form.hpp: Same.
1283         * testsuite/util/common_type/assoc/detail/probe_fn_string_form.hpp: Same.
1284         * testsuite/util/common_type/assoc/detail/tree_supports_order_statistics.hpp: Same.
1285         * testsuite/util/common_type/assoc/detail/trie_supports_prefix_search.hpp: Same.
1286         * testsuite/util/common_type/assoc/detail/list_update_policy_string_form.hpp: Same.
1287         * testsuite/util/common_type/assoc/detail/trie_supports_order_statistics.hpp: Same.
1288         * testsuite/util/common_type/assoc/detail/store_hash_string_form.hpp: Same.
1289         * testsuite/util/common_type/assoc/native_set.hpp: Same.
1290         * testsuite/util/performance: New.
1291         * testsuite/util/performance/priority_queue: New.
1292         * testsuite/util/performance/priority_queue/mem_usage: New.
1293         * testsuite/util/performance/priority_queue/mem_usage/pop_test.hpp: Same.
1294         * testsuite/util/performance/priority_queue/timing: New.
1295         * testsuite/util/performance/priority_queue/timing/push_pop_test.hpp: Same.
1296         * testsuite/util/performance/priority_queue/timing/push_test.hpp: Same.
1297         * testsuite/util/performance/priority_queue/timing/join_test.hpp: Same.
1298         * testsuite/util/performance/priority_queue/timing/modify_test.hpp: Same.
1299         * testsuite/util/performance/io: New.
1300         * testsuite/util/performance/io/xml_formatter.hpp: Same.
1301         * testsuite/util/performance/assoc: New.
1302         * testsuite/util/performance/assoc/mem_usage: New.
1303         * testsuite/util/performance/assoc/mem_usage/multimap_insert_test.hpp: Same.
1304         * testsuite/util/performance/assoc/mem_usage/erase_test.hpp: Same.
1305         * testsuite/util/performance/assoc/multimap_common_type.hpp: Same.
1306         * testsuite/util/performance/assoc/timing: New.
1307         * testsuite/util/performance/assoc/timing/common_type.hpp: Same.
1308         * testsuite/util/performance/assoc/timing/multimap_insert_test.hpp: Same.
1309         * testsuite/util/performance/assoc/timing/subscript_find_test.hpp: Same.
1310         * testsuite/util/performance/assoc/timing/find_test.hpp: Same.
1311         * testsuite/util/performance/assoc/timing/subscript_insert_test.hpp: Same.
1312         * testsuite/util/performance/assoc/timing/insert_test.hpp: Same.
1313         * testsuite/util/performance/assoc/timing/tree_order_statistics_test.hpp: Same.
1314         * testsuite/util/performance/assoc/timing/multimap_find_test.hpp: Same.
1315         * testsuite/util/performance/assoc/timing/tree_split_join_test.hpp: Same.
1316         * testsuite/util/performance/time: New.
1317         * testsuite/util/performance/time/elapsed_timer.cc: Same.
1318         * testsuite/util/performance/time/elapsed_timer.hpp: Same.
1319         * testsuite/util/performance/time/timing_test_base.hpp: Same.
1320         * testsuite/util/performance/mem: New.
1321         * testsuite/util/performance/mem/mem_track_allocator_base.hpp: Same.
1322         * testsuite/util/performance/mem/mem_track_allocator.hpp: Same.
1323         * testsuite/util/hash_fn: New.
1324         * testsuite/util/hash_fn/limit_string_hash_fn.hpp: Same.
1325         * testsuite/util/hash_fn/string_ranged_hash_fn.hpp: Same.
1326         * testsuite/util/hash_fn/string_hash_fn.hpp: Same.
1327         * testsuite/util/hash_fn/string_ranged_probe_fn.hpp: Same.
1328         * testsuite/util/hash_fn/dna_str_limit.hpp: Same.
1329         * testsuite/util/io: New.
1330         * testsuite/util/io/prog_bar.cc: Same.
1331         * testsuite/util/io/prog_bar.hpp: Same.
1332         * testsuite/util/io/text_populate.hpp: Same.
1333         * testsuite/util/io/xml.hpp: Same.
1334         * testsuite/util/io/illegal_input_error.hpp: Same.
1335         * testsuite/util/io/xml_test_formatter.hpp: Same.
1336         * testsuite/util/io/verified_cmd_line_input.cc: Same.
1337         * testsuite/util/io/verified_cmd_line_input.hpp: Same.
1338         * testsuite/util/statistic: New.
1339         * testsuite/util/statistic/sample_var.hpp: Same.
1340         * testsuite/util/statistic/res_recorder.hpp: Same.
1341         * testsuite/util/statistic/sample_mean.hpp: Same.
1342         * testsuite/util/statistic/sample_mean_confidence_checker.hpp: Same.
1343         
1344 2006-06-12  Paolo Carlini  <pcarlini@suse.de>
1345
1346         PR libstdc++/26970
1347         * config/locale/gnu/c_locale.h (__convert_from_v<>): Change to
1348         variadic function, instead of template function.
1349         * config/locale/generic/c_locale.h (__convert_from_v<>): Likewise.
1350         * include/bits/locale_facets.tcc (num_put<>::_M_insert_float):
1351         Adjust.
1352         (money_put<>::do_put(long double)): Likewise.
1353         * src/locale-misc-inst.cc: Remove.
1354         * src/Makefile.am: Adjust.
1355         * src/Makefile.in: Regenerate.
1356
1357 2006-06-09  Paolo Carlini  <pcarlini@suse.de>
1358
1359         * include/tr1/random (random_device::random_device(const
1360         std::string& = "/dev/urandom")): Open in binary mode.
1361
1362         * include/tr1/random (random_device::random_device(const
1363         std::string& = "rand")): Use mersenne_twister.
1364         (random_device::_M_strtoul): New.
1365         (random_device::operator()()): Update.
1366
1367         * include/tr1/random: Minor stylistic changes, consistently
1368         qualify with std::.
1369
1370 2006-06-09  Paolo Carlini  <pcarlini@suse.de>
1371
1372         * acinclude.m4 ([GLIBCXX_CHECK_RANDOM_TR1]): New, check for
1373         the availability of "/dev/random" and "/dev/urandom".
1374         * configure.ac: Use it.
1375         * include/tr1/random (random_device): Implement, a fall-back for
1376         systems not providing "/dev/random" and "/dev/urandom" included.
1377         * testsuite/tr1/5_numerical_facilities/random/random_device/
1378         cons/default.cc: New.
1379         * testsuite/tr1/5_numerical_facilities/random/random_device/
1380         cons/token.cc: Likewise.
1381         * testsuite/tr1/5_numerical_facilities/random/random_device/
1382         requirements/typedefs.cc: Likewise.
1383         * config.h.in: Regenerate.
1384         * configure: Likewise.
1385
1386         * testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
1387         cons/gen1.cc: Minor tweak, add bool test.
1388
1389 2006-06-06  Benjamin Kosnik  <bkoz@redhat.com>
1390
1391         * testsuite/util: New directory.
1392         * testsuite/testsuite_hooks.cc: Move to util sub-directory.
1393         * testsuite/testsuite_abi_check.cc: Same.
1394         * testsuite/testsuite_abi.cc: Same.
1395         * testsuite/testsuite_tr1.h: Same.
1396         * testsuite/testsuite_io.h: Same.
1397         * testsuite/testsuite_iterators.h: Same.
1398         * testsuite/testsuite_allocator.cc: Same.
1399         * testsuite/testsuite_allocator.h: Same.
1400         * testsuite/testsuite_hooks.h: Same.
1401         * testsuite/testsuite_character.cc: Same.
1402         * testsuite/testsuite_abi.h: Same.
1403         * testsuite/testsuite_character.h: Same.
1404         * testsuite/testsuite_visualization.h: Same.
1405         * testsuite/testsuite_performance.h: Same.
1406         * testsuite/testsuite_shared.cc: Same.
1407         * testsuite/testsuite_common_types.h: Same.
1408
1409         * testsuite/lib/libstdc++.exp (v3-build_support): Adjust paths.
1410         * testsuite/libstdc++-abi/abi.exp: Same.
1411         * testsuite/libstdc++-dg/conformance.exp: Remove any files in the
1412         utilities subdirectory from the list of test cases.
1413         
1414         * scripts/testsuite_flags.in (build-includes): Adjust path for
1415         testsuite includes.
1416         * scripts/create_testsuite_files (dlist): Don't let utility files
1417         creep into the testsuite_files list.
1418         
1419 2006-06-06  Paolo Carlini  <pcarlini@suse.de>
1420
1421         * include/tr1/random (mersenne_twister<>::operator==,
1422         operator!=, operator<<, operator>>): Implement.
1423         * testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
1424         operators/equal.cc: New.        
1425         * testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
1426         operators/not_equal.cc: Likewise.
1427         * testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
1428         operators/serialize.cc: Likewise.
1429
1430         * include/tr1/random (subtract_with_carry<>::operator==): Fix,
1431         compare the whole state; use std::equal.
1432
1433         * include/tr1/random: Minor formatting and style changes.
1434
1435 2006-06-06  Benjamin Kosnik  <bkoz@redhat.com>
1436
1437         * testsuite/tr1/5_numerical_facilies: Move to...
1438         * testsuite/tr1/5_numerical_facilities: ...this.        
1439
1440 2006-06-06  Paolo Carlini  <pcarlini@suse.de>
1441
1442         * include/tr1/random: Trivial uglification fixes.
1443         * include/tr1/random.tcc: Likewise.
1444
1445         * include/tr1/random (subtract_with_carry<>::
1446         subtract_with_carry(_IntType)): Fix parameter type to unsigned long.
1447         (subtract_with_carry<>::seed(_IntType)): Likewise.
1448         * include/tr1/random.tcc (subtract_with_carry<>::seed(_IntType)):
1449         Adjust.
1450
1451 2006-06-05  Paolo Carlini  <pcarlini@suse.de>
1452
1453         * include/tr1/random (mersenne_twister<>::seed()): Fix per
1454         tr1/5.1.4.2, p8.
1455         * include/tr1/random.tcc (mod_w): Add.
1456         (mersenne_twister<>::seed(unsigned long)): Fix per tr1/5.1.4.2, p9.
1457         (mersenne_twister<>::seed(Gen&, false_type)): Adjust to use mod_w.
1458         * testsuite/tr1/5_numerical_facilies/random/mt19937.cc: Fix
1459         expected result per tr1/5.1.5, p2.
1460         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
1461         cons/default.cc: Adjust.
1462
1463         * include/tr1/random (exponential_distribution<>::operator()()): Fix.
1464
1465 2006-06-05  Paolo Carlini  <pcarlini@suse.de>
1466
1467         * include/tr1/random.tcc (Max::value()): Cast 1 to Tp(1) and
1468         adjust shift count to w; rename as Max_w.
1469         (struct Mod_w): New.
1470         (mersenne_twister<>::seed(Gen&, false_type): Use the latter.
1471         (mersenne_twister<>::operator()()): Fix ~0ul to ~_UInt().
1472         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
1473         cons/default.cc: Fix ~0ul to 2^32-1.
1474         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
1475         cons/gen1.cc: Likewise.
1476
1477 2006-06-05  Stephen M. Webb  <stephen.webb@bregmasoft.com>
1478
1479         * include/tr1/random: New.
1480         * include/tr1/random.tcc: Likewise.
1481         * include/Makefile.am: Add.
1482         * testsuite/tr1/5_numerical_facilies/random/ranlux3.cc: New.
1483         * testsuite/tr1/5_numerical_facilies/random/ranlux4.cc: Likewise.
1484         * testsuite/tr1/5_numerical_facilies/random/mt19937.cc: Likewise.
1485         * testsuite/tr1/5_numerical_facilies/random/variate_generator/
1486         requirements/typedefs.cc: Likewise.
1487         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
1488         cons/seed1.cc: Likewise.
1489         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
1490         cons/seed2.cc: Likewise.
1491         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
1492         cons/default.cc: Likewise.
1493         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
1494         cons/gen1.cc: Likewise.
1495         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
1496         requirements/typedefs.cc: Likewise.
1497         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
1498         operators/equal.cc: Likewise.
1499         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
1500         operators/not_equal.cc: Likewise.
1501         * testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
1502         operators/serialize.cc: Likewise.
1503         * testsuite/tr1/5_numerical_facilies/random/uniform_real/
1504         requirements/typedefs.cc: Likewise.
1505         * testsuite/tr1/5_numerical_facilies/random/discard_block/
1506         requirements/requirements.cc: Likewise.
1507         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
1508         cons/seed1.cc: Likewise.
1509         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
1510         cons/seed2.cc: Likewise.
1511         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
1512         cons/default.cc: Likewise.
1513         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
1514         cons/gen1.cc: Likewise.
1515         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
1516         requirements/non_uint_neg.cc: Likewise.
1517         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
1518         requirements/typedefs.cc: Likewise.
1519         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
1520         operators/equal.cc: Likewise.
1521         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
1522         operators/not_equal.cc: Likewise.
1523         * testsuite/tr1/5_numerical_facilies/random/linear_congruential/
1524         operators/serialize.cc: Likewise.
1525         * testsuite/tr1/5_numerical_facilies/random/xor_combine/
1526         requirements/typedefs.cc: Likewise.
1527         * testsuite/tr1/5_numerical_facilies/random/minstd_rand.cc: Likewise.
1528         * testsuite/tr1/5_numerical_facilies/random/minstd_rand0.cc: Likewise.
1529         * testsuite/tr1/5_numerical_facilies/random/uniform_int/
1530         cons/range.cc: Likewise.
1531         * testsuite/tr1/5_numerical_facilies/random/uniform_int/
1532         cons/default.cc: Likewise.
1533         * testsuite/tr1/5_numerical_facilies/random/uniform_int/
1534         cons/range_neg.cc: Likewise.
1535         * testsuite/tr1/5_numerical_facilies/random/uniform_int/
1536         requirements/typedefs.cc: Likewise.
1537         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
1538         cons/seed1.cc: Likewise.
1539         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
1540         cons/seed2.cc: Likewise.
1541         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
1542         cons/default.cc: Likewise.
1543         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
1544         cons/gen1.cc: Likewise.
1545         * testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
1546         requirements/typedefs.cc: Likewise.
1547         * include/Makefile.in: Regenerate.
1548         * testsuite/tr1/headers.cc: Update.
1549
1550 2006-06-04  Paolo Carlini  <pcarlini@suse.de>
1551
1552         PR libstdc++/27867
1553         * include/bits/valarray_before.h (struct _BinClos<_Oper, _ValArray,
1554         _ValArray, _Tp, _Tp>): Fix value_type typedef.
1555         * testsuite/26_numerics/valarray/27867.cc: New.
1556
1557 2006-05-29  Paolo Carlini  <pcarlini@suse.de>
1558
1559         PR libstdc++/24692
1560         * include/bits/atomicity.h (__exchange_and_add_multi,
1561         __atomic_add_multi): New, depending on _GLIBCXX_ATOMIC_BUILTINS,
1562         inline the atomic builtins.
1563         (__exchange_and_add_dispatch, __atomic_add_dispatch): Adjust.
1564         * configure.ac: Define _GLIBCXX_ATOMIC_BUILTINS when the atomic
1565         builtins are available.
1566         * configure: Regenerate.
1567         * config.h.in: Likewise.
1568
1569 2006-05-27  Paolo Carlini  <pcarlini@suse.de>
1570
1571         * configure.host: If the CPU provides atomic builtins select
1572         generic/atomic_builtins/atomicity.h.
1573         * config/cpu/generic/atomic_builtins/atomicity.h: Add.
1574         * config/cpu/powerpc/atomicity.h: Remove.
1575         * config/cpu/ia64/atomicity.h: Likewise.
1576         * config/cpu/alpha/atomicity.h: Likewise.
1577         * config/cpu/s390/atomicity.h: Likewise.
1578
1579 2006-05-26  Carlos O'Donell  <carlos@codesourcery.com>
1580
1581         * Makefile.am: Add install-html target. Add install-html to .PHONY
1582         * Makefile.in: Regenerate.
1583
1584 2006-05-24  Paolo Carlini  <pcarlini@suse.de>
1585
1586         PR libstdc++/24704
1587         * include/bits/atomicity.h (__exchange_and_add_single,
1588         __atomic_add_single): New, single thread versions of the atomic
1589         functions.
1590         (__exchange_and_add_dispatch, __atomic_add_dispatch): New,
1591         depending on __GTHREADS and __gthread_active_p() dispatch either
1592         to the above or to the existing atomic functions.
1593         * include/ext/pool_allocator.h: Update callers.
1594         * include/ext/rc_string_base.h: Likewise.
1595         * include/bits/locale_classes.h: Likewise.
1596         * include/bits/basic_string.h: Likewise.
1597         * include/bits/ios_base.h: Likewise.
1598         * include/tr1/boost_shared_ptr.h: Likewise.
1599         * src/ios.cc: Likewise.
1600         * src/locale.cc: Likewise.
1601         * src/ios_init.cc: Likewise.
1602
1603 2006-05-23  Paolo Carlini  <pcarlini@suse.de>
1604
1605         * testsuite/testsuite_shared.cc: Fix --enable-threads=single build.
1606
1607 2006-05-19  Paolo Carlini  <pcarlini@suse.de>
1608
1609         * testsuite/27_io/objects/wchar_t/9661-1.cc: Avoid leaking the
1610         semaphores if a VERIFY fails.
1611         * testsuite/27_io/objects/wchar_t/7.cc: Likewise.
1612         * testsuite/27_io/objects/char/9661-1.cc: Likewise.
1613         * testsuite/27_io/objects/char/7.cc: Likewise.
1614         * testsuite/27_io/basic_filebuf/seekoff/char/26777.cc: Likewise.
1615         * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc: Likewise.
1616         * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise.
1617         * testsuite/27_io/basic_filebuf/close/char/4879.cc: Likewise.
1618         * testsuite/27_io/basic_filebuf/close/char/9964.cc: Likewise.
1619         * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Likewise.
1620
1621 2006-05-17  Paolo Carlini  <pcarlini@suse.de>
1622
1623         * include/tr1/hashtable (hashtable<>::m_find): Remove; update callers.
1624
1625         * include/tr1/hashtable (map_base<>::operator[]): Move out of line.
1626
1627         * include/tr1/hashtable (hashtable<>::m_insert(const value_type&,
1628         std::tr1::false_type)): Avoid memory leak risk for new_node.
1629
1630 2006-05-15  Paolo Carlini  <pcarlini@suse.de>
1631
1632         * include/tr1/hashtable (hashtable<>::m_find, m_insert_bucket): Add.
1633         (hashtable<>::find, m_insert(const value_type&, std::tr1::true_type),
1634         map_base<>::operator[]): Use the above.
1635         * testsuite/performance/23_containers/insert/unordered_map_array.cc:
1636         New.    
1637
1638         * include/tr1/hashtable (hashtable<>::find_node,
1639         insert(const value_type&, ...), erase_node): Rename to m_*, adjust
1640         callers.
1641         * include/tr1/hashtable: Minor cosmetic changes.
1642
1643 2006-05-13  Peter Doerfler  <gcc@pdoerfler.com>
1644
1645         * include/tr1/hashtable (identity<>::operator(),
1646         extract1st<>::operator()): Return by const ref.
1647
1648 2006-05-10  Steve Ellcey  <sje@cup.hp.com>
1649
1650         * testsuite/lib/libstdc++.exp (check_v3_target_cxa_atexit):
1651         Move to gcc subdir.
1652         * testsuite/lib/dg-options.exp (dg-require-iconv): Remove.
1653         (dg-require-cxa-atexit): Move to gcc subdir.
1654
1655 2006-05-10  Paolo Carlini  <pcarlini@suse.de>
1656             Peter Doerfler  <gcc@pdoerfler.com>
1657
1658         * include/tr1/hashtable (hashtable_iterator<>::hashtable_iterator(),
1659         hashtable_const_iterator<>::hashtable_const_iterator(),
1660         node_iterator<>::node_iterator(),
1661         node_const_iterator<>::node_const_iterator()): Add.
1662         (node_iterator<>::node_iterator(hash_node<>*),
1663         node_const_iterator<>::node_const_iterator(hash_node<>*)): Tweak,
1664         remove default.
1665         * testsuite/tr1/6_containers/unordered/hashtable/
1666         iterators_default_constructor.c: New.
1667
1668 2006-05-10  Marc Glisse  <marc.glisse@normalesup.org>
1669
1670         * include/ext/pool_allocator.h: Add missing std:: qualifications.
1671         * include/ext/mt_allocator.h: Likewise.
1672         * include/ext/pb_assoc/detail/resize_policy/
1673         hash_load_check_resize_trigger_imp.hpp: Likewise.
1674         * include/ext/pb_assoc/detail/resize_policy/
1675         hash_standard_resize_policy_imp.hpp: Likewise.
1676         * include/ext/pb_assoc/detail/lu_policy/
1677         counter_lu_metadata_imp.hpp: Likewise.
1678         * include/ext/pb_assoc/detail/map_debug_base.hpp: Likewise.
1679         * libsupc++/eh_alloc.cc: Typo: memcpy -> memset.
1680
1681 2006-05-07  Paolo Carlini  <pcarlini@suse.de>
1682
1683         * include/tr1/type_traits (integral_constant<>::value): Define.
1684         * testsuite/tr1/4_metaprogramming/helper_classes/static_definition.cc:
1685         New.
1686
1687 2006-05-04  Douglas Gregor  <dgregor@cs.indiana.edu>
1688
1689         PR libstdc++/27404
1690         * include/ext/rope (_Rope_const_iterator<>::operator*() const,
1691         _Rope_iterator<>::operator*() const): Add.
1692
1693 2006-05-01  Paolo Carlini  <pcarlini@suse.de>
1694
1695         * acinclude.m4 (GLIBCXX_ENABLE_WCHAR_T): Always check the
1696         presence of wctype.h, for use in GLIBCXX_ENABLE_C99.
1697         * configure: Regenerate.
1698
1699 2006-04-29  Paolo Carlini  <pcarlini@suse.de>
1700
1701         * include/bits/locale_facets.tcc (num_get<>::_M_extract_float):
1702         Special case main parsing loop for !_M_allocated (i.e., "C" locale).
1703         (num_get<>::_M_extract_int): Likewise.
1704         * include/bits/locale_facets.h (num_get<>::_M_find): New.
1705
1706 2006-04-27  Benjamin Kosnik  <bkoz@redhat.com>
1707
1708         * docs/html/17_intro/TODO: Update.
1709         
1710 2006-04-26  Benjamin Kosnik  <bkoz@redhat.com>
1711
1712         PR libstdc++/26875
1713         * include/ext/array_allocator.h (array_allocator): _M_used, new
1714         data member.  
1715         * testsuite/ext/array_allocator/26875.cc: New.
1716         
1717 2006-04-26  Shantonu Sen  <ssen@opendarwin.org>
1718
1719          PR libstdc++/26513
1720          * scripts/make_exports.pl: Use $ENV{NM_FOR_TARGET}, if present.
1721
1722 2006-04-23  Marc Glisse  <marc.glisse@normalesup.org>
1723
1724         PR libstdc++/27199
1725         * ext/pool_allocator.h: Add using declarations for size_t, ptrdiff_t.
1726         * ext/bitmap_allocator.h: Likewise; qualify with std::.
1727         * ext/new_allocator.h: Likewise.
1728         * ext/malloc_allocator.h: Likewise.
1729         * ext/array_allocator.h: Likewise.
1730         * ext/mt_allocator.h: Likewise.
1731         * ext/functional: Likewise for size_t.
1732         * ext/debug_allocator.h: Likewise.
1733         * bits/char_traits.h: Qualify with std:: size_t.
1734         * debug/hash_multimap.h: Likewise.
1735
1736 2006-04-23  Paolo Carlini  <pcarlini@suse.de>
1737
1738         * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 42.
1739
1740 2006-04-19  Paolo Carlini  <pcarlini@suse.de>
1741
1742         PR libstdc++/26424
1743         * include/tr1/hashtable (X<>::primes): Extend for 64-bit machines.
1744         (X<>::n_primes): Adjust.
1745         (prime_rehash_policy::next_bkt, bkt_for_elements, need_rehash): Adjust.
1746
1747 2006-04-18  Paolo Carlini  <pcarlini@suse.de>
1748
1749         * docs/html/faq/index.html ([5.5]): Adjust to mention function
1750         objects and reference_wrapper; minor tweaks.
1751         * docs/html/faq/index.txt: Regenerate.
1752
1753 2006-04-16  Paolo Carlini  <pcarlini@suse.de>
1754
1755         PR libstdc++/6702 (again)
1756         * acinclude.m4 (GLIBCXX_ENABLE_C99): Don't check non-C99
1757         wchar_t functions...
1758         (GLIBCXX_ENABLE_WCHAR_T): ... do that here.
1759         * configure.ac: Adjust order of checks.
1760         * configure: Regenerate.
1761
1762 2006-04-14  Douglas Gregor  <dgregor@cs.indiana.edu>
1763
1764         PR libstdc++/27162
1765         * include/bits/stl_algo.h (__search_n(,,,, _BinaryPredicate,
1766         std::forward_iterator_tag)): Use __binary_pred, not ==.
1767
1768 2006-04-10  Matthias Klose  <doko@debian.org>
1769
1770         * testsuite/lib/libstdc++.exp (libstdc++_init): Recognize multilib
1771         directory names containing underscores.
1772
1773 2006-04-10  Paolo Carlini  <pcarlini@suse.de>
1774
1775         DR 538, [Ready]
1776         * include/bits/stl_algo.h (__unique_copy(,,, input_iterator_tag,
1777         output_iterator_tag), and predicated counterpart): Revert to the
1778         algorithm pre-DR 241, i.e., value_type of InputIterator is now
1779         required to be Assignable too.
1780         * testsuite/25_algorithms/unique_copy/3.cc: Remove.
1781         * docs/html/ext/howto.html: Add an entry for DR 538.
1782
1783 2006-03-29  Benjamin Kosnik  <bkoz@redhat.com>
1784
1785         * testsuite/data/sgetn.txt: Correct copyright holder.
1786         * testsuite/data/wistream_extractor_other-1.tst: Same.
1787         * testsuite/data/wistream_extractor_other-2.tst: Same.
1788         * testsuite/data/istream_extractor_other-1.txt: Same.
1789         * testsuite/data/filebuf_virtuals-1.txt: Same.
1790         * testsuite/data/wostream_inserter_other-1.tst: Same.
1791         * testsuite/data/wostream_inserter_other-2.tst: Same.
1792         * testsuite/data/ostream_inserter_other-1.tst: Same.
1793         * testsuite/data/ostream_inserter_other-2.tst: Same.
1794         * testsuite/data/wistream_extractor_other-1.txt: Same.
1795         * testsuite/data/istream_extractor_other-1.tst: Same.
1796         * testsuite/data/istream_extractor_other-2.tst: Same.
1797         * testsuite/data/filebuf_virtuals-1.tst: Same.
1798         * testsuite/27_io/basic_filebuf/sgetn/char/1-in.cc: Adjust test
1799         conditions.
1800         * testsuite/27_io/basic_filebuf/sgetn/char/1-io.cc: Same.
1801         * testsuite/27_io/basic_filebuf/sgetn/char/2-in.cc: Same.
1802         * testsuite/27_io/basic_filebuf/sgetn/char/2-io.cc: Same.
1803
1804 2006-03-28  Paolo Carlini  <pcarlini@suse.de>
1805
1806         * include/ext/vstring.h (operator[]): Allow s[s.size()] in
1807         debug mode, but not pedantic mode.
1808
1809 2006-03-24  Mark Mitchell  <mark@codesourcery.com>
1810             Joseph S. Myers  <joseph@codesourcery.com>
1811
1812         PR libstdc++/20448
1813         PR libstdc++/20451
1814         * scripts/testsuite_flags.in (--cxxflags): Don't define LOCALEDIR.
1815         * testsuite/lib/libstdc++.exp (libstdc++_init): Always define
1816         LOCALEDIR to ".".
1817         (v3-build_support): Build MO files.
1818
1819 2006-03-22  Paolo Carlini  <pcarlini@suse.de>
1820
1821         PR libstdc++/26777
1822         * include/bits/fstream.tcc (basic_filebuf<>::_M_seek): Check
1823         the return value of _M_file.seekoff.
1824         * testsuite/27_io/basic_filebuf/seekoff/char/26777.cc: New.
1825
1826 2006-03-21  Paolo Carlini  <pcarlini@suse.de>
1827
1828         PR libstdc++/25482
1829         * include/bits/stl_algobase.h (__copy_aux(_CharT*, _CharT*,
1830         ostreambuf_iterator<_CharT>), __copy_aux(const _CharT*, const _CharT*,
1831         ostreambuf_iterator<_CharT>), __copy_aux(istreambuf_iterator<_CharT>,
1832         istreambuf_iterator<_CharT>, _CharT*), copy(istreambuf_iterator<_CharT>,
1833         istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>)): Declare.
1834         * include/bits/stl_algo.h (find(istreambuf_iterator<_CharT>,
1835         istreambuf_iterator<_CharT>, _CharT)): Likewise.
1836         * include/bits/streambuf_iterator.h (copy(istreambuf_iterator<_CharT>,
1837         istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>),
1838         __copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>),
1839         __copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>),
1840         __copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
1841         _CharT*), find(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
1842         _CharT)): Define.
1843         (class istreambuf_iterator<>, class ostreambuf_iterator<>): Declare
1844         friends.
1845         * include/std/std_streambuf.h (class basic_streambuf<>): Likewise.
1846         * include/bits/cpp_type_traits.h (struct __is_char<>): Add.
1847         * testsuite/25_algorithms/copy/streambuf_iterators/char/1.cc: New.
1848         * testsuite/25_algorithms/copy/streambuf_iterators/char/2.cc: New.
1849         * testsuite/25_algorithms/copy/streambuf_iterators/char/3.cc: New.
1850         * testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc: New.
1851         * testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/1.cc: New.
1852         * testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/2.cc: New.
1853         * testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/3.cc: New.
1854         * testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/4.cc: New.
1855         * testsuite/25_algorithms/find/istreambuf_iterators/char/1.cc: New.
1856         * testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc: New.
1857         * testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/1.cc: New.
1858         * testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/2.cc: New.
1859         * testsuite/performance/25_algorithms/copy_streambuf_iterators.cc: New.
1860         * testsuite/performance/25_algorithms/find_istreambuf_iterators.cc: New.
1861
1862 006-03-13  Paolo Carlini  <pcarlini@suse.de>
1863
1864         * include/bits/postypes.h (fpos<>::operator==, operator!=): Remove,
1865         exploit conversion to streamoff.
1866         * testsuite/27_io/fpos/mbstate_t/5.cc: New.
1867
1868 2006-03-12  Howard Hinnant  <hhinnant@apple.com>
1869
1870         * testsuite/27_io/basic_filebuf/underflow/char/10097.cc:
1871         Fix race condition.
1872         * testsuite/27_io/objects/char/9661-1.cc: Likewise.
1873         * testsuite/27_io/objects/wchar_t/9661-1.cc: Likewise.
1874
1875 2006-03-10  Paolo Carlini  <pcarlini@suse.de>
1876
1877         * include/tr1/cmath: Add atan2 and pow bits; add using declarations.    
1878         * include/tr1/math.h: Add using declarations.
1879         * include/tr1/complex: Add using declarations.
1880         * testsuite/tr1/8_c_compatibility/cmath/functions.cc: Fully
1881         qualify calls.
1882         * testsuite/tr1/8_c_compatibility/cmath/overloads.cc: Likewise;
1883         add atan2 and pow bits.
1884         * testsuite/tr1/8_c_compatibility/complex/overloads_float.cc: Likewise.
1885         * testsuite/tr1/8_c_compatibility/complex/overloads_int.cc: Likewise;
1886         adjust polar bits.
1887
1888         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add checks for double_t
1889         and float_t typedefs.
1890         * include/tr1/cmath: Add double_t and float_t.
1891         * testsuite/tr1/8_c_compatibility/cmath/types.cc: New.
1892
1893         * include/tr1/ctgmath: New.
1894         * include/tr1/tgmath.h: Likewise.
1895         * include/Makefile.am: Add.
1896         * testsuite/tr1/headers.cc: Update.
1897
1898         * include/Makefile.in: Regenerate.
1899         * configure: Likewise.
1900
1901         * docs/html/ext/tr1.html: Update.
1902
1903 2006-03-08  Paolo Carlini  <pcarlini@suse.de>
1904
1905         Implement the resolution of DR 455, [DR].
1906         * src/ios_init.cc (ios_base::Init::Init()): Do it.
1907         * testsuite/27_io/objects/char/dr455.cc: New.
1908         * testsuite/27_io/objects/wchar_t/dr455.cc: Likewise.
1909         * docs/html/ext/howto.html: Add an entry for DR 455.
1910
1911 2006-03-07  Paolo Carlini  <pcarlini@suse.de>
1912
1913         * include/tr1/cmath: Add C99 overloads.
1914         * include/tr1/common.h (struct __promote_3): Add.
1915         * testsuite/tr1/8_c_compatibility/cmath/overloads.cc: New.
1916
1917         * testsuite/tr1/8_c_compatibility/cmath/functions.cc: Tweak.
1918         * testsuite/tr1/8_c_compatibility/complex/overloads_float.cc: Likewise.
1919
1920 2006-03-06  Paolo Carlini  <pcarlini@suse.de>
1921
1922         PR target/26532
1923         * config/io/c_io_stdio.h (struct __ios_flags): Remove.
1924         * include/bits/ios_base.h: Adjust consistently.
1925         (ios_base::_S_local_word_size): Change to an anonymous enum.
1926         * src/ios.cc: Do not define static const data of __ios_flags,
1927         likewise for ios_base::_S_local_word_size.      
1928         * include/bits/locale_classes.h (locale::_S_categories_size):
1929         Change to an anonymous enum.
1930         * src/locale.cc: Don't define.
1931
1932 2006-03-03  Paolo Carlini  <pcarlini@suse.de>
1933
1934         PR libstdc++/26526
1935         * config/abi/pre/gnu.ver (__copy_streambufs, 64-bit version): Add
1936         @GLIBCXX_3.4.8; move existing symbols @GLIBCXX_3.4.8 to 3.4.9.
1937         * configure.ac (libtool_VERSION): To 6:9:0.
1938         * testsuite/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.9.
1939         * configure: Regenerate.
1940
1941 2006-03-02  Paolo Carlini  <pcarlini@suse.de>
1942
1943         * config/abi/pre/gnu.ver: Adjust __copy_streambufs_eof export
1944         vs 64-bit arches.
1945
1946 2006-03-01  Paolo Carlini  <pcarlini@suse.de>
1947
1948         * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 41.
1949
1950 2006-02-27  Jakub Jelinek  <jakub@redhat.com>
1951
1952         PR other/26208
1953         * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use
1954         _Unwind_GetIPInfo instead of _Unwind_GetIP.
1955
1956 2006-02-27  Paolo Carlini  <pcarlini@suse.de>
1957
1958         PR libstdc++/14866
1959         * testsuite/27_io/ios_base/sync_with_stdio/1.cc: Redirect
1960         stderr instead.
1961
1962 2006-02-26  Paolo Carlini  <pcarlini@suse.de>
1963
1964         * include/tr1/cmath: Add templates (8.16.3).    
1965         * include/tr1/cstdbool: New.
1966         * include/tr1/stdbool.h: Likewise.
1967         * include/Makefile.am: Add.
1968         * testsuite/tr1/8_c_compatibility/cmath/templates.cc: New.
1969         * testsuite/tr1/headers.cc: Update.
1970         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <stdbool.h> check.
1971         * docs/html/ext/tr1.html: Update.
1972         * include/Makefile.in: Regenerate.
1973         * config.h.in: Likewise.
1974         * configure: Likewise.
1975
1976 2006-02-24  Paolo Carlini  <pcarlini@suse.de>
1977
1978         * include/tr1/array (array<>::swap, assign): Implement.
1979         * include/tr1/array (operator==, operator!=, operator<,
1980         operator>, operator>=, operator<=, swap, get): Inline.
1981         * testsuite/tr1/6_containers/array/requirements/member_swap.cc: New.
1982         * testsuite/tr1/6_containers/array/requirements/assign.cc: Likewise.
1983         * testsuite/tr1/6_containers/array/specialized_algorithms/swap.cc:
1984         Likewise.
1985
1986 2006-02-23  Benjamin Kosnik  <bkoz@redhat.com>
1987
1988         * testsuite/22_locale/codecvt/in/wchar_t/1.cc (test01): Change int
1989         to size_t. Use explicit static_cast for casts.
1990         * testsuite/22_locale/codecvt/in/wchar_t/6.cc (test06): Same.
1991         * testsuite/22_locale/codecvt/in/wchar_t/5.cc (test05): Same.
1992         * testsuite/ext/stdio_sync_filebuf/wchar_t/1.cc (test01): Same.
1993         
1994 2006-02-22  Paolo Carlini  <pcarlini@suse.de>
1995
1996         * docs/html/ext/pb_assoc/
1997         basic_tree_assoc_cntnr_const_node_iterator.html:Fix links
1998         * docs/html/ext/pb_assoc/basic_tree_assoc_cntnr_node_iterator.html:
1999         Likewise.
2000         * docs/html/ext/pb_assoc/hash_based_containers.html: Likewise.
2001         * docs/html/ext/pb_assoc/hash_standard_resize_policy.html: Likewise.
2002         * docs/html/ext/pb_assoc/interface.html: Likewise..
2003         * docs/html/ext/pb_assoc/list_updates.html: Likewise.
2004         * docs/html/ext/pb_assoc/lu_based_containers.html: Likewise.
2005         * docs/html/ext/pb_assoc/resize_policies.html: Likewise.
2006         * docs/html/ext/pb_assoc/sample_probe_fn.html: Likewise.
2007         * docs/html/ext/pb_assoc/sample_range_hashing.html: Likewise.
2008         * docs/html/ext/pb_assoc/sample_ranged_hash_fn.html: Likewise.
2009         * docs/html/ext/pb_assoc/sample_ranged_probe_fn.html: Likewise.
2010         * docs/html/ext/pb_assoc/sample_resize_policy.html: Likewise.
2011         * docs/html/ext/pb_assoc/tree_assoc_cntnr_const_node_iterator.html:
2012         Likewise.
2013         * docs/html/ext/pb_assoc/tree_assoc_cntnr_node_iterator.html: Likewise.
2014
2015 2006-02-22  Paolo Carlini  <pcarlini@suse.de>
2016
2017         PR libstdc++/26132
2018         * include/tr1/hashtable (hashtable<>::rehash): Define.
2019         * testsuite/tr1/6_containers/unordered/hashtable/26132.cc: New.
2020
2021         * include/tr1/hashtable: Trivial formatting and stylistic fixes.
2022
2023         * testsuite/tr1/headers.cc: remove <tr1/hashtable>, not a tr1 header,
2024         only an implementation detail.
2025
2026 2006-02-22  Paolo Carlini  <pcarlini@suse.de>
2027
2028         * include/debug/list (splice): Remove splice_alloc check, redundant
2029         after implementing the splice bits of N1599.
2030
2031 2006-02-21  Benjamin Kosnik  <bkoz@redhat.com>
2032
2033         * include/c_std/cmath.tcc: Use _GLIBCXX_BEGIN_NAMESPACE,
2034         _GLIBCXX_END_NAMESPACE.
2035
2036 2006-02-21  Benjamin Kosnik  <bkoz@redhat.com>
2037
2038         * include/bits/c++config: Simplify debug namespaces.
2039         * include/ext/hash_set: Specialize insert_iterator after norm,
2040         debug containers have been (optionally) declared. Use nested
2041         namespaces.     
2042         * include/ext/hash_map: Same.
2043         * include/debug/hash_map.h (insert): Add specialization for value
2044         pointer types.
2045         * include/debug/hash_set.h (insert): Same.
2046         * include/debug/hash_multimap.h: Change __gnu_debug_def to __debug.
2047         * include/debug/set.h: Same.
2048         * include/debug/bitset: Same.
2049         * include/debug/multiset.h: Same.
2050         * include/debug/hash_multiset.h: Same.
2051         * include/debug/vector: Same.
2052         * include/debug/map.h: Same.
2053         * include/debug/deque: Same.
2054         * include/debug/list: Same.
2055         * include/debug/multimap.h. Same.
2056         * include/debug/macros.h: Use __gnu_debug.
2057         * include/debug/debug.h: Same.
2058         * include/debug/formatter.h: Same.
2059         * include/debug/safe_sequence.h: Same.
2060         * include/debug/functions.h: Same.
2061         * include/debug/safe_base.h: Same.
2062         * include/debug/safe_iterator.h: Same.
2063         * include/debug/safe_iterator.tcc: Same.
2064         (_M_invalidate): Adjust compare order.
2065         * include/debug/string: Change std::__gnu_debug to __gnu_debug.
2066         * include/ext/hashtable.h: Formatting fixes.
2067         * include/bits/stl_map.h: Formatting fixes.             
2068         * src/compatibility.cc: Adjust compatibility symbols for old debug
2069         mode model.     
2070         * src/debug_list.cc: Tweak.
2071         * src/debug.cc: Adjust namespaces.
2072         * docs/html/debug_mode.html: Adjust namespace names.
2073         * testsuite/25_algorithms/heap/heap.cc: Restore _GLIBCXX_DEBUG
2074         macro guards, as count values differ when in debug mode.        
2075         * testsuite/23_containers/vector/26412.cc: Move to...
2076         * testsuite/23_containers/vector/26412-1.cc: ... here.
2077         * testsuite/23_containers/vector/26412-2.cc: Add.
2078
2079         * include/ext/pb_assoc/detail/standard_policies.hpp
2080         (PB_ASSOC_HASH_NAMESPACE): Remove, use __gnu_cxx::hash_map and
2081         std::equal_to.
2082
2083         * configure.ac (libtool_VERSION): To 6:8:0.
2084         * configure: Regenerate.
2085         * config/abi/pre/gnu.ver: Revert to exporting __gnu_debug symbols.
2086         (GLIBCXX_3.4.8): New.
2087         * testsuite/testsuite_abi.cc: Add GLIBCXX_3.4.8 to known versions.
2088         
2089 2006-02-21  Paolo Carlini  <pcarlini@suse.de>
2090
2091         * include/tr1/hashtable: Trivial formatting fixes.
2092
2093 2006-02-20  Paolo Carlini  <pcarlini@suse.de>
2094
2095         Revert recent commit for libstdc++/26211, now suspended waiting for
2096         DR 342 (reopened) to reach a new resolution.
2097         * include/bits/istream.tcc (basic_istream<>::tellg, seekg(pos_type),
2098         seekg(off_type, ios_base::seekdir)): Remove sentry.
2099         * testsuite/27_io/basic_istream/seekg/char/26211.cc: Remove.
2100         * testsuite/27_io/basic_istream/seekg/wchar_t/26211.cc: Likewise.
2101         * testsuite/27_io/basic_istream/tellg/char/26211.cc: Likewise.
2102         * testsuite/27_io/basic_istream/tellg/wchar_t/26211.cc: Likewise.
2103         * testsuite/27_io/basic_istream/seekg/char/8348-1.cc: Revert changes.
2104         * testsuite/27_io/basic_istream/seekg/wchar_t/8348-1.cc: Likewise.
2105         * testsuite/27_io/basic_istream/seekg/char/8348-2.cc: Likewise.
2106         * testsuite/27_io/basic_istream/seekg/wchar_t/8348-1.cc: Likewise.
2107         * testsuite/27_io/basic_istream/tellg/char/8348.cc: Likewise.
2108         * testsuite/27_io/basic_istream/tellg/wchar_t/8348.cc: Likewise.
2109
2110 2006-02-19  Paolo Carlini  <pcarlini@suse.de>
2111
2112         * include/std/std_sstream.h (basic_stringbuf<>::setbuf): Simply
2113         clear the internal _M_string, adjust _M_sync call.
2114         * include/bits/sstream.tcc (basic_stringbuf<>::_M_sync): Adjust
2115         consistently for calls from setbuf.
2116
2117 2006-02-17  Paolo Carlini  <pcarlini@suse.de>
2118             Howard Hinnant  <hhinnant@apple.com>
2119
2120         PR libstdc++/26250
2121         * include/bits/sstream.tcc (basic_stringbuf<>::overflow): Tweak
2122         to leave epgtr() just past the new write position, as per the
2123         relevant bits of 27.7.1.3/8 (not changed by DR 432).
2124         * testsuite/27_io/basic_stringbuf/overflow/char/26250.cc: New.
2125         * testsuite/27_io/basic_stringbuf/overflow/wchar_t/26250.cc: Same.
2126
2127         * docs/html/ext/howto.html: Add entries for DR 169 and DR 432.
2128
2129         * include/std/std_sstream.h (basic_stringbuf<>::_M_sync): Move out
2130         of line...
2131         * include/bits/sstream.tcc: ... here.
2132
2133 2006-02-16  Joseph S. Myers  <joseph@codesourcery.com>
2134
2135         PR libstdc++/14939
2136         * config/os/uclibc/ctype_base.h, config/os/uclibc/ctype_inline.h,
2137         config/os/uclibc/ctype_noninline.h, config/os/uclibc/os_defines.h:
2138         New.
2139         * acinclude.m4 (GLIBCXX_CONFIGURE): Test whether using uClibc.
2140         * configure.host: Use os/uclibc for uClibc.
2141         * crossconfig.m4 (*-linux*): Use link tests.  Don't hardcode
2142         presence of math functions.
2143         * configure: Regenerate.
2144
2145 2006-02-12  Paolo Carlini  <pcarlini@suse.de>
2146
2147         PR libstdc++/26211
2148         * include/bits/istream.tcc (basic_istream<>::tellg, seekg(pos_type),
2149         seekg(off_type, ios_base::seekdir)): Construct a sentry, as per
2150         27.6.1.3/1.
2151         * testsuite/27_io/basic_istream/seekg/char/26211.cc: New.
2152         * testsuite/27_io/basic_istream/seekg/wchar_t/26211.cc: Likewise.
2153         * testsuite/27_io/basic_istream/tellg/char/26211.cc: Likewise.
2154         * testsuite/27_io/basic_istream/tellg/wchar_t/26211.cc: Likewise.
2155         * testsuite/27_io/basic_istream/seekg/char/8348-1.cc: Adjust.
2156         * testsuite/27_io/basic_istream/seekg/wchar_t/8348-1.cc: Likewise.
2157         * testsuite/27_io/basic_istream/seekg/char/8348-2.cc: Likewise.
2158         * testsuite/27_io/basic_istream/seekg/wchar_t/8348-1.cc: Likewise.
2159         * testsuite/27_io/basic_istream/tellg/char/8348.cc: Likewise.
2160         * testsuite/27_io/basic_istream/tellg/wchar_t/8348.cc: Likewise.
2161
2162 2006-02-10  Paolo Carlini  <pcarlini@suse.de>
2163
2164         PR libstdc++/26181
2165         * include/bits/streambuf.tcc (__copy_streambufs_eof): New, like
2166         the existing __copy_streambufs but reporting eof in input.
2167         (__copy_streambufs): Just use the latter.
2168         * src/streambuf.cc (__copy_streambufs_eof): Adjust specializations
2169         of __copy_streambufs.
2170         * include/bits/istream.tcc (operator>>(__streambuf_type*)): Use
2171         __copy_streambufs_eof instead.
2172         * include/std/std_streambuf.h: Adjust.
2173         * src/streambuf-inst.cc: Adjust.
2174         * config/abi/pre/gnu.ver: Export the new symbols.
2175         * testsuite/27_io/basic_istream/extractors_other/char/26181.cc: New.
2176         * testsuite/27_io/basic_istream/extractors_other/wchar_t/26181.cc:
2177         Likewise.
2178         * testsuite/27_io/basic_istream/extractors_other/char/1.cc: Adjust.
2179         * testsuite/27_io/basic_istream/extractors_other/wchar_t/1.cc:
2180         Likewise.
2181
2182 2006-02-08  Benjamin Kosnik  <bkoz@redhat.com>
2183
2184         PR libstdc++/26142
2185         * include/debug/debug.h: Move debug alias inside namespace std,
2186         same with namespace __gnu_cxx. Add top-level __gnu_debug
2187         namespace.      
2188         * include/debug/hash_multimap.h: Nest within __gnu_cxx, not
2189         std. Also, change nesting namespace name from __gnu_debug_def to
2190         __gnu_debug.    
2191         * include/debug/hash_map.h: Same.
2192         * include/debug/hash_multiset.h: Same.
2193         * include/debug/hash_set.h: Same.
2194         * docs/html/debug.html: Same.
2195         * testsuite/23_containers/vector/26412.cc: New.
2196         * testsuite/23_containers/vector/invalidation/1.cc:  Correct
2197         qualifications for debug namespace change.
2198         * testsuite/23_containers/vector/invalidation/2.cc: Same.
2199         * testsuite/23_containers/vector/invalidation/3.cc: Same.
2200         * testsuite/23_containers/vector/invalidation/4.cc: Same.
2201         * testsuite/23_containers/deque/invalidation/1.cc: Same.
2202         * testsuite/23_containers/deque/invalidation/2.cc: Same.
2203         * testsuite/23_containers/deque/invalidation/3.cc: Same.
2204         * testsuite/23_containers/deque/invalidation/4.cc: Same.
2205         * testsuite/23_containers/multiset/invalidation/1.cc: Same.
2206         * testsuite/23_containers/multiset/invalidation/2.cc: Same.
2207         * testsuite/23_containers/multimap/invalidation/1.cc: Same.
2208         * testsuite/23_containers/multimap/invalidation/2.cc: Same.
2209         * testsuite/23_containers/bitset/invalidation/1.cc: Same.
2210         * testsuite/23_containers/bitset/cons/16020.cc: Same.
2211         * testsuite/23_containers/bitset/operations/13838.cc: Same.
2212         * testsuite/23_containers/list/invalidation/1.cc: Same.
2213         * testsuite/23_containers/list/invalidation/2.cc: Same.
2214         * testsuite/23_containers/list/invalidation/3.cc: Same.
2215         * testsuite/23_containers/list/invalidation/4.cc: Same.
2216         * testsuite/23_containers/set/invalidation/1.cc: Same.
2217         * testsuite/23_containers/set/invalidation/2.cc: Same.
2218         * testsuite/23_containers/map/invalidation/1.cc: Same.
2219         * testsuite/23_containers/map/invalidation/2.cc: Same.
2220         * testsuite/23_containers/map/modifiers/insert/16813.cc: Same.
2221         * testsuite/21_strings/basic_string/2.cc: Same.
2222
2223 2006-02-08  Paolo Carlini  <pcarlini@suse.de>
2224
2225         PR libstdc++/26133  (DR 241, [WP])
2226         * include/bits/stl_algo.h (__unique_copy(,,, forward_iterator_tag,
2227         output_iterator_tag), __unique_copy(,,, input_iterator_tag,
2228         output_iterator_tag), __unique_copy(,,, input_iterator_tag,
2229         forward_iterator_tag), and predicated counterparts): Add.
2230         (__unique_copy(,,, output_iterator_tag), __unique_copy(,,,
2231         forward_iterator_tag), and predicated counterparts): Remove.
2232         (unique_copy): Adjust, dispatch to the three helpers above.
2233         * testsuite/25_algorithms/unique_copy/2.cc: New.
2234         * testsuite/25_algorithms/unique_copy/26133.cc: Likewise.
2235         * testsuite/25_algorithms/unique_copy/3.cc: Likewise.   
2236         * docs/html/ext/howto.html: Add an entry for DR 241.
2237
2238         * testsuite/25_algorithms/unique_copy/1.cc: Minor cosmetic changes.
2239
2240 2006-02-07  Jakub Jelinek  <jakub@redhat.com>
2241             Benjamin Kosnik  <bkoz@redhat.com>
2242
2243         * configure.ac (_GLIBCXX_LONG_DOUBLE_COMPAT): New check.
2244         If true, set also port_specific_symbol_files and create
2245         as_symver_specs.
2246         (GLIBCXX_LDBL_COMPAT): New GLIBCXX_CONDITIONAL.
2247         * configure: Rebuilt.
2248         * config.h.in: Rebuilt.
2249         * config/os/gnu-linux/ldbl-extra.ver: New file.
2250         * config/abi/pre/gnu.ver: Make sure no __float128 symbols are
2251         exported.
2252         * include/bits/c++config (_GLIBCXX_LONG_DOUBLE_COMPAT,
2253         _GLIBCXX_LDBL_NAMESPACE, _GLIBCXX_BEGIN_LDBL_NAMESPACE,
2254         _GLIBCXX_END_LDBL_NAMESPACE): Define.
2255         * include/bits/localefwd.h: Use them to conditionally scope facets.
2256         * include/bits/locale_facets.h: Surround std::{money,num}_{get,put}
2257         with _GLIBCXX_BEGIN_LDBL_NAMESPACE and _GLIBCXX_END_LDBL_NAMESPACE.
2258         Surround std::{money,num}_{get,put}
2259         with _GLIBCXX_BEGIN_LDBL_NAMESPACE and _GLIBCXX_END_LDBL_NAMESPACE.
2260         [_GLIBCXX_LONG_DOUBLE_COMPAT] (std::money_get): Add __do_get method.
2261         [_GLIBCXX_LONG_DOUBLE_COMPAT] (std::money_put): Add __do_put method.
2262         [_GLIBCXX_LONG_DOUBLE_COMPAT] (std::num_get): Add __do_get method.
2263         [_GLIBCXX_LONG_DOUBLE_COMPAT] (std::num_put): Add __do_put method.
2264         * include/bits/locale_facets.tcc: Surround std::{money,num}_{get,put}
2265         with _GLIBCXX_BEGIN_LDBL_NAMESPACE and _GLIBCXX_END_LDBL_NAMESPACE.
2266         (std::money_get::__do_get, std::money_put::__do_put,
2267         std::num_get::__do_get, std::num_put::__do_put): New
2268         specializations.
2269         * include/Makefile.am: Conditionally define
2270         _GLIBCXX_LONG_DOUBLE_COMPAT in c++config.
2271         * include/Makefile.in: Regenerate.
2272         * src/locale.cc [_GLIBCXX_LONG_DOUBLE_COMPAT] (_GLIBCXX_LOC_ID,
2273         _GLIBCXX_SYNC_ID): Define, use them.
2274         * src/compatibility-ldbl.cc: New file.
2275         * src/complex_io.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Add compatibility
2276         symbols.
2277         * src/limits.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
2278         * src/locale.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
2279         * src/locale-inst.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.   
2280         * src/locale-misc-inst.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
2281         * src/istream-inst.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
2282         * src/ostream-inst.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
2283         * src/locale.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
2284         * src/wlocale-inst.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
2285         * src/compatibility.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]: Likewise.
2286         * config/locale/generic/c_locale.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]:
2287         Likewise.
2288         * config/locale/gnu/c_locale.cc [_GLIBCXX_LONG_DOUBLE_COMPAT]:
2289         Likewise.
2290         * src/Makefile.am (libstdc++-symbol.ver): Append instead of
2291         insert in the middle if port specific symbol file requests it.
2292         (ldbl_compat_sources): New variable.
2293         (sources): Use it.
2294         (compatibility-ldbl.lo, compatibility-ldbl.o): New rules.
2295         * src/Makefile.in: Rebuilt.
2296         * testsuite/testsuite_abi.cc: Recognize GLIBCXX_LDBL_3.4,
2297         GLIBCXX_LDBL_3.4.7, CXXABI_LDBL_1.3.    
2298
2299 2006-02-07  Paolo Carlini  <pcarlini@suse.de>   
2300
2301         * include/tr1/hashtable: Trivial formatting fixes.
2302
2303 2006-02-07  Paolo Carlini  <pcarlini@suse.de>
2304             Zak Kipling  <zak@transversal.com>
2305
2306         PR libstdc++/26127
2307         * include/tr1/hashtable (hashtable<>::key_equal): Define.
2308         (hashtable<>::bucket, rehash_base<>::max_load_factor): Fix.
2309         * testsuite/tr1/6_containers/unordered/hashtable/26127.cc: New.
2310
2311 2006-02-07  Paolo Carlini  <pcarlini@suse.de>
2312
2313         * include/tr1/cmath: New.
2314         * include/tr1/cstdlib: Likewise.
2315         * include/tr1/ctime: Likewise.
2316         * include/tr1/math.h: Likewise. 
2317         * include/tr1/stdlib.h: Likewise.
2318         * include/Makefile.am: Add.
2319         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <math.h> checks.
2320         * testsuite/tr1/8_c_compatibility/cmath/functions.cc: New.
2321         * testsuite/tr1/8_c_compatibility/cstdlib/functions.cc: Likewise.
2322         * testsuite/tr1/8_c_compatibility/cstdlib/types.cc: Likewise.
2323         * testsuite/tr1/headers.cc: Update.     
2324
2325         * include/tr1/cinttypes: Do not provide abs and div, conflicting
2326         with the above overloads for _Longlong types.
2327         * include/tr1/inttypes.h: Adjust.
2328         * testsuite/tr1/8_c_compatibility/cinttypes/functions.cc: Adjust.
2329
2330         * docs/html/ext/tr1.html: Update.
2331         
2332         * testsuite/tr1/8_c_compatibility/cwchar/functions.cc: Tweak.
2333
2334         * include/Makefile.in: Regenerate.
2335         * config.h.in: Likewise.
2336         * configure: Likewise.
2337
2338 2006-02-07  Mark Mitchell  <mark@codesourcery.com>
2339
2340         * testsuite/testsuite_tr1.h (test_property): New function.
2341         * testsuite/tr1/4_metaprogramming/type_properties/extent/extent.cc 
2342         (test01) 
2343
2344 2006-02-05  Paolo Carlini  <pcarlini@suse.de>
2345
2346         * include/tr1/cstdio: New.
2347         * include/tr1/stdio.h: Likewise.
2348         * include/Makefile.am: Add.
2349         * testsuite/tr1/8_c_compatibility/cstdio/functions.cc: New.
2350         * testsuite/tr1/headers.cc: Update.     
2351         * docs/html/ext/tr1.html: Update.
2352
2353         * include/tr1/cwchar: Simplify, use _GLIBCXX_USE_C99, consistently
2354         with the facilities in std::.
2355         * include/tr1/cwctype: Likewise.
2356         * testsuite/tr1/8_c_compatibility/cwchar/functions.cc: Tweak.
2357         * testsuite/tr1/8_c_compatibility/cwctype/functions.cc: Likewise.
2358         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Remove <wchar.h> and
2359         <wctype.h> checks.
2360
2361         * include/Makefile.in: Regenerate.
2362         * config.h.in: Likewise.
2363         * configure: Likewise.
2364
2365 2006-02-04  Paolo Carlini  <pcarlini@suse.de>
2366
2367         * testsuite/tr1/8_c_compatibility/cwchar/functions.cc: Fix.
2368
2369 2006-02-04  Paolo Carlini  <pcarlini@suse.de>
2370
2371         * testsuite/27_io/basic_stringbuf/in_avail/char/21955.cc: Avoid
2372         warning on string constant.
2373
2374 2006-02-03  Paolo Carlini  <pcarlini@suse.de>
2375
2376         * include/tr1/cwchar: New.
2377         * include/tr1/cwctype: Likewise.
2378         * include/tr1/wchar.h: Likewise.
2379         * include/tr1/wctype.h: Likewise.
2380         * include/Makefile.am: Add.
2381         * testsuite/tr1/8_c_compatibility/cwchar/functions.cc: New.
2382         * testsuite/tr1/8_c_compatibility/cwctype/functions.cc: Likewise.
2383         * testsuite/tr1/headers.cc: Update.
2384         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <wchar.h> and
2385         <wctype.h> checks.
2386         * docs/html/ext/tr1.html: Update.
2387         * include/Makefile.in: Regenerate.
2388         * config.h.in: Likewise.
2389         * configure: Likewise.
2390
2391         * testsuite/tr1/8_c_compatibility/cctype/functions.cc: Cosmetic tweak.
2392
2393 2006-02-02  Paolo Carlini  <pcarlini@suse.de>
2394
2395         * include/tr1/cfloat: New.
2396         * include/tr1/climits: Likewise.                
2397         * include/tr1/cstdarg: Likewise.
2398         * include/tr1/ctype.h: Likewise.
2399         * include/tr1/fenv.h: Likewise.
2400         * include/tr1/float.h: Likewise.
2401         * include/tr1/inttypes.h: Likewise.
2402         * include/tr1/limits.h: Likewise.
2403         * include/tr1/stdint.h: Likewise.
2404         * include/tr1/stdarg.h: Likewise.
2405         * include/Makefile.am: Add.
2406         * include/Makefile.in: Regenerate.
2407         * docs/html/ext/tr1.html: Update.
2408         * testsuite/tr1/headers.cc: New.
2409
2410         * include/tr1/cctype: Include <cctype> instead.
2411
2412 2006-01-31  Paolo Carlini  <pcarlini@suse.de>
2413
2414         PR libstdc++/21554
2415         * include/tr1/array (array<>::_M_instance): Maximally align.
2416         * testsuite/ext/array_allocator/2.cc: Do not xfail for powerpc.
2417
2418 2006-01-31  Ed Smith-Rowland  <3dw4rd@verizon.net>
2419
2420         * docs/html/faq/index.html ([1.0]): Replace references to CVS
2421         with appropriate references to SVN.
2422         ([1.3]): Likewise.
2423         ([1.4]): Likewise.
2424         ([2.3]): Likewise.
2425         * docs/html/faq/index.txt: Regenerated.
2426
2427 2006-01-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2428
2429         * include/bits/valarray_array.h (__valarray_default_construct):
2430         Replace use __is_fundamental with __is_pod.
2431         (__valarray_fill_construct): Likewise.
2432         (__valarray_copy_construct): Likewise.
2433         (__valarray_destroy_elements): Likewise.
2434         (__valarray_copy): Likewise.
2435
2436 2006-01-30  Paolo Carlini  <pcarlini@suse.de>
2437
2438         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Do the <inttypes.h>
2439         checks only if the <stdint.h> checks are successful.
2440         * configure: Regenerate.
2441
2442 2006-01-30  Paolo Carlini  <pcarlini@suse.de>
2443
2444         * include/tr1/cinttypes: New.
2445         * include/Makefile.am: Add.
2446         * testsuite/tr1/8_c_compatibility/cinttypes/functions: New.     
2447         * testsuite/tr1/8_c_compatibility/cinttypes/types: Likewise.
2448         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <inttypes.h> checks.
2449         * docs/html/ext/tr1.html: Update.
2450         * include/Makefile.in: Regenerate.
2451         * config.h.in: Likewise.
2452         * configure: Likewise.
2453
2454         * testsuite/tr1/8_c_compatibility/cfenv/functions.cc: Cosmetic tweak.
2455         * testsuite/tr1/8_c_compatibility/cfenv/types.cc: Likewise.
2456
2457         * testsuite/tr1/8_c_compatibility/cstdint/types.cc: Fix, check in
2458         std::tr1.
2459
2460 2006-01-29  Paolo Carlini  <pcarlini@suse.de>
2461
2462         * include/tr1/cstdint: New.
2463         * include/Makefile.am: Add.
2464         * testsuite/tr1/8_c_compatibility/cstdint/types: New.
2465         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <stdint.h> checks.
2466         * docs/html/ext/tr1.html: Update.
2467         * include/Makefile.in: Regenerate.
2468         * config.h.in: Likewise.
2469         * configure: Likewise.
2470
2471         * testsuite/tr1/8_c_compatibility/cfenv/types.cc: Cosmetic tweak.
2472
2473 2006-01-29  Paolo Carlini  <pcarlini@suse.de>
2474
2475         PR libstdc++/26006
2476         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Tighten <ctype.h> and
2477         <fenv.h> checks.
2478         * configure: Regenerate.
2479
2480 2006-01-26  Paolo Carlini  <pcarlini@suse.de>
2481
2482         * include/std/std_bitset.h (bitset<>::_M_copy_to_string):
2483         Call the internal _Unchecked_set(size_t) instead of set.
2484
2485 2006-01-26  Paolo Carlini  <pcarlini@suse.de>
2486
2487         * docs/html/install.html ([Tools you will need beforehand]):
2488         Clarify that the de_DE locale is used by configure; clarify
2489         that missing localedata leads to skipped tests, not fails.
2490
2491 2006-01-26  Paolo Carlini  <pcarlini@suse.de>
2492
2493         * include/tr1/cfenv: New.
2494         * include/Makefile.am: Add.
2495         * testsuite/tr1/8_c_compatibility/cfenv/functions.cc: New.
2496         * testsuite/tr1/8_c_compatibility/cfenv/types.cc: Likewise.
2497         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): Add <fenv.h> checks.
2498         * docs/html/ext/tr1.html: Update; add note.
2499         * include/Makefile.in: Regenerate.
2500         * config.h.in: Likewise.
2501         * configure: Likewise.  
2502
2503         * testsuite/tr1/8_c_compatibility/complex/functions.cc: Tweak.
2504         * testsuite/tr1/8_c_compatibility/cctype/functions.cc: Likewise.
2505
2506         * docs/html/faq/index.html: Fix link to tr1.html text; fix
2507         formatting.
2508
2509 2006-01-25  Paolo Carlini  <pcarlini@suse.de>
2510
2511         * include/tr1/cctype: New.
2512         * include/Makefile.am: Add.
2513         * testsuite/tr1/8_c_compatibility/cctype/functions.cc: New.
2514         * include/Makefile.in: Regenerate.
2515
2516         * acinclude.m4 ([GLIBCXX_CHECK_C99_TR1]): New, check for C99
2517         support to TR1, Chapter 8.
2518         * configure.ac: Use it.
2519         * include/tr1/complex: Adjust.
2520         * config.h.in: Regenerate.
2521         * configure: Likewise.
2522
2523 2006-01-25  Benjamin Kosnik  <bkoz@redhat.com>
2524
2525         * docs/html/configopts.html: Tweak docs.
2526
2527         * libsupc++/eh_personality.cc: Fix typos.
2528
2529 2006-01-24  Paolo Carlini  <pcarlini@suse.de>
2530
2531         PR libstdc++/25649
2532         * include/std/std_istream.h (operator>>(short&), operator>>(int&)):
2533         Move out of line...
2534         * include/bits/istream.tcc: ... here.
2535         * include/std/std_ostream.h (operator<<(short), operator<<(int)):
2536         Move out of line...
2537         * include/bits/ostream.tcc: ... here.
2538
2539 2006-01-24  Ed Smith-Rowland  <3dw4rd@verizon.net>
2540
2541         * docs/html/faq/index.html ([5.2]): Mention TR1 and point to
2542         paragraph [5.5], describing it.
2543         ([5.5]): New.
2544         * docs/html/ext/tr1.html: New.
2545
2546 2006-01-20  Benjamin Kosnik  <bkoz@redhat.com>
2547
2548         * acinclude.m4 (GLIBCXX_CHECK_LINKER_FEATURES): Verbose ld version
2549         reporting.  Disable --gc-sections for old binutils, by version.
2550         * configure: Regenerate.
2551
2552 2006-01-20  Joseph S. Myers  <joseph@codesourcery.com>
2553
2554         PR libstdc++/25524
2555         * include/Makefile.am: Install host-specific headers in multilib
2556         subdirectory.
2557         * include/Makefile.in: Regenerate.
2558
2559 2006-01-19  Paolo Carlini  <pcarlini@suse.de>
2560
2561         Implement list::splice (and merge) bits of N1599
2562         * include/bits/stl_list.h (list<>::_M_check_equal_allocators): New.
2563         (list<>::splice(iterator, list&), splice(iterator, list&, iterator),
2564         splice(iterator, list&, iterator, iterator)): Use it.
2565         * include/bits/list.tcc (list<>::merge(list&), merge(list&,
2566         _StrictWeakOrdering)): Likewise.
2567         * testsuite/23_containers/list/operators/5.cc: New.
2568
2569 2006-01-19  H.J. Lu  <hongjiu.lu@intel.com>
2570
2571         PR libstdc++/25797
2572         * acinclude.m4 (GLIBCXX_CHECK_LINKER_FEATURES): Remove -Werror
2573         from CFLAGS.  Check if linker really supports --gc-sections.
2574         * configure: Regenerated.
2575
2576 2006-01-18  Paul Brook  <paul@codesourcery.com>
2577
2578         * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort.
2579
2580 2006-01-18  Paolo Carlini  <pcarlini@suse.de>
2581
2582         * include/bits/allocator.h: Include <bits/cpp_type_traits.h>.
2583
2584 2006-01-18  Perry Smith  <pedz@easesoftware.net>
2585
2586         PR libstdc++/25823
2587         PR libstdc++/25824
2588         * libsupc++/eh_alloc.cc: Fix return type of memset declaration.
2589         * libsupc++/eh_globals.cc: If !_GLIBCXX_HOSTED declare malloc and free.
2590
2591 2006-01-18  Paolo Carlini  <pcarlini@suse.de>
2592
2593         * include/ext/pb_assoc/detail/value_type_adapter/
2594         value_type_adapter.hpp: Include <tr1/type_traits>.
2595         * include/ext/pb_assoc/detail/value_type_adapter/
2596         it_value_type_traits.hpp (it_value_type_traits_<>::value_type_holder):
2597         Use tr1::aligned_storage and tr1::alignment_of.
2598         (it_value_type_traits_<>::buf_t): Remove.
2599         (it_value_type_traits_<>::make_valid, recast): Adjust.
2600
2601 2006-01-16  Benjamin Kosnik  <bkoz@redhat.com>
2602
2603         PR libstdc++/25797
2604         * acinclude.m4 (GLIBCXX_CHECK_LINKER_FEATURES): Add -Werror to
2605         CFLAGS for --gc-sections test.  Correct compile test.
2606         * configure: Regenerated.
2607         
2608 2006-01-15  Paolo Carlini  <pcarlini@suse.de>
2609             Gabriel Dos Reis  <gdr@integrable-solutions.net>
2610
2611         PR libstdc++/25626
2612         * include/std/std_valarray.h (valarray(const slice_array<>&),
2613         valarray(const gslice_array<>&), valarray(const mask_array<>&),
2614         valarray(const indirect_array<>&), valarray(const _Expr<>&)):
2615         Forward to __valarray_copy_construct, not __valarray_copy.
2616         * include/bits/valarray_array.h
2617         (__valarray_copy_construct(_Array<>, _Array<>, _Array<>, size_t),
2618         __valarray_copy_construct(_Array<>, size_t, size_t, _Array<>)):
2619         New.
2620
2621 2006-01-15  Paolo Carlini  <pcarlini@suse.de>
2622
2623         * testsuite/tr1/8_c_compatibility/complex/overloads_int.cc:
2624         Fix norm test, use casts everywhere.
2625
2626 2006-01-14  Paolo Carlini  <pcarlini@suse.de>
2627
2628         * testsuite/testsuite_tr1.h: Add missing include; use std::__are_same.
2629
2630 2006-01-14  Paolo Carlini  <pcarlini@suse.de>
2631
2632         * testsuite/tr1/8_c_compatibility/complex/overloads_int.cc:
2633         Fix wrong test (don't pick by mistake the (const complex<>&, int)
2634         overload); add some.
2635
2636 2006-01-13  Paolo Carlini  <pcarlini@suse.de>
2637             Howard Hinnant  <hhinnant@apple.com>
2638
2639         * include/tr1/complex (arg, conj, imag, norm, polar, pow, real):
2640         Add, implementing TR1, 8.1.9.
2641         (__promote_2): New.
2642         * include/tr1/common.h: New, provides __promote, __promote_2.
2643         * include/Makefile.am: Add.
2644         * include/Makefile.in: Regenerate.
2645         * testsuite/testsuite_tr1.h (check_ret_type): New.
2646         * testsuite/tr1/8_c_compatibility/complex/overloads_int.cc: New.
2647         * testsuite/tr1/8_c_compatibility/complex/overloads_float.cc: New.
2648
2649 2006-01-12  Benjamin Kosnik  <bkoz@redhat.com>
2650
2651         * acinclude.m4(GLIBCXX_CHECK_LINKER_FEATURES): Enable
2652         --gc-sections in more cases.    
2653         * configure: Regenerate.
2654         * scripts/testsuite_flags.in: Remove SECTION_LDFLAGS.
2655         * scripts/testsuite_flags.in (cxxldflags): New.
2656         * testsuite/lib/libstdc++.exp (v3_target_compile): Add cxxldflags.
2657         (libstdc++_init ): Same.
2658                 
2659 2006-01-12  Jan Beulich  <jbeulich@novell.com>
2660
2661         * crossconfig.m4: Add AC_DEFINE-s for HAVE_HYPOT, HAVE_ISINF, and
2662         HAVE_ISNAN for *-*-netware*.
2663         * configure: Refresh.
2664
2665 2006-01-11  Benjamin Kosnik  <bkoz@redhat.com>
2666
2667         * acinclude.m4(GLIBCXX_CHECK_LINKER_FEATURES): Use -Wl,-z,relro if
2668         possible.  
2669         * configure: Regenerate.
2670
2671 2006-01-10  Paolo Carlini  <pcarlini@suse.de>
2672
2673         * include/tr1/complex: New file, hosts the additions to header
2674         <complex> described in TR1, Chapter 8 [tr.c99].
2675         * include/Makefile.am: Add.
2676         * include/Makefile.in: Regenerate.
2677         * testsuite/tr1/8_c_compatibility/complex/functions.cc: New.
2678
2679 2006-01-09  Paolo Carlini  <pcarlini@suse.de>
2680
2681         PR libstdc++/25658
2682         * testsuite/23_containers/deque/cons/assign/1.cc: Divide
2683         sizes by 10.
2684
2685 2006-01-08  Paolo Carlini  <pcarlini@suse.de>
2686
2687         PR libstdc++/22102 (insert as close to hint as possible)
2688         * include/bits/stl_tree.h (_Rb_tree<>::_M_insert_lower,
2689         _M_insert_equal_lower): New.
2690         (_M_insert_equal(iterator, const _Val&),
2691         _M_insert_equal(const_iterator, const _Val&)): Use the above.
2692         * docs/html/ext/howto.html: Add an entry for DR 233.
2693         * testsuite/23_containers/multiset/modifiers/insert/22102.cc: New.
2694         * testsuite/23_containers/multimap/modifiers/insert/22102.cc: New.
2695
2696         * testsuite/23_containers/set/insert/: Move...
2697         * testsuite/23_containers/set/modifiers/insert/: ...here.
2698         * testsuite/23_containers/map/insert/: Move...
2699         * testsuite/23_containers/map/modifiers/insert/: ...here.
2700         * testsuite/23_containers/multiset/insert/: Move...
2701         * testsuite/23_containers/multiset/modifiers/insert/: ...here.
2702
2703 2006-01-06  Paolo Carlini  <pcarlini@suse.de>
2704
2705         * include/bits/stl_tree.h (_Rb_tree<>::insert_unique): Rename
2706         to _M_insert_unique.
2707         (_Rb_tree<>::insert_equal): Rename to _M_insert_equal.
2708         * include/bits/stl_map.h (class map<>): Update callers.
2709         * include/bits/stl_set.h (class set<>): Likewise.
2710         * include/bits/stl_multimap.h (class multimap<>): Likewise.
2711         * include/bits/stl_multiset.h (class multiset<>): Likewise.
2712
2713 2006-01-06  Paolo Carlini  <pcarlini@suse.de>
2714
2715         * include/bits/stl_bvector.h (vector<bool>::erase(iterator,
2716         iterator)): Just use _M_erase_at_end.
2717
2718 2006-01-06  Paolo Carlini  <pcarlini@suse.de>
2719
2720         * include/bits/stl_bvector.h (class vector<bool>): Move all the
2721         helpers under protected access mode, consistently with the primary
2722         vector template.
2723         (vector<bool>::_M_erase_at_end): Add.
2724         (erase(iterator, iterator), clear, resize, _M_fill_assign,
2725         _M_assign_aux): Use it.
2726         * testsuite/23_containers/vector/bool/modifiers/erase/1.cc: New.
2727
2728 2006-01-06  Paolo Carlini  <pcarlini@suse.de>
2729
2730         Implement Option 3 of DR 431 for vector<bool>.
2731         * include/bits/stl_bvector.h (class _Bvector_base): Change to
2732         a struct, consistently with the primary vector template.
2733         (class vector<bool>): Adjust to protected inheritance, tidy
2734         typedefs.
2735         (_Bvector_base<>::_M_get_Bit_allocator): Add.
2736         (vector<bool>::vector(const vector&)): Use it.
2737         (_Bvector_base<>::get_allocator): Tidy.
2738         (vector<bool>::swap): Use __alloc_swap.
2739         * testsuite/23_containers/vector/bool/modifiers/swap/1.cc: New.
2740         * testsuite/23_containers/vector/bool/modifiers/swap/2.cc: New.
2741
2742 2006-01-05  Paolo Carlini  <pcarlini@suse.de>
2743         
2744         * testsuite/testsuite_hooks.h (test_tm(unsigned)): Change to
2745         take all the tm members.
2746         * testsuite/testsuite_hooks.cc (test_tm): Adjust.
2747         * testsuite/22_locale/time_put/put/wchar_t/10.cc: Update.
2748         * testsuite/22_locale/time_put/put/wchar_t/1.cc: Likewise.
2749         * testsuite/22_locale/time_put/put/wchar_t/2.cc: Likewise.
2750         * testsuite/22_locale/time_put/put/wchar_t/3.cc: Likewise.
2751         * testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise.
2752         * testsuite/22_locale/time_put/put/wchar_t/5.cc: Likewise.
2753         * testsuite/22_locale/time_put/put/wchar_t/6.cc: Likewise.
2754         * testsuite/22_locale/time_put/put/wchar_t/7.cc: Likewise.
2755         * testsuite/22_locale/time_put/put/wchar_t/8.cc: Likewise.
2756         * testsuite/22_locale/time_put/put/wchar_t/9.cc: Likewise.
2757         * testsuite/22_locale/time_put/put/wchar_t/17038.cc: Likewise.
2758         * testsuite/22_locale/time_put/put/char/10.cc: Likewise.
2759         * testsuite/22_locale/time_put/put/char/1.cc: Likewise.
2760         * testsuite/22_locale/time_put/put/char/2.cc: Likewise.
2761         * testsuite/22_locale/time_put/put/char/3.cc: Likewise.
2762         * testsuite/22_locale/time_put/put/char/4.cc: Likewise.
2763         * testsuite/22_locale/time_put/put/char/5.cc: Likewise.
2764         * testsuite/22_locale/time_put/put/char/6.cc: Likewise.
2765         * testsuite/22_locale/time_put/put/char/7.cc: Likewise.
2766         * testsuite/22_locale/time_put/put/char/8.cc: Likewise.
2767         * testsuite/22_locale/time_put/put/char/9.cc: Likewise.
2768         * testsuite/22_locale/time_put/put/char/17038.cc: Likewise.
2769         * testsuite/22_locale/time_get/get_year/wchar_t/1.cc: Likewise.
2770         * testsuite/22_locale/time_get/get_year/wchar_t/3.cc: Likewise.
2771         * testsuite/22_locale/time_get/get_year/char/1.cc: Likewise.
2772         * testsuite/22_locale/time_get/get_year/char/3.cc: Likewise.
2773         * testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Likewise.
2774         * testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Likewise.
2775         * testsuite/22_locale/time_get/get_monthname/char/1.cc: Likewise.
2776         * testsuite/22_locale/time_get/get_monthname/char/2.cc: Likewise.
2777         * testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Likewise.
2778         * testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Likewise.
2779         * testsuite/22_locale/time_get/get_weekday/wchar_t/3.cc: Likewise.
2780         * testsuite/22_locale/time_get/get_weekday/char/1.cc: Likewise.
2781         * testsuite/22_locale/time_get/get_weekday/char/2.cc: Likewise.
2782         * testsuite/22_locale/time_get/get_weekday/char/3.cc: Likewise.
2783         * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
2784         * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
2785         * testsuite/22_locale/time_get/get_date/wchar_t/1.cc: Likewise.
2786         * testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Likewise.
2787         * testsuite/22_locale/time_get/get_date/wchar_t/3.cc: Likewise.
2788         * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
2789         * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
2790         * testsuite/22_locale/time_get/get_date/char/1.cc: Likewise.
2791         * testsuite/22_locale/time_get/get_date/char/2.cc: Likewise.
2792         * testsuite/22_locale/time_get/get_date/char/3.cc: Likewise.
2793         * testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Likewise.
2794         * testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Likewise.
2795         * testsuite/22_locale/time_get/get_time/wchar_t/3.cc: Likewise.
2796         * testsuite/22_locale/time_get/get_time/wchar_t/4.cc: Likewise.
2797         * testsuite/22_locale/time_get/get_time/char/1.cc: Likewise.
2798         * testsuite/22_locale/time_get/get_time/char/2.cc: Likewise.
2799         * testsuite/22_locale/time_get/get_time/char/3.cc: Likewise.
2800         * testsuite/22_locale/time_get/get_time/char/4.cc: Likewise.
2801
2802 2006-01-05  Paolo Carlini  <pcarlini@suse.de>
2803         
2804         * testsuite/testsuite_hooks.h (test_tm(unsigned)): New.
2805         * testsuite/testsuite_hooks.cc (test_tm(unsigned)): Define.
2806         * testsuite/22_locale/time_put/put/wchar_t/10.cc: Use it.
2807         * testsuite/22_locale/time_put/put/wchar_t/1.cc: Likewise.
2808         * testsuite/22_locale/time_put/put/wchar_t/2.cc: Likewise.
2809         * testsuite/22_locale/time_put/put/wchar_t/3.cc: Likewise.
2810         * testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise.
2811         * testsuite/22_locale/time_put/put/wchar_t/5.cc: Likewise.
2812         * testsuite/22_locale/time_put/put/wchar_t/6.cc: Likewise.
2813         * testsuite/22_locale/time_put/put/wchar_t/7.cc: Likewise.
2814         * testsuite/22_locale/time_put/put/wchar_t/8.cc: Likewise.
2815         * testsuite/22_locale/time_put/put/wchar_t/9.cc: Likewise.
2816         * testsuite/22_locale/time_put/put/wchar_t/17038.cc: Likewise.
2817         * testsuite/22_locale/time_put/put/char/10.cc: Likewise.
2818         * testsuite/22_locale/time_put/put/char/1.cc: Likewise.
2819         * testsuite/22_locale/time_put/put/char/2.cc: Likewise.
2820         * testsuite/22_locale/time_put/put/char/3.cc: Likewise.
2821         * testsuite/22_locale/time_put/put/char/4.cc: Likewise.
2822         * testsuite/22_locale/time_put/put/char/5.cc: Likewise.
2823         * testsuite/22_locale/time_put/put/char/6.cc: Likewise.
2824         * testsuite/22_locale/time_put/put/char/7.cc: Likewise.
2825         * testsuite/22_locale/time_put/put/char/8.cc: Likewise.
2826         * testsuite/22_locale/time_put/put/char/9.cc: Likewise.
2827         * testsuite/22_locale/time_put/put/char/17038.cc: Likewise.
2828         * testsuite/22_locale/time_get/get_year/wchar_t/1.cc: Likewise.
2829         * testsuite/22_locale/time_get/get_year/wchar_t/3.cc: Likewise.
2830         * testsuite/22_locale/time_get/get_year/char/1.cc: Likewise.
2831         * testsuite/22_locale/time_get/get_year/char/3.cc: Likewise.
2832         * testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Likewise.
2833         * testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Likewise.
2834         * testsuite/22_locale/time_get/get_monthname/char/1.cc: Likewise.
2835         * testsuite/22_locale/time_get/get_monthname/char/2.cc: Likewise.
2836         * testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Likewise.
2837         * testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Likewise.
2838         * testsuite/22_locale/time_get/get_weekday/wchar_t/3.cc: Likewise.
2839         * testsuite/22_locale/time_get/get_weekday/char/1.cc: Likewise.
2840         * testsuite/22_locale/time_get/get_weekday/char/2.cc: Likewise.
2841         * testsuite/22_locale/time_get/get_weekday/char/3.cc: Likewise.
2842         * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
2843         * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
2844         * testsuite/22_locale/time_get/get_date/wchar_t/1.cc: Likewise.
2845         * testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Likewise.
2846         * testsuite/22_locale/time_get/get_date/wchar_t/3.cc: Likewise.
2847         * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
2848         * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
2849         * testsuite/22_locale/time_get/get_date/char/1.cc: Likewise.
2850         * testsuite/22_locale/time_get/get_date/char/2.cc: Likewise.
2851         * testsuite/22_locale/time_get/get_date/char/3.cc: Likewise.
2852         * testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Likewise.
2853         * testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Likewise.
2854         * testsuite/22_locale/time_get/get_time/wchar_t/3.cc: Likewise.
2855         * testsuite/22_locale/time_get/get_time/wchar_t/4.cc: Likewise.
2856         * testsuite/22_locale/time_get/get_time/char/1.cc: Likewise.
2857         * testsuite/22_locale/time_get/get_time/char/2.cc: Likewise.
2858         * testsuite/22_locale/time_get/get_time/char/3.cc: Likewise.
2859         * testsuite/22_locale/time_get/get_time/char/4.cc: Likewise.
2860
2861 2006-01-04  Paolo Carlini  <pcarlini@suse.de>
2862
2863         * include/ext/sso_string_base.h (__sso_string_base<>::_M_dataplus):
2864         Use _CharT_alloc_type as base class.
2865         (_M_get_allocator, _M_swap, _M_create, _M_destroy): Adjust.
2866         * include/ext/vstring.h (get_allocator): Tidy.
2867
2868 2006-01-04  Paolo Carlini  <pcarlini@suse.de>
2869
2870         Implement Option 3 of DR 431 for all the containers.
2871         * include/bits/allocator.h (struct __alloc_swap): Add, swaps
2872         allocators, optimized to nothing in case they are empty.
2873         * include/bits/stl_deque.h (deque<>::swap): Use it.
2874         * include/bits/stl_list.h (list<>::swap): Likewise.
2875         * include/bits/stl_tree.h (_Rb_tree<>::swap): Likewise.
2876         * include/bits/stl_vector.h (vector<>::swap): Likewise.
2877         * include/tr1/hashtable (hashtable<>::swap): Likewise.
2878         * include/ext/rc_string_base.h (__rc_string_base<>::_M_swap):
2879         Likewise.
2880         * include/ext/sso_string_base.h (__sso_string_base<>::_M_swap):
2881         Likewise.
2882         * include/ext/vstring_util.h (__vstring_utility<>::_Alloc_hider):
2883         Clean-up (now vstring uses the generic __alloc_swap facility).
2884         * include/tr1/unordered_map: Adjust includes.
2885         * include/tr1/unordered_set: Likewise.
2886         * docs/html/ext/howto.html: Add an entry for DR 431.
2887         * testsuite/23_containers/deque/modifiers/swap.cc: Move to...
2888         * testsuite/23_containers/deque/modifiers/swap/1.cc: ... here.          
2889         * testsuite/23_containers/deque/modifiers/swap/2.cc: New.
2890         * testsuite/23_containers/deque/modifiers/swap/3.cc: New.
2891         * testsuite/23_containers/list/modifiers/swap.cc: Move to...
2892         * testsuite/23_containers/list/modifiers/swap/1.cc: ... here.           
2893         * testsuite/23_containers/list/modifiers/swap/2.cc: New.
2894         * testsuite/23_containers/list/modifiers/swap/3.cc: New.
2895         * testsuite/23_containers/vector/modifiers/swap.cc: Move to...
2896         * testsuite/23_containers/vector/modifiers/swap/1.cc: ... here.         
2897         * testsuite/23_containers/vector/modifiers/swap/2.cc: New.
2898         * testsuite/23_containers/vector/modifiers/swap/3.cc: New.
2899         * testsuite/23_containers/set/modifiers/swap.cc: Move to...
2900         * testsuite/23_containers/set/modifiers/swap/1.cc: ... here.            
2901         * testsuite/23_containers/set/modifiers/swap/2.cc: New.
2902         * testsuite/23_containers/set/modifiers/swap/3.cc: New.
2903         * testsuite/23_containers/map/modifiers/swap.cc: Move to...
2904         * testsuite/23_containers/map/modifiers/swap/1.cc: ... here.            
2905         * testsuite/23_containers/map/modifiers/swap/2.cc: New.
2906         * testsuite/23_containers/map/modifiers/swap/3.cc: New.
2907         * testsuite/23_containers/multiset/modifiers/swap.cc: Move to...
2908         * testsuite/23_containers/multiset/modifiers/swap/1.cc: ... here.               
2909         * testsuite/23_containers/multiset/modifiers/swap/2.cc: New.
2910         * testsuite/23_containers/multiset/modifiers/swap/3.cc: New.
2911         * testsuite/23_containers/multimap/modifiers/swap.cc: Move to...
2912         * testsuite/23_containers/multimap/modifiers/swap/1.cc: ... here.               
2913         * testsuite/23_containers/multimap/modifiers/swap/2.cc: New.
2914         * testsuite/23_containers/multimap/modifiers/swap/3.cc: New.
2915         * testsuite/tr1/6_containers/unordered/swap/unordered_set/1.cc: New.    
2916         * testsuite/tr1/6_containers/unordered/swap/unordered_set/2.cc: New.
2917         * testsuite/tr1/6_containers/unordered/swap/unordered_map/1.cc: New.    
2918         * testsuite/tr1/6_containers/unordered/swap/unordered_map/2.cc: New.
2919         * testsuite/tr1/6_containers/unordered/swap/unordered_multiset/1.cc: New.       
2920         * testsuite/tr1/6_containers/unordered/swap/unordered_multiset/2.cc: New.
2921         * testsuite/tr1/6_containers/unordered/swap/unordered_multimap/1.cc: New.       
2922         * testsuite/tr1/6_containers/unordered/swap/unordered_multimap/2.cc: New.
2923
2924 2006-01-03  Paolo Carlini  <pcarlini@suse.de>
2925
2926         * include/bits/stl_list.h (_List_base<>::_M_get_Node_allocator): Add.
2927         (_M_get_Tp_allocator, get_allocator): Tidy.
2928         (list<>::list(const list&), insert(iterator, size_type, const
2929         value_type&), insert(iterator, _InputIterator, _InputIterator)):
2930         Use _M_get_Node_allocator.
2931         * include/bits/stl_tree.h (_Rb_tree<>::_M_get_Node_allocator()): Add.
2932         (_Rb_tree(const _Rb_tree<>&): Use it.
2933         * include/bits/stl_deque.h (_Deque_base<>::_M_get_map_allocator,
2934         get_allocator): Tidy.
2935         * include/bits/stl_vector.h (_Vector_base<>::get_allocator): Tidy.
2936         * testsuite/23_containers/map/operators/1_neg.cc: Adjust dg-error
2937         line numbers.
2938         * testsuite/23_containers/set/operators/1_neg.cc: Likewise.
2939         
2940         * testsuite/testsuite_allocator.h (uneq_allocator<>::swap): Fix.
2941
2942         * testsuite/testsuite_allocator.h (class uneq_allocator): A simple
2943         non-empty testing allocator which can be endowed of a "personality"
2944         at construction time.
2945
2946 2006-01-03  Paolo Carlini  <pcarlini@suse.de>
2947
2948         * testsuite/27_io/basic_stringstream/str/char/1.cc: Initialize vars.
2949         * testsuite/27_io/basic_stringstream/str/wchar_t/1.cc: Likewise.
2950         * testsuite/27_io/basic_istringstream/str/char/1.cc: Likewise, tidy.
2951         * testsuite/27_io/basic_istringstream/str/wchar_t/1.cc: Likewise.
2952
2953 2006-01-02  Mark Mitchell  <mark@codesourcery.com>
2954
2955         * src/Makefile.am (LTLDFLAGS): New variable. 
2956         (CXXLINK): Use LTLDFLAGS.
2957         * src/Makefile.in: Regenerated.
2958         * libsupc++/Makefile.am (LTLDFLAGS): New variable. 
2959         (CXXLINK): Use LTLDFLAGS.
2960         * libsupc++/Makefile.in: Regenerated.
2961
2962 2006-01-02  Paolo Carlini  <pcarlini@suse.de>
2963
2964         PR libstdc++/24645
2965         * include/std/std_istream.h (basic_istream<>::_M_extract): New.
2966         (operator>>(bool&), operator>>(short&), operator>>(unsigned short&),
2967         operator>>(int&), operator>>(unsigned int&), operator>>(long&),
2968         operator>>(unsigned long&), operator>>(long long&), operator>>
2969         (unsigned long long&), operator>>(float&), operator>>(double&),
2970         operator>>(long double&), operator>>(void*&)): Use it.
2971         * include/bits/istream.tcc (basic_istream<>::_M_extract): Define.
2972         * include/std/std_ostream.h (basic_ostream<>::_M_insert): New.
2973         (operator<<(long), operator<<(unsigned long), operator<<(bool),
2974         operator<<(short), operator<<(unsigned short), operator<<(int),
2975         operator<<(unsigned int), operator<<(long long), operator<<
2976         (unsigned long long), operator<<(double), operator<<(float),
2977         operator<<(long double), operator<<(const void*): Use it.
2978         * include/bits/ostream.tcc (basic_ostream<>::_M_insert): Define.
2979         * src/istream-inst.cc: Add _M_extract instantiations.
2980         * src/ostream-inst.cc: Add _M_insert instantiations.
2981         * config/abi/pre/gnu.ver: Export the new symbols @GLIBCXX_3.4.7;
2982         detail existing @GLIBCXX_3.4 exports of basic_ostream, num_put,
2983         money_put, etc., symbols to avoid exporting _M_insert symbols
2984         @GLIBCXX_3.4.