OSDN Git Service

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