2003-06-11 17:52:11 +02:00
|
|
|
// Allocators -*- C++ -*-
|
|
|
|
|
2015-01-05 13:33:28 +01:00
|
|
|
// Copyright (C) 2001-2015 Free Software Foundation, Inc.
|
2003-06-11 17:52:11 +02:00
|
|
|
//
|
|
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
|
|
// software; you can redistribute it and/or modify it under the
|
|
|
|
// terms of the GNU General Public License as published by the
|
2009-04-09 17:00:19 +02:00
|
|
|
// Free Software Foundation; either version 3, or (at your option)
|
2003-06-11 17:52:11 +02:00
|
|
|
// any later version.
|
|
|
|
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
2009-04-09 17:00:19 +02:00
|
|
|
// Under Section 7 of GPL version 3, you are granted additional
|
|
|
|
// permissions described in the GCC Runtime Library Exception, version
|
|
|
|
// 3.1, as published by the Free Software Foundation.
|
2003-06-11 17:52:11 +02:00
|
|
|
|
2009-04-09 17:00:19 +02:00
|
|
|
// You should have received a copy of the GNU General Public License and
|
|
|
|
// a copy of the GCC Runtime Library Exception along with this program;
|
|
|
|
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
2003-06-11 17:52:11 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1996-1997
|
|
|
|
* Silicon Graphics Computer Systems, Inc.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
|
|
* provided that the above copyright notice appear in all copies and
|
|
|
|
* that both that copyright notice and this permission notice appear
|
|
|
|
* in supporting documentation. Silicon Graphics makes no
|
|
|
|
* representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
|
|
*/
|
|
|
|
|
2004-02-04 18:37:10 +01:00
|
|
|
/** @file ext/pool_allocator.h
|
algorithm, [...]: Remove trailing whitespace.
* include/ext/algorithm, include/ext/debug_allocator.h,
include/ext/enc_filebuf.h, include/ext/functional,
include/ext/hash_fun.h, include/ext/hash_map, include/ext/hash_set,
include/ext/hashtable.h, include/ext/iterator,
include/ext/malloc_allocator.h, include/ext/memory,
include/ext/mt_allocator.h, include/ext/numeric,
include/ext/pod_char_traits.h, include/ext/pool_allocator.h,
include/ext/rb_tree, include/ext/rope, include/ext/ropeimpl.h,
include/ext/slist, include/ext/stdio_filebuf.h,
include/ext/stdio_sync_filebuf.h: Remove trailing whitespace.
From-SVN: r74464
2003-12-09 05:31:53 +01:00
|
|
|
* This file is a GNU extension to the Standard C++ Library.
|
2003-06-11 17:52:11 +02:00
|
|
|
*/
|
2004-11-24 05:11:23 +01:00
|
|
|
|
2003-06-11 17:52:11 +02:00
|
|
|
#ifndef _POOL_ALLOCATOR_H
|
|
|
|
#define _POOL_ALLOCATOR_H 1
|
|
|
|
|
2004-02-10 01:43:04 +01:00
|
|
|
#include <bits/c++config.h>
|
2004-10-11 10:19:35 +02:00
|
|
|
#include <cstdlib>
|
2003-12-23 08:24:57 +01:00
|
|
|
#include <new>
|
algorithm, [...]: Remove trailing whitespace.
* include/ext/algorithm, include/ext/debug_allocator.h,
include/ext/enc_filebuf.h, include/ext/functional,
include/ext/hash_fun.h, include/ext/hash_map, include/ext/hash_set,
include/ext/hashtable.h, include/ext/iterator,
include/ext/malloc_allocator.h, include/ext/memory,
include/ext/mt_allocator.h, include/ext/numeric,
include/ext/pod_char_traits.h, include/ext/pool_allocator.h,
include/ext/rb_tree, include/ext/rope, include/ext/ropeimpl.h,
include/ext/slist, include/ext/stdio_filebuf.h,
include/ext/stdio_sync_filebuf.h: Remove trailing whitespace.
From-SVN: r74464
2003-12-09 05:31:53 +01:00
|
|
|
#include <bits/functexcept.h>
|
2006-09-14 11:48:15 +02:00
|
|
|
#include <ext/atomicity.h>
|
|
|
|
#include <ext/concurrence.h>
|
2008-06-21 18:55:17 +02:00
|
|
|
#include <bits/move.h>
|
2012-11-19 23:28:00 +01:00
|
|
|
#if __cplusplus >= 201103L
|
|
|
|
#include <type_traits>
|
|
|
|
#endif
|
2003-06-11 17:52:11 +02:00
|
|
|
|
PR libstdc++/36104 part four
2011-01-30 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/36104 part four
* include/bits/c++config (_GLIBCXX_STD): Remove.
(_GLIBCXX_STD_D, _GLIBCXX_PR): Now _GLIBCXX_STD_C.
(_GLIBCXX_P): Now _GLIBCXX_STD_A.
(_GLIBCXX_NAMESPACE_DEBUG, _GLIBCXX_NAMESPACE_PARALLEL,
_GLIBCXX_NAMESPACE_PROFILE, _GLIBCXX_NAMESPACE_VERSION): Remove.
(_GLIBCXX_INLINE_DEBUG, _GLIBCXX_INLINE_PARALLEL,
_GLIBCXX_INLINE_PROFILE): Remove.
(_GLIBCXX_BEGIN_NAMESPACE(X)): Remove.
(_GLIBCXX_END_NAMESPACE): Remove.
(_GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y)): Remove.
(_GLIBCXX_END_NESTED_NAMESPACE): Remove.
(_GLIBCXX_BEGIN_NAMESPACE_ALGO): Add.
(_GLIBCXX_END_NAMESPACE_ALGO): Add.
(_GLIBCXX_BEGIN_NAMESPACE_CONTAINER): Add.
(_GLIBCXX_END_NAMESPACE_CONTAINER): Add.
(_GLIBCXX_BEGIN_NAMESPACE_VERSION): Add.
(_GLIBCXX_END_NAMESPACE_VERSION): Add.
(_GLIBCXX_BEGIN_LDBL_NAMESPACE): To _GLIBCXX_BEGIN_NAMESPACE_LDBL.
(_GLIBCXX_END_LDBL_NAMESPACE): To _GLIBCXX_END_NAMESPACE_LDBL.
(_GLIBCXX_VISIBILITY_ATTR): Revert to _GLIBCXX_VISIBILITY.
* include/*: Use new macros for namespace scope.
* config/*: Same.
* src/*: Same.
* src/Makefile.am (sources): Remove debug_list.cc, add
compatibility-debug_list-2.cc.
(parallel_sources): Remove parallel_list.cc, add
compatibility-parallel_list-2.cc.
(compatibility-parallel_list-2.[o,lo]): New rule.
* src/Makefile.in: Regenerate.
* src/debug_list.cc: Remove.
* src/parallel_list.cc: Remove.
* src/compatibility-list-2.cc: New.
* src/compatibility-debug_list-2.cc: New.
* src/compatibility-parallel_list-2.cc: New.
* doc/doxygen/user.cfg.in: Adjust macros.
* testsuite/20_util/auto_ptr/assign_neg.cc: Adjust line numbers, macros.
* testsuite/20_util/declval/requirements/1_neg.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg1.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg2.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg3.cc: Same.
* testsuite/20_util/forward/c_neg.cc: Same.
* testsuite/20_util/forward/f_neg.cc: Same.
* testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Same.
* testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Same.
* testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Same.
* testsuite/20_util/ratio/operations/ops_overflow_neg.cc: Same.
* testsuite/20_util/shared_ptr/cons/43820_neg.cc: Same.
* testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: Same.
* testsuite/23_containers/forward_list/capacity/1.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
assign_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
insert_neg.cc: Same.
* testsuite/23_containers/list/capacity/29134.cc: Same.
* testsuite/23_containers/list/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/insert_neg.cc: Same.
* testsuite/23_containers/vector/bool/capacity/29134.cc: Same.
* testsuite/23_containers/vector/bool/modifiers/insert/31370.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: Same.
* testsuite/25_algorithms/sort/35588.cc: Same.
* testsuite/27_io/ios_base/cons/assign_neg.cc: Same.
* testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
* testsuite/ext/profile/mutex_extensions_neg.cc: Same.
* testsuite/ext/profile/profiler_algos.cc: Same.
* testsuite/ext/type_traits/add_unsigned_floating_neg.cc: Same.
* testsuite/ext/type_traits/add_unsigned_integer_neg.cc: Same.
* testsuite/ext/type_traits/remove_unsigned_floating_neg.cc: Same.
* testsuite/ext/type_traits/remove_unsigned_integer_neg.cc: Same.
* testsuite/tr1/2_general_utilities/shared_ptr/cons/43820_neg.cc: Same.
From-SVN: r169421
2011-01-30 23:39:36 +01:00
|
|
|
namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
|
|
|
|
{
|
|
|
|
_GLIBCXX_BEGIN_NAMESPACE_VERSION
|
2005-12-19 01:56:05 +01:00
|
|
|
|
2006-04-23 16:54:26 +02:00
|
|
|
using std::size_t;
|
|
|
|
using std::ptrdiff_t;
|
|
|
|
|
2003-06-11 17:52:11 +02:00
|
|
|
/**
|
2004-11-05 20:58:03 +01:00
|
|
|
* @brief Base class for __pool_alloc.
|
|
|
|
*
|
2004-03-22 14:07:13 +01:00
|
|
|
* Uses various allocators to fulfill underlying requests (and makes as
|
|
|
|
* few requests as possible when in default high-speed pool mode).
|
2003-06-11 17:52:11 +02:00
|
|
|
*
|
|
|
|
* Important implementation properties:
|
2003-12-23 08:24:57 +01:00
|
|
|
* 0. If globally mandated, then allocate objects from new
|
2003-06-11 17:52:11 +02:00
|
|
|
* 1. If the clients request an object of size > _S_max_bytes, the resulting
|
2003-12-23 08:24:57 +01:00
|
|
|
* object will be obtained directly from new
|
2003-06-11 17:52:11 +02:00
|
|
|
* 2. In all other cases, we allocate an object of size exactly
|
|
|
|
* _S_round_up(requested_size). Thus the client has enough size
|
|
|
|
* information that we can return the object to the proper free list
|
|
|
|
* without permanently losing part of the object.
|
|
|
|
*/
|
2004-08-30 20:22:01 +02:00
|
|
|
class __pool_alloc_base
|
2004-06-09 00:19:18 +02:00
|
|
|
{
|
2004-06-18 18:52:42 +02:00
|
|
|
protected:
|
|
|
|
|
2004-06-09 00:19:18 +02:00
|
|
|
enum { _S_align = 8 };
|
|
|
|
enum { _S_max_bytes = 128 };
|
2005-04-28 09:50:48 +02:00
|
|
|
enum { _S_free_list_size = (size_t)_S_max_bytes / (size_t)_S_align };
|
2004-06-09 00:19:18 +02:00
|
|
|
|
|
|
|
union _Obj
|
|
|
|
{
|
|
|
|
union _Obj* _M_free_list_link;
|
|
|
|
char _M_client_data[1]; // The client sees this.
|
|
|
|
};
|
|
|
|
|
2004-06-18 18:52:42 +02:00
|
|
|
static _Obj* volatile _S_free_list[_S_free_list_size];
|
2004-06-25 08:10:44 +02:00
|
|
|
|
2004-06-09 00:19:18 +02:00
|
|
|
// Chunk allocation state.
|
|
|
|
static char* _S_start_free;
|
|
|
|
static char* _S_end_free;
|
2004-06-18 18:52:42 +02:00
|
|
|
static size_t _S_heap_size;
|
2004-06-09 00:19:18 +02:00
|
|
|
|
2004-06-18 18:52:42 +02:00
|
|
|
size_t
|
|
|
|
_M_round_up(size_t __bytes)
|
2004-06-09 00:19:18 +02:00
|
|
|
{ return ((__bytes + (size_t)_S_align - 1) & ~((size_t)_S_align - 1)); }
|
|
|
|
|
pool_allocator.cc (_M_get_free_list, [...]): Mark throw ()
* src/pool_allocator.cc (_M_get_free_list, _M_get_mutex): Mark throw ()
* src/mt_allocator.cc (_M_reclaim_block, _M_reclaim_block,
_M_destroy_thread_key): Mark throw ()
* debug.cc (_M_get_mutex, _M_attach_single, _M_detach_single,
_M_singular, _M_can_compare _M_get_mutex, _M_message,
_M_get_max_length): Mark throw ().
* include/debug/formatter.h (_M_message, _M_format_word,
_M_get_max_length): Mark throw ().
* include/debug/safe_base.h (_M_get_mutex, _M_attach_single,
_M_detach_single): Mark throw ().
(_M_singular, _M_can_compare, _M_get_mutex): Mark pure and throw ().
* include/ext/pool_allocator.h (_M_get_free_list): Mark const and
throw ()
(_M_get_mutex): Mark throw ().
* include/ext/mt_allocator.h (_M_reclaim_block): Mark throw ();
(_M_destroy_thread_key): Mark CONST and throw.
* include/bits/stl_list.h (swap, transfer, reverse, hook, unhook): Mark
throw ().
From-SVN: r146330
2009-04-19 00:02:19 +02:00
|
|
|
_GLIBCXX_CONST _Obj* volatile*
|
|
|
|
_M_get_free_list(size_t __bytes) throw ();
|
2004-06-09 00:19:18 +02:00
|
|
|
|
2006-09-14 11:48:15 +02:00
|
|
|
__mutex&
|
pool_allocator.cc (_M_get_free_list, [...]): Mark throw ()
* src/pool_allocator.cc (_M_get_free_list, _M_get_mutex): Mark throw ()
* src/mt_allocator.cc (_M_reclaim_block, _M_reclaim_block,
_M_destroy_thread_key): Mark throw ()
* debug.cc (_M_get_mutex, _M_attach_single, _M_detach_single,
_M_singular, _M_can_compare _M_get_mutex, _M_message,
_M_get_max_length): Mark throw ().
* include/debug/formatter.h (_M_message, _M_format_word,
_M_get_max_length): Mark throw ().
* include/debug/safe_base.h (_M_get_mutex, _M_attach_single,
_M_detach_single): Mark throw ().
(_M_singular, _M_can_compare, _M_get_mutex): Mark pure and throw ().
* include/ext/pool_allocator.h (_M_get_free_list): Mark const and
throw ()
(_M_get_mutex): Mark throw ().
* include/ext/mt_allocator.h (_M_reclaim_block): Mark throw ();
(_M_destroy_thread_key): Mark CONST and throw.
* include/bits/stl_list.h (swap, transfer, reverse, hook, unhook): Mark
throw ().
From-SVN: r146330
2009-04-19 00:02:19 +02:00
|
|
|
_M_get_mutex() throw ();
|
2004-06-25 08:10:44 +02:00
|
|
|
|
2004-06-09 00:19:18 +02:00
|
|
|
// Returns an object of size __n, and optionally adds to size __n
|
|
|
|
// free list.
|
2004-06-18 18:52:42 +02:00
|
|
|
void*
|
|
|
|
_M_refill(size_t __n);
|
2004-06-09 00:19:18 +02:00
|
|
|
|
|
|
|
// Allocates a chunk for nobjs of size size. nobjs may be reduced
|
|
|
|
// if it is inconvenient to allocate the requested number.
|
2004-06-18 18:52:42 +02:00
|
|
|
char*
|
|
|
|
_M_allocate_chunk(size_t __n, int& __nobjs);
|
2004-06-09 00:19:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-02-21 01:45:21 +01:00
|
|
|
/**
|
|
|
|
* @brief Allocator using a memory pool with a single lock.
|
|
|
|
* @ingroup allocators
|
|
|
|
*/
|
2004-03-22 14:07:13 +01:00
|
|
|
template<typename _Tp>
|
2004-08-30 20:22:01 +02:00
|
|
|
class __pool_alloc : private __pool_alloc_base
|
2003-06-11 17:52:11 +02:00
|
|
|
{
|
2004-06-18 18:52:42 +02:00
|
|
|
private:
|
|
|
|
static _Atomic_word _S_force_new;
|
|
|
|
|
2004-03-22 14:07:13 +01:00
|
|
|
public:
|
|
|
|
typedef size_t size_type;
|
|
|
|
typedef ptrdiff_t difference_type;
|
|
|
|
typedef _Tp* pointer;
|
|
|
|
typedef const _Tp* const_pointer;
|
|
|
|
typedef _Tp& reference;
|
|
|
|
typedef const _Tp& const_reference;
|
|
|
|
typedef _Tp value_type;
|
|
|
|
|
|
|
|
template<typename _Tp1>
|
|
|
|
struct rebind
|
|
|
|
{ typedef __pool_alloc<_Tp1> other; };
|
|
|
|
|
2012-11-19 23:28:00 +01:00
|
|
|
#if __cplusplus >= 201103L
|
|
|
|
// _GLIBCXX_RESOLVE_LIB_DEFECTS
|
|
|
|
// 2103. propagate_on_container_move_assignment
|
|
|
|
typedef std::true_type propagate_on_container_move_assignment;
|
|
|
|
#endif
|
|
|
|
|
2011-06-10 19:14:40 +02:00
|
|
|
__pool_alloc() _GLIBCXX_USE_NOEXCEPT { }
|
2004-03-22 14:07:13 +01:00
|
|
|
|
2011-06-10 19:14:40 +02:00
|
|
|
__pool_alloc(const __pool_alloc&) _GLIBCXX_USE_NOEXCEPT { }
|
2004-03-22 14:07:13 +01:00
|
|
|
|
|
|
|
template<typename _Tp1>
|
2011-06-10 19:14:40 +02:00
|
|
|
__pool_alloc(const __pool_alloc<_Tp1>&) _GLIBCXX_USE_NOEXCEPT { }
|
2004-03-22 14:07:13 +01:00
|
|
|
|
2011-06-10 19:14:40 +02:00
|
|
|
~__pool_alloc() _GLIBCXX_USE_NOEXCEPT { }
|
2004-03-22 14:07:13 +01:00
|
|
|
|
|
|
|
pointer
|
2011-06-10 19:14:40 +02:00
|
|
|
address(reference __x) const _GLIBCXX_NOEXCEPT
|
|
|
|
{ return std::__addressof(__x); }
|
2004-03-22 14:07:13 +01:00
|
|
|
|
|
|
|
const_pointer
|
2011-06-10 19:14:40 +02:00
|
|
|
address(const_reference __x) const _GLIBCXX_NOEXCEPT
|
|
|
|
{ return std::__addressof(__x); }
|
2004-03-22 14:07:13 +01:00
|
|
|
|
|
|
|
size_type
|
2011-06-10 19:14:40 +02:00
|
|
|
max_size() const _GLIBCXX_USE_NOEXCEPT
|
2004-03-22 14:07:13 +01:00
|
|
|
{ return size_t(-1) / sizeof(_Tp); }
|
|
|
|
|
2012-11-10 18:27:22 +01:00
|
|
|
#if __cplusplus >= 201103L
|
2011-05-28 15:27:43 +02:00
|
|
|
template<typename _Up, typename... _Args>
|
|
|
|
void
|
|
|
|
construct(_Up* __p, _Args&&... __args)
|
|
|
|
{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
|
|
|
|
|
|
|
|
template<typename _Up>
|
|
|
|
void
|
|
|
|
destroy(_Up* __p) { __p->~_Up(); }
|
|
|
|
#else
|
2004-03-22 14:07:13 +01:00
|
|
|
// _GLIBCXX_RESOLVE_LIB_DEFECTS
|
|
|
|
// 402. wrong new expression in [some_] allocator::construct
|
|
|
|
void
|
|
|
|
construct(pointer __p, const _Tp& __val)
|
throw_allocator.h (throw_allocator<>:: construct<>(pointer, _Args&&...)): Add.
2007-10-26 Paolo Carlini <pcarlini@suse.de>
* include/ext/throw_allocator.h (throw_allocator<>::
construct<>(pointer, _Args&&...)): Add.
* include/ext/pool_allocator.h (__pool_alloc<>::
construct<>(pointer, _Args&&...)): Likewise.
(construct(pointer, const _Tp&)): Cast pointer to void*.
* include/ext/bitmap_allocator.h (bitmap_allocator<>::
construct<>(pointer, _Args&&...)): Add.
(construct(pointer, const _Tp&)): Cast pointer to void*.
* include/ext/new_allocator.h (new_allocator<>::
construct<>(pointer, _Args&&...)): Add.
(construct(pointer, const _Tp&)): Cast pointer to void*.
* include/ext/malloc_allocator.h (malloc_allocator<>::
construct<>(pointer, _Args&&...)): Add.
(construct(pointer, const _Tp&)): Cast pointer to void*.
* include/ext/array_allocator.h (array_allocator<>::
construct<>(pointer, _Args&&...)): Add.
(construct(pointer, const _Tp&)): Cast pointer to void*.
* include/ext/mt_allocator.h (__mt_alloc<>::
construct<>(pointer, _Args&&...)): Add.
(construct(pointer, const _Tp&)): Cast pointer to void*.
* testsuite/util/testsuite_allocator.h (tracker_allocator<>::
construct<>(pointer, _Args&&...)): Add.
(construct(pointer, const _Tp&)): Cast pointer to void*.
(uneq_allocator<>::construct<>(pointer, _Args&&...)): Add.
(construct(pointer, const _Tp&)): Cast pointer to void*.
* testsuite/ext/mt_allocator/variadic_construct.cc: New.
* testsuite/ext/new_allocator/variadic_construct.cc: Likewise.
* testsuite/ext/throw_allocator/variadic_construct.cc: Likewise.
* testsuite/ext/malloc_allocator/variadic_construct.cc: Likewise.
* testsuite/ext/pool_allocator/variadic_construct.cc: Likewise.
* testsuite/ext/bitmap_allocator/variadic_construct.cc: Likewise.
* testsuite/ext/array_allocator/variadic_construct.cc: Likewise.
From-SVN: r129672
2007-10-27 02:41:21 +02:00
|
|
|
{ ::new((void *)__p) _Tp(__val); }
|
|
|
|
|
2004-03-22 14:07:13 +01:00
|
|
|
void
|
|
|
|
destroy(pointer __p) { __p->~_Tp(); }
|
2011-05-28 15:27:43 +02:00
|
|
|
#endif
|
2004-03-22 14:07:13 +01:00
|
|
|
|
|
|
|
pointer
|
|
|
|
allocate(size_type __n, const void* = 0);
|
|
|
|
|
|
|
|
void
|
|
|
|
deallocate(pointer __p, size_type __n);
|
2003-06-11 17:52:11 +02:00
|
|
|
};
|
|
|
|
|
2004-03-22 14:07:13 +01:00
|
|
|
template<typename _Tp>
|
2003-06-11 17:52:11 +02:00
|
|
|
inline bool
|
2004-03-22 14:07:13 +01:00
|
|
|
operator==(const __pool_alloc<_Tp>&, const __pool_alloc<_Tp>&)
|
2003-06-11 17:52:11 +02:00
|
|
|
{ return true; }
|
|
|
|
|
2004-03-22 14:07:13 +01:00
|
|
|
template<typename _Tp>
|
2003-06-11 17:52:11 +02:00
|
|
|
inline bool
|
2004-03-22 14:07:13 +01:00
|
|
|
operator!=(const __pool_alloc<_Tp>&, const __pool_alloc<_Tp>&)
|
2003-06-11 17:52:11 +02:00
|
|
|
{ return false; }
|
|
|
|
|
2004-06-18 18:52:42 +02:00
|
|
|
template<typename _Tp>
|
|
|
|
_Atomic_word
|
|
|
|
__pool_alloc<_Tp>::_S_force_new;
|
2003-06-11 17:52:11 +02:00
|
|
|
|
2004-03-22 14:07:13 +01:00
|
|
|
template<typename _Tp>
|
|
|
|
_Tp*
|
|
|
|
__pool_alloc<_Tp>::allocate(size_type __n, const void*)
|
2003-06-13 07:45:57 +02:00
|
|
|
{
|
2004-03-22 14:07:13 +01:00
|
|
|
pointer __ret = 0;
|
2004-10-21 02:06:02 +02:00
|
|
|
if (__builtin_expect(__n != 0, true))
|
2003-06-13 07:45:57 +02:00
|
|
|
{
|
2009-04-24 11:35:19 +02:00
|
|
|
if (__n > this->max_size())
|
2004-10-21 02:06:02 +02:00
|
|
|
std::__throw_bad_alloc();
|
|
|
|
|
|
|
|
// If there is a race through here, assume answer from getenv
|
|
|
|
// will resolve in same direction. Inspired by techniques
|
|
|
|
// to efficiently support threading found in basic_string.h.
|
|
|
|
if (_S_force_new == 0)
|
2003-06-13 07:45:57 +02:00
|
|
|
{
|
2006-05-10 17:43:20 +02:00
|
|
|
if (std::getenv("GLIBCXX_FORCE_NEW"))
|
2006-05-24 18:37:42 +02:00
|
|
|
__atomic_add_dispatch(&_S_force_new, 1);
|
2004-10-21 02:06:02 +02:00
|
|
|
else
|
2006-05-24 18:37:42 +02:00
|
|
|
__atomic_add_dispatch(&_S_force_new, -1);
|
2004-10-21 02:06:02 +02:00
|
|
|
}
|
2004-06-18 18:52:42 +02:00
|
|
|
|
2004-10-21 02:06:02 +02:00
|
|
|
const size_t __bytes = __n * sizeof(_Tp);
|
2007-05-02 20:37:00 +02:00
|
|
|
if (__bytes > size_t(_S_max_bytes) || _S_force_new > 0)
|
2004-10-21 02:06:02 +02:00
|
|
|
__ret = static_cast<_Tp*>(::operator new(__bytes));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_Obj* volatile* __free_list = _M_get_free_list(__bytes);
|
|
|
|
|
2006-09-14 11:48:15 +02:00
|
|
|
__scoped_lock sentry(_M_get_mutex());
|
2004-10-21 02:06:02 +02:00
|
|
|
_Obj* __restrict__ __result = *__free_list;
|
|
|
|
if (__builtin_expect(__result == 0, 0))
|
|
|
|
__ret = static_cast<_Tp*>(_M_refill(_M_round_up(__bytes)));
|
2004-03-22 14:07:13 +01:00
|
|
|
else
|
|
|
|
{
|
2004-10-21 02:06:02 +02:00
|
|
|
*__free_list = __result->_M_free_list_link;
|
|
|
|
__ret = reinterpret_cast<_Tp*>(__result);
|
2004-03-22 14:07:13 +01:00
|
|
|
}
|
2009-04-24 11:35:19 +02:00
|
|
|
if (__ret == 0)
|
2004-10-21 02:06:02 +02:00
|
|
|
std::__throw_bad_alloc();
|
algorithm, [...]: Remove trailing whitespace.
* include/ext/algorithm, include/ext/debug_allocator.h,
include/ext/enc_filebuf.h, include/ext/functional,
include/ext/hash_fun.h, include/ext/hash_map, include/ext/hash_set,
include/ext/hashtable.h, include/ext/iterator,
include/ext/malloc_allocator.h, include/ext/memory,
include/ext/mt_allocator.h, include/ext/numeric,
include/ext/pod_char_traits.h, include/ext/pool_allocator.h,
include/ext/rb_tree, include/ext/rope, include/ext/ropeimpl.h,
include/ext/slist, include/ext/stdio_filebuf.h,
include/ext/stdio_sync_filebuf.h: Remove trailing whitespace.
From-SVN: r74464
2003-12-09 05:31:53 +01:00
|
|
|
}
|
2003-06-13 07:45:57 +02:00
|
|
|
}
|
|
|
|
return __ret;
|
|
|
|
}
|
algorithm, [...]: Remove trailing whitespace.
* include/ext/algorithm, include/ext/debug_allocator.h,
include/ext/enc_filebuf.h, include/ext/functional,
include/ext/hash_fun.h, include/ext/hash_map, include/ext/hash_set,
include/ext/hashtable.h, include/ext/iterator,
include/ext/malloc_allocator.h, include/ext/memory,
include/ext/mt_allocator.h, include/ext/numeric,
include/ext/pod_char_traits.h, include/ext/pool_allocator.h,
include/ext/rb_tree, include/ext/rope, include/ext/ropeimpl.h,
include/ext/slist, include/ext/stdio_filebuf.h,
include/ext/stdio_sync_filebuf.h: Remove trailing whitespace.
From-SVN: r74464
2003-12-09 05:31:53 +01:00
|
|
|
|
2004-03-22 14:07:13 +01:00
|
|
|
template<typename _Tp>
|
2003-06-13 07:45:57 +02:00
|
|
|
void
|
2004-03-22 14:07:13 +01:00
|
|
|
__pool_alloc<_Tp>::deallocate(pointer __p, size_type __n)
|
2003-06-13 07:45:57 +02:00
|
|
|
{
|
2004-10-21 02:06:02 +02:00
|
|
|
if (__builtin_expect(__n != 0 && __p != 0, true))
|
2003-06-13 07:45:57 +02:00
|
|
|
{
|
2004-03-22 14:07:13 +01:00
|
|
|
const size_t __bytes = __n * sizeof(_Tp);
|
2007-05-02 20:37:00 +02:00
|
|
|
if (__bytes > static_cast<size_t>(_S_max_bytes) || _S_force_new > 0)
|
2004-03-22 14:07:13 +01:00
|
|
|
::operator delete(__p);
|
|
|
|
else
|
|
|
|
{
|
2004-06-18 18:52:42 +02:00
|
|
|
_Obj* volatile* __free_list = _M_get_free_list(__bytes);
|
|
|
|
_Obj* __q = reinterpret_cast<_Obj*>(__p);
|
2004-03-22 14:07:13 +01:00
|
|
|
|
2006-09-14 11:48:15 +02:00
|
|
|
__scoped_lock sentry(_M_get_mutex());
|
2004-06-18 18:52:42 +02:00
|
|
|
__q ->_M_free_list_link = *__free_list;
|
2004-03-22 14:07:13 +01:00
|
|
|
*__free_list = __q;
|
|
|
|
}
|
2003-06-13 07:45:57 +02:00
|
|
|
}
|
|
|
|
}
|
2005-12-19 01:56:05 +01:00
|
|
|
|
PR libstdc++/36104 part four
2011-01-30 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/36104 part four
* include/bits/c++config (_GLIBCXX_STD): Remove.
(_GLIBCXX_STD_D, _GLIBCXX_PR): Now _GLIBCXX_STD_C.
(_GLIBCXX_P): Now _GLIBCXX_STD_A.
(_GLIBCXX_NAMESPACE_DEBUG, _GLIBCXX_NAMESPACE_PARALLEL,
_GLIBCXX_NAMESPACE_PROFILE, _GLIBCXX_NAMESPACE_VERSION): Remove.
(_GLIBCXX_INLINE_DEBUG, _GLIBCXX_INLINE_PARALLEL,
_GLIBCXX_INLINE_PROFILE): Remove.
(_GLIBCXX_BEGIN_NAMESPACE(X)): Remove.
(_GLIBCXX_END_NAMESPACE): Remove.
(_GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y)): Remove.
(_GLIBCXX_END_NESTED_NAMESPACE): Remove.
(_GLIBCXX_BEGIN_NAMESPACE_ALGO): Add.
(_GLIBCXX_END_NAMESPACE_ALGO): Add.
(_GLIBCXX_BEGIN_NAMESPACE_CONTAINER): Add.
(_GLIBCXX_END_NAMESPACE_CONTAINER): Add.
(_GLIBCXX_BEGIN_NAMESPACE_VERSION): Add.
(_GLIBCXX_END_NAMESPACE_VERSION): Add.
(_GLIBCXX_BEGIN_LDBL_NAMESPACE): To _GLIBCXX_BEGIN_NAMESPACE_LDBL.
(_GLIBCXX_END_LDBL_NAMESPACE): To _GLIBCXX_END_NAMESPACE_LDBL.
(_GLIBCXX_VISIBILITY_ATTR): Revert to _GLIBCXX_VISIBILITY.
* include/*: Use new macros for namespace scope.
* config/*: Same.
* src/*: Same.
* src/Makefile.am (sources): Remove debug_list.cc, add
compatibility-debug_list-2.cc.
(parallel_sources): Remove parallel_list.cc, add
compatibility-parallel_list-2.cc.
(compatibility-parallel_list-2.[o,lo]): New rule.
* src/Makefile.in: Regenerate.
* src/debug_list.cc: Remove.
* src/parallel_list.cc: Remove.
* src/compatibility-list-2.cc: New.
* src/compatibility-debug_list-2.cc: New.
* src/compatibility-parallel_list-2.cc: New.
* doc/doxygen/user.cfg.in: Adjust macros.
* testsuite/20_util/auto_ptr/assign_neg.cc: Adjust line numbers, macros.
* testsuite/20_util/declval/requirements/1_neg.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg1.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg2.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg3.cc: Same.
* testsuite/20_util/forward/c_neg.cc: Same.
* testsuite/20_util/forward/f_neg.cc: Same.
* testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Same.
* testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Same.
* testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Same.
* testsuite/20_util/ratio/operations/ops_overflow_neg.cc: Same.
* testsuite/20_util/shared_ptr/cons/43820_neg.cc: Same.
* testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: Same.
* testsuite/23_containers/forward_list/capacity/1.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
assign_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
insert_neg.cc: Same.
* testsuite/23_containers/list/capacity/29134.cc: Same.
* testsuite/23_containers/list/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/insert_neg.cc: Same.
* testsuite/23_containers/vector/bool/capacity/29134.cc: Same.
* testsuite/23_containers/vector/bool/modifiers/insert/31370.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: Same.
* testsuite/25_algorithms/sort/35588.cc: Same.
* testsuite/27_io/ios_base/cons/assign_neg.cc: Same.
* testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
* testsuite/ext/profile/mutex_extensions_neg.cc: Same.
* testsuite/ext/profile/profiler_algos.cc: Same.
* testsuite/ext/type_traits/add_unsigned_floating_neg.cc: Same.
* testsuite/ext/type_traits/add_unsigned_integer_neg.cc: Same.
* testsuite/ext/type_traits/remove_unsigned_floating_neg.cc: Same.
* testsuite/ext/type_traits/remove_unsigned_integer_neg.cc: Same.
* testsuite/tr1/2_general_utilities/shared_ptr/cons/43820_neg.cc: Same.
From-SVN: r169421
2011-01-30 23:39:36 +01:00
|
|
|
_GLIBCXX_END_NAMESPACE_VERSION
|
|
|
|
} // namespace
|
2003-06-11 17:52:11 +02:00
|
|
|
|
|
|
|
#endif
|