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