public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* libstdc++/8230
@ 2002-11-22 10:54 bkoz
  0 siblings, 0 replies; 4+ messages in thread
From: bkoz @ 2002-11-22 10:54 UTC (permalink / raw)
  To: bkoz; +Cc: gcc-prs

The following reply was made to PR libstdc++/8230; it has been noted by GNATS.

From: bkoz@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: libstdc++/8230
Date: 16 Nov 2002 17:16:32 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	bkoz@gcc.gnu.org	2002-11-16 09:16:32
 
 Modified files:
 	libstdc++-v3   : ChangeLog 
 	libstdc++-v3/include/bits: stl_alloc.h stl_vector.h vector.tcc 
 	libstdc++-v3/testsuite/20_util: allocator_members.cc 
 	libstdc++-v3/testsuite/23_containers: vector_capacity.cc 
 
 Log message:
 	2002-11-15  Benjamin Kosnik  <bkoz@redhat.com>
 	Gabriel Dos Reis  <gdr@integrable-solutions.net>
 	
 	PR libstdc++/8230
 	* include/bits/stl_alloc.h: Use builtin_expect for the most
 	obvious limit checks.
 	(__default_alloc_template::allocate): Check for null, throw
 	bad_alloc.
 	* include/bits/vector.tcc: Formatting tweaks.
 	* include/bits/stl_vector.h: Same.
 	* testsuite/20_util/allocator_members.cc (test02): Add.
 	* testsuite/23_containers/vector_capacity.cc (test03): Add.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&r1=1.1431&r2=1.1432
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_alloc.h.diff?cvsroot=gcc&r1=1.25&r2=1.26
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_vector.h.diff?cvsroot=gcc&r1=1.29&r2=1.30
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/vector.tcc.diff?cvsroot=gcc&r1=1.3&r2=1.4
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/20_util/allocator_members.cc.diff?cvsroot=gcc&r1=1.2&r2=1.3
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/23_containers/vector_capacity.cc.diff?cvsroot=gcc&r1=1.4&r2=1.5
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* libstdc++/8230
@ 2002-12-05 15:56 bkoz
  0 siblings, 0 replies; 4+ messages in thread
From: bkoz @ 2002-12-05 15:56 UTC (permalink / raw)
  To: bkoz; +Cc: gcc-prs

The following reply was made to PR libstdc++/8230; it has been noted by GNATS.

From: bkoz@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: libstdc++/8230
Date: 5 Dec 2002 23:48:57 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Branch: 	gcc-3_2-branch
 Changes by:	bkoz@gcc.gnu.org	2002-12-05 15:48:57
 
 Modified files:
 	libstdc++-v3   : ChangeLog 
 	libstdc++-v3/config: linker-map.gnu 
 	libstdc++-v3/docs/html/23_containers: howto.html 
 	libstdc++-v3/docs/html/ext: howto.html 
 	libstdc++-v3/include/backward: alloc.h 
 	libstdc++-v3/include/bits: c++config stl_alloc.h 
 	libstdc++-v3/src: stl-inst.cc 
 	libstdc++-v3/testsuite: abi_check.cc 
 	libstdc++-v3/testsuite/20_util: allocator_members.cc 
 	libstdc++-v3/testsuite/21_strings: capacity.cc 
 	libstdc++-v3/testsuite/23_containers: vector_capacity.cc 
 	libstdc++-v3/testsuite/ext: allocators.cc 
 
 Log message:
 	2002-12-05  Benjamin Kosnik  <bkoz@redhat.com>
 	
 	* config/linker-map.gnu: Put _S_force_new into GLIBCPP_3.2.2.
 	* testsuite/abi_check.cc: Add GLIBCPP_3.2.2.
 	
 	2002-12-05  Benjamin Kosnik  <bkoz@redhat.com>
 	Gabriel Dos Reis  <gdr@integrable-solutions.net>
 	
 	PR libstdc++/8230
 	* include/bits/stl_alloc.h: Use builtin_expect for the most
 	obvious limit checks.
 	(__default_alloc_template::allocate): Check for null, throw
 	bad_alloc.
 	* testsuite/20_util/allocator_members.cc (test02): Add.
 	* testsuite/23_containers/vector_capacity.cc (test03): Add.
 	
 	2002-12-05  Loren J. Rittle  <ljrittle@acm.org>
 	Brad Spencer  <spencer@infointeractive.com>
 	(provided alternate patch and improvements)
 	
 	PR libstdc++/8708
 	* docs/html/23_containers/howto.html (GLIBCPP_FORCE_NEW): Document
 	new environment variable which replaces all uses of __USE_MALLOC
 	macro.
 	* docs/html/ext/howto.html (GLIBCPP_FORCE_NEW): Likewise.
 	(__mem_interface): Remove all references to old internal typedef.
 	* include/backward/alloc.h (__USE_MALLOC): Remove it and all
 	guarded code.
 	* include/bits/c++config (__USE_MALLOC): Update related error
 	message and comment.
 	* include/bits/stl_alloc.h (__USE_MALLOC): Remove it and all
 	guarded code.  Update all related comments.
 	(__mem_interface): Unconditionally replace it with __new_alloc.
 	However, leave the typedef around in case anyone used it.
 	(__default_alloc_template<>::_S_force_new): New class static.
 	(__default_alloc_template<>::allocate, deallocate): Add
 	run-time controlled feature similar to what __USE_MALLOC code
 	path had provided.
 	* src/stl-inst.cc (__USE_MALLOC): Remove it and all
 	guarded code.
 	* testsuite/21_strings/capacity.cc: Remove reference to __USE_MALLOC.
 	Add documentation on GLIBCPP_FORCE_NEW environment variable.
 	* testsuite/ext/allocators.cc: Likewise.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.1057.2.159.2.64&r2=1.1057.2.159.2.65
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/config/linker-map.gnu.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.5.2.6.4.5&r2=1.5.2.6.4.6
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/docs/html/23_containers/howto.html.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.20.2.1.2.1&r2=1.20.2.1.2.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/docs/html/ext/howto.html.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.18.8.2.2.1&r2=1.18.8.2.2.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/backward/alloc.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.11&r2=1.11.14.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/c++config.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.278.2.155.2.133&r2=1.278.2.155.2.134
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_alloc.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.16.2.3&r2=1.16.2.3.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/stl-inst.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.11.2.2&r2=1.11.2.2.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/abi_check.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.2.2.9&r2=1.2.2.10
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/20_util/allocator_members.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.2&r2=1.2.22.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/21_strings/capacity.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.6.2.1.4.1&r2=1.6.2.1.4.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/23_containers/vector_capacity.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.3.20.1&r2=1.3.20.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/ext/allocators.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.1&r2=1.1.22.1
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* libstdc++/8230
@ 2002-12-02 12:06 bkoz
  0 siblings, 0 replies; 4+ messages in thread
From: bkoz @ 2002-12-02 12:06 UTC (permalink / raw)
  To: bkoz; +Cc: gcc-prs

The following reply was made to PR libstdc++/8230; it has been noted by GNATS.

From: bkoz@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: libstdc++/8230
Date: 2 Dec 2002 20:01:55 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Branch: 	gcc-3_2-branch
 Changes by:	bkoz@gcc.gnu.org	2002-12-02 12:01:55
 
 Modified files:
 	libstdc++-v3   : ChangeLog 
 	libstdc++-v3/include/bits: stl_bvector.h stl_vector.h 
 	libstdc++-v3/testsuite/23_containers: vector_capacity.cc 
 
 Log message:
 	2002-12-02  Benjamin Kosnik  <bkoz@redhat.com>
 	
 	PR libstdc++/8230
 	* include/bits/stl_vector.h (vector::reserve): Throw length_error if
 	requested size is bigger than max_size().
 	* include/bits/stl_bvector.h (vector<bool>::reserve): Same.
 	* testsuite/23_containers/vector_capacity.cc (test02): Add.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.1057.2.159.2.58&r2=1.1057.2.159.2.59
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_bvector.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.11.2.3&r2=1.11.2.3.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_vector.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.17.2.4&r2=1.17.2.4.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/23_containers/vector_capacity.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.3&r2=1.3.20.1
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* libstdc++/8230
@ 2002-11-20  5:06 bkoz
  0 siblings, 0 replies; 4+ messages in thread
From: bkoz @ 2002-11-20  5:06 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR libstdc++/8230; it has been noted by GNATS.

From: bkoz@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: libstdc++/8230
Date: 13 Nov 2002 22:15:17 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	bkoz@gcc.gnu.org	2002-11-13 14:15:17
 
 Modified files:
 	libstdc++-v3   : ChangeLog 
 	libstdc++-v3/include/bits: stl_bvector.h vector.tcc 
 	libstdc++-v3/testsuite/23_containers: vector_capacity.cc 
 
 Log message:
 	2002-11-13  Benjamin Kosnik  <bkoz@redhat.com>
 	
 	PR libstdc++/8230
 	* include/bits/vector.tcc (vector::reserve): Throw length_error if
 	requested size is bigger than max_size().
 	* include/bits/stl_bvector.h (vector<bool>::reserve): Same.
 	* testsuite/23_containers/vector_capacity.cc (test02): Add.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&r1=1.1426&r2=1.1427
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_bvector.h.diff?cvsroot=gcc&r1=1.17&r2=1.18
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/vector.tcc.diff?cvsroot=gcc&r1=1.2&r2=1.3
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/23_containers/vector_capacity.cc.diff?cvsroot=gcc&r1=1.3&r2=1.4
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-12-05 23:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-11-22 10:54 libstdc++/8230 bkoz
  -- strict thread matches above, loose matches on Subject: below --
2002-12-05 15:56 libstdc++/8230 bkoz
2002-12-02 12:06 libstdc++/8230 bkoz
2002-11-20  5:06 libstdc++/8230 bkoz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).