Intel(R) Threading Building Blocks Doxygen Documentation  version 4.2.3
tbb::concurrent_vector< T, A > Class Template Reference

Concurrent vector container. More...

#include <concurrent_vector.h>

Inheritance diagram for tbb::concurrent_vector< T, A >:
Collaboration diagram for tbb::concurrent_vector< T, A >:

Classes

class  generic_range_type
 
class  internal_loop_guide
 Exception-aware helper class for filling a segment by exception-danger operators of user class. More...
 
class  is_integer_tag
 True/false function override helper. More...
 
struct  push_back_helper
 

Public Types

typedef internal::concurrent_vector_base_v3::size_type size_type
 
typedef internal::allocator_base< T, A >::allocator_type allocator_type
 
typedef T value_type
 
typedef ptrdiff_t difference_type
 
typedef T & reference
 
typedef const T & const_reference
 
typedef T * pointer
 
typedef const T * const_pointer
 
typedef internal::vector_iterator< concurrent_vector, T > iterator
 
typedef internal::vector_iterator< concurrent_vector, const T > const_iterator
 
typedef std::reverse_iterator< iteratorreverse_iterator
 
typedef std::reverse_iterator< const_iteratorconst_reverse_iterator
 
typedef generic_range_type< iteratorrange_type
 
typedef generic_range_type< const_iteratorconst_range_type
 

Public Member Functions

 concurrent_vector (const allocator_type &a=allocator_type())
 Construct empty vector. More...
 
 concurrent_vector (std::initializer_list< T > init_list, const allocator_type &a=allocator_type())
 Constructor from initializer_list. More...
 
 concurrent_vector (const concurrent_vector &vector, const allocator_type &a=allocator_type())
 Copying constructor. More...
 
 concurrent_vector (concurrent_vector &&source)
 Move constructor. More...
 
 concurrent_vector (concurrent_vector &&source, const allocator_type &a)
 
template<class M >
 concurrent_vector (const concurrent_vector< T, M > &vector, const allocator_type &a=allocator_type())
 Copying constructor for vector with different allocator type. More...
 
 concurrent_vector (size_type n)
 Construction with initial size specified by argument n. More...
 
 concurrent_vector (size_type n, const_reference t, const allocator_type &a=allocator_type())
 Construction with initial size specified by argument n, initialization by copying of t, and given allocator instance. More...
 
template<class I >
 concurrent_vector (I first, I last, const allocator_type &a=allocator_type())
 Construction with copying iteration range and given allocator instance. More...
 
concurrent_vectoroperator= (const concurrent_vector &vector)
 Assignment. More...
 
concurrent_vectoroperator= (concurrent_vector &&other)
 Move assignment. More...
 
template<class M >
concurrent_vectoroperator= (const concurrent_vector< T, M > &vector)
 Assignment for vector with different allocator type. More...
 
concurrent_vectoroperator= (std::initializer_list< T > init_list)
 Assignment for initializer_list. More...
 
iterator grow_by (size_type delta)
 Grow by "delta" elements. More...
 
iterator grow_by (size_type delta, const_reference t)
 Grow by "delta" elements using copying constructor. More...
 
template<typename I >
iterator grow_by (I first, I last)
 
iterator grow_by (std::initializer_list< T > init_list)
 
iterator grow_to_at_least (size_type n)
 Append minimal sequence of elements such that size()>=n. More...
 
iterator grow_to_at_least (size_type n, const_reference t)
 
iterator push_back (const_reference item)
 Push item. More...
 
iterator push_back (T &&item)
 Push item, move-aware. More...
 
template<typename... Args>
iterator emplace_back (Args &&... args)
 Push item, create item "in place" with provided arguments. More...
 
reference operator[] (size_type index)
 Get reference to element at given index. More...
 
const_reference operator[] (size_type index) const
 Get const reference to element at given index. More...
 
reference at (size_type index)
 Get reference to element at given index. Throws exceptions on errors. More...
 
const_reference at (size_type index) const
 Get const reference to element at given index. Throws exceptions on errors. More...
 
range_type range (size_t grainsize=1)
 Get range for iterating with parallel algorithms. More...
 
const_range_type range (size_t grainsize=1) const
 Get const range for iterating with parallel algorithms. More...
 
size_type size () const
 Return size of vector. It may include elements under construction. More...
 
bool empty () const
 Return false if vector is not empty or has elements under construction at least. More...
 
size_type capacity () const
 Maximum size to which array can grow without allocating more memory. Concurrent allocations are not included in the value. More...
 
void reserve (size_type n)
 Allocate enough space to grow to size n without having to allocate more memory later. More...
 
void resize (size_type n)
 Resize the vector. Not thread-safe. More...
 
void resize (size_type n, const_reference t)
 Resize the vector, copy t for new elements. Not thread-safe. More...
 
void shrink_to_fit ()
 Optimize memory usage and fragmentation. More...
 
size_type max_size () const
 Upper bound on argument to reserve. More...
 
iterator begin ()
 start iterator More...
 
iterator end ()
 end iterator More...
 
const_iterator begin () const
 start const iterator More...
 
const_iterator end () const
 end const iterator More...
 
const_iterator cbegin () const
 start const iterator More...
 
const_iterator cend () const
 end const iterator More...
 
reverse_iterator rbegin ()
 reverse start iterator More...
 
reverse_iterator rend ()
 reverse end iterator More...
 
const_reverse_iterator rbegin () const
 reverse start const iterator More...
 
const_reverse_iterator rend () const
 reverse end const iterator More...
 
const_reverse_iterator crbegin () const
 reverse start const iterator More...
 
const_reverse_iterator crend () const
 reverse end const iterator More...
 
reference front ()
 the first item More...
 
const_reference front () const
 the first item const More...
 
reference back ()
 the last item More...
 
const_reference back () const
 the last item const More...
 
allocator_type get_allocator () const
 return allocator object More...
 
void assign (size_type n, const_reference t)
 assign n items by copying t item More...
 
template<class I >
void assign (I first, I last)
 assign range [first, last) More...
 
void assign (std::initializer_list< T > init_list)
 assigns an initializer list More...
 
void swap (concurrent_vector &vector)
 swap two instances More...
 
void clear ()
 Clear container while keeping memory allocated. More...
 
 ~concurrent_vector ()
 Clear and destroy vector. More...
 
const internal::concurrent_vector_base_v3 & internal_vector_base () const
 
template<typename I >
void copy_range (void *dst, const void *p_type_erased_iterator, size_type n)
 

Private Member Functions

void internal_free_segments (segment_t table[], segment_index_t k, segment_index_t first_block)
 Free k segments from table. More...
 
T & internal_subscript (size_type index) const
 Get reference to element at given index. More...
 
T & internal_subscript_with_exceptions (size_type index) const
 Get reference to element at given index with errors checks. More...
 
void internal_assign_n (size_type n, const_pointer p)
 assign n items by copying t More...
 
template<class I >
void internal_assign_range (I first, I last, is_integer_tag< true > *)
 assign integer items by copying when arguments are treated as iterators. See C++ Standard 2003 23.1.1p9 More...
 
template<class I >
void internal_assign_range (I first, I last, is_integer_tag< false > *)
 inline proxy assign by iterators More...
 
template<class I >
void internal_assign_iterators (I first, I last)
 assign by iterators More...
 
- Private Member Functions inherited from tbb::internal::concurrent_vector_base_v3
 concurrent_vector_base_v3 ()
 
__TBB_EXPORTED_METHOD ~concurrent_vector_base_v3 ()
 
void __TBB_EXPORTED_METHOD internal_reserve (size_type n, size_type element_size, size_type max_size)
 
size_type __TBB_EXPORTED_METHOD internal_capacity () const
 
void internal_grow (size_type start, size_type finish, size_type element_size, internal_array_op2 init, const void *src)
 
size_type __TBB_EXPORTED_METHOD internal_grow_by (size_type delta, size_type element_size, internal_array_op2 init, const void *src)
 
void *__TBB_EXPORTED_METHOD internal_push_back (size_type element_size, size_type &index)
 
segment_index_t __TBB_EXPORTED_METHOD internal_clear (internal_array_op1 destroy)
 
void *__TBB_EXPORTED_METHOD internal_compact (size_type element_size, void *table, internal_array_op1 destroy, internal_array_op2 copy)
 
void __TBB_EXPORTED_METHOD internal_copy (const concurrent_vector_base_v3 &src, size_type element_size, internal_array_op2 copy)
 
void __TBB_EXPORTED_METHOD internal_assign (const concurrent_vector_base_v3 &src, size_type element_size, internal_array_op1 destroy, internal_array_op2 assign, internal_array_op2 copy)
 
void __TBB_EXPORTED_METHOD internal_throw_exception (size_type) const
 Obsolete. More...
 
void __TBB_EXPORTED_METHOD internal_swap (concurrent_vector_base_v3 &v)
 
void __TBB_EXPORTED_METHOD internal_resize (size_type n, size_type element_size, size_type max_size, const void *src, internal_array_op1 destroy, internal_array_op2 init)
 
size_type __TBB_EXPORTED_METHOD internal_grow_to_at_least_with_result (size_type new_size, size_type element_size, internal_array_op2 init, const void *src)
 
void __TBB_EXPORTED_METHOD internal_grow_to_at_least (size_type new_size, size_type element_size, internal_array_op2 init, const void *src)
 Deprecated entry point for backwards compatibility to TBB 2.1. More...
 

Static Private Member Functions

static voidinternal_allocator (internal::concurrent_vector_base_v3 &vb, size_t k)
 Allocate k items. More...
 
static void __TBB_EXPORTED_FUNC initialize_array (void *begin, const void *, size_type n)
 Construct n instances of T, starting at "begin". More...
 
static void __TBB_EXPORTED_FUNC initialize_array_by (void *begin, const void *src, size_type n)
 Copy-construct n instances of T, starting at "begin". More...
 
static void __TBB_EXPORTED_FUNC copy_array (void *dst, const void *src, size_type n)
 Copy-construct n instances of T by copying single element pointed to by src, starting at "dst". More...
 
static void __TBB_EXPORTED_FUNC move_array (void *dst, const void *src, size_type n)
 Move-construct n instances of T, starting at "dst" by copying according element of src array. More...
 
static void __TBB_EXPORTED_FUNC move_assign_array (void *dst, const void *src, size_type n)
 Move-assign (using operator=) n instances of T, starting at "dst" by assigning according element of src array. More...
 
template<typename Iterator >
static void __TBB_EXPORTED_FUNC copy_range (void *dst, const void *p_type_erased_iterator, size_type n)
 Copy-construct n instances of T, starting at "dst" by iterator range of [p_type_erased_iterator, p_type_erased_iterator+n). More...
 
static void __TBB_EXPORTED_FUNC assign_array (void *dst, const void *src, size_type n)
 Assign (using operator=) n instances of T, starting at "dst" by assigning according element of src array. More...
 
static void __TBB_EXPORTED_FUNC destroy_array (void *begin, size_type n)
 Destroy n instances of T, starting at "begin". More...
 
- Static Private Member Functions inherited from tbb::internal::concurrent_vector_base_v3
static segment_index_t segment_index_of (size_type index)
 
static segment_index_t segment_base (segment_index_t k)
 
static segment_index_t segment_base_index_of (segment_index_t &index)
 
static size_type segment_size (segment_index_t k)
 
static bool is_first_element_in_segment (size_type element_index)
 

Friends

template<typename C , typename U >
class internal::vector_iterator
 

Additional Inherited Members

- Protected Types inherited from tbb::internal::allocator_base< T, A >
typedef tbb::internal::allocator_rebind< A, T >::type allocator_type
 
- Protected Member Functions inherited from tbb::internal::allocator_base< T, A >
 allocator_base (const allocator_type &a=allocator_type())
 
- Protected Attributes inherited from tbb::internal::allocator_base< T, A >
allocator_type my_allocator
 
- Private Types inherited from tbb::internal::concurrent_vector_base_v3
enum  { default_initial_segments = 1, pointers_per_short_table = 3, pointers_per_long_table = sizeof(segment_index_t) * 8 }
 
typedef size_t segment_index_t
 
typedef size_t size_type
 
typedef void(__TBB_EXPORTED_FUNCinternal_array_op1) (void *begin, size_type n)
 An operation on an n-element array starting at begin. More...
 
typedef void(__TBB_EXPORTED_FUNCinternal_array_op2) (void *dst, const void *src, size_type n)
 An operation on n-element destination array and n-element source array. More...
 
- Private Attributes inherited from tbb::internal::concurrent_vector_base_v3
void *(* vector_allocator_ptr )(concurrent_vector_base_v3 &, size_t)
 allocator function pointer More...
 
atomic< size_typemy_first_block
 count of segments in the first block More...
 
atomic< size_typemy_early_size
 Requested size of vector. More...
 
atomic< segment_t * > my_segment
 Pointer to the segments table. More...
 
segment_t my_storage [pointers_per_short_table]
 embedded storage of segment pointers More...
 

Detailed Description

template<typename T, class A>
class tbb::concurrent_vector< T, A >

Concurrent vector container.

concurrent_vector is a container having the following main properties:

  • It provides random indexed access to its elements. The index of the first element is 0.
  • It ensures safe concurrent growing its size (different threads can safely append new elements).
  • Adding new elements does not invalidate existing iterators and does not change indices of existing items.
Compatibility
The class meets all Container Requirements and Reversible Container Requirements from C++ Standard (See ISO/IEC 14882:2003(E), clause 23.1). But it doesn't meet Sequence Requirements due to absence of insert() and erase() methods.
Exception Safety
Methods working with memory allocation and/or new elements construction can throw an exception if allocator fails to allocate memory or element's default constructor throws one. Concurrent vector's element of type T must conform to the following requirements:
  • Throwing an exception is forbidden for destructor of T.
  • Default constructor of T must not throw an exception OR its non-virtual destructor must safely work when its object memory is zero-initialized.
Otherwise, the program's behavior is undefined.
If an exception happens inside growth or assignment operation, an instance of the vector becomes invalid unless it is stated otherwise in the method documentation. Invalid state means:
  • There are no guarantees that all items were initialized by a constructor. The rest of items is zero-filled, including item where exception happens.
  • An invalid vector instance cannot be repaired; it is unable to grow anymore.
  • Size and capacity reported by the vector are incorrect, and calculated as if the failed operation were successful.
  • Attempt to access not allocated elements using operator[] or iterators results in access violation or segmentation fault exception, and in case of using at() method a C++ exception is thrown.
If a concurrent grow operation successfully completes, all the elements it has added to the vector will remain valid and accessible even if one of subsequent grow operations fails.
Fragmentation
Unlike an STL vector, a concurrent_vector does not move existing elements if it needs to allocate more memory. The container is divided into a series of contiguous arrays of elements. The first reservation, growth, or assignment operation determines the size of the first array. Using small number of elements as initial size incurs fragmentation that may increase element access time. Internal layout can be optimized by method compact() that merges several smaller arrays into one solid.
Changes since TBB 2.1
  • Fixed guarantees of concurrent_vector::size() and grow_to_at_least() methods to assure elements are allocated.
  • Methods end()/rbegin()/back() are partly thread-safe since they use size() to get the end of vector
  • Added resize() methods (not thread-safe)
  • Added cbegin/cend/crbegin/crend methods
  • Changed return type of methods grow* and push_back to iterator
Changes since TBB 2.0
  • Implemented exception-safety guarantees
  • Added template argument for allocator
  • Added allocator argument in constructors
  • Faster index calculation
  • First growth call specifies a number of segments to be merged in the first allocation.
  • Fixed memory blow up for swarm of vector's instances of small size
  • Added grow_by(size_type n, const_reference t) growth using copying constructor to init new items.
  • Added STL-like constructors.
  • Added operators ==, < and derivatives
  • Added at() method, approved for using after an exception was thrown inside the vector
  • Added get_allocator() method.
  • Added assign() methods
  • Added compact() method to defragment first segments
  • Added swap() method
  • range() defaults on grainsize = 1 supporting auto grainsize algorithms.

Definition at line 65 of file concurrent_vector.h.

Member Typedef Documentation

◆ allocator_type

template<typename T, class A>
typedef internal::allocator_base<T, A>::allocator_type tbb::concurrent_vector< T, A >::allocator_type

Definition at line 568 of file concurrent_vector.h.

◆ const_iterator

template<typename T, class A>
typedef internal::vector_iterator<concurrent_vector,const T> tbb::concurrent_vector< T, A >::const_iterator

Definition at line 578 of file concurrent_vector.h.

◆ const_pointer

template<typename T, class A>
typedef const T* tbb::concurrent_vector< T, A >::const_pointer

Definition at line 575 of file concurrent_vector.h.

◆ const_range_type

template<typename T, class A>
typedef generic_range_type<const_iterator> tbb::concurrent_vector< T, A >::const_range_type

Definition at line 594 of file concurrent_vector.h.

◆ const_reference

template<typename T, class A>
typedef const T& tbb::concurrent_vector< T, A >::const_reference

Definition at line 573 of file concurrent_vector.h.

◆ const_reverse_iterator

template<typename T, class A>
typedef std::reverse_iterator<const_iterator> tbb::concurrent_vector< T, A >::const_reverse_iterator

Definition at line 583 of file concurrent_vector.h.

◆ difference_type

template<typename T, class A>
typedef ptrdiff_t tbb::concurrent_vector< T, A >::difference_type

Definition at line 571 of file concurrent_vector.h.

◆ iterator

template<typename T, class A>
typedef internal::vector_iterator<concurrent_vector,T> tbb::concurrent_vector< T, A >::iterator

Definition at line 577 of file concurrent_vector.h.

◆ pointer

template<typename T, class A>
typedef T* tbb::concurrent_vector< T, A >::pointer

Definition at line 574 of file concurrent_vector.h.

◆ range_type

template<typename T, class A>
typedef generic_range_type<iterator> tbb::concurrent_vector< T, A >::range_type

Definition at line 593 of file concurrent_vector.h.

◆ reference

template<typename T, class A>
typedef T& tbb::concurrent_vector< T, A >::reference

Definition at line 572 of file concurrent_vector.h.

◆ reverse_iterator

template<typename T, class A>
typedef std::reverse_iterator<iterator> tbb::concurrent_vector< T, A >::reverse_iterator

Definition at line 582 of file concurrent_vector.h.

◆ size_type

Definition at line 567 of file concurrent_vector.h.

◆ value_type

template<typename T, class A>
typedef T tbb::concurrent_vector< T, A >::value_type

Definition at line 570 of file concurrent_vector.h.

Constructor & Destructor Documentation

◆ concurrent_vector() [1/9]

template<typename T, class A>
tbb::concurrent_vector< T, A >::concurrent_vector ( const allocator_type a = allocator_type())
inlineexplicit

Construct empty vector.

Definition at line 601 of file concurrent_vector.h.

602  : internal::allocator_base<T, A>(a), internal::concurrent_vector_base()
603  {
605  }
concurrent_vector_base_v3 concurrent_vector_base
static void * internal_allocator(internal::concurrent_vector_base_v3 &vb, size_t k)
Allocate k items.
void *(* vector_allocator_ptr)(concurrent_vector_base_v3 &, size_t)
allocator function pointer

◆ concurrent_vector() [2/9]

template<typename T, class A>
tbb::concurrent_vector< T, A >::concurrent_vector ( std::initializer_list< T >  init_list,
const allocator_type a = allocator_type() 
)
inline

Constructor from initializer_list.

Definition at line 611 of file concurrent_vector.h.

612  : internal::allocator_base<T, A>(a), internal::concurrent_vector_base()
613  {
615  __TBB_TRY {
616  internal_assign_iterators(init_list.begin(), init_list.end());
617  } __TBB_CATCH(...) {
618  segment_t *table = my_segment.load<relaxed>();;
620  __TBB_RETHROW();
621  }
622 
623  }
No ordering.
Definition: atomic.h:51
segment_index_t __TBB_EXPORTED_METHOD internal_clear(internal_array_op1 destroy)
concurrent_vector_base_v3 concurrent_vector_base
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
#define __TBB_TRY
Definition: tbb_stddef.h:287
atomic< size_type > my_first_block
count of segments in the first block
void internal_assign_iterators(I first, I last)
assign by iterators
#define __TBB_CATCH(e)
Definition: tbb_stddef.h:288
value_type load() const
Definition: atomic.h:306
static void * internal_allocator(internal::concurrent_vector_base_v3 &vb, size_t k)
Allocate k items.
void internal_free_segments(segment_t table[], segment_index_t k, segment_index_t first_block)
Free k segments from table.
atomic< segment_t * > my_segment
Pointer to the segments table.
void *(* vector_allocator_ptr)(concurrent_vector_base_v3 &, size_t)
allocator function pointer
#define __TBB_RETHROW()
Definition: tbb_stddef.h:290

◆ concurrent_vector() [3/9]

template<typename T, class A>
tbb::concurrent_vector< T, A >::concurrent_vector ( const concurrent_vector< T, A > &  vector,
const allocator_type a = allocator_type() 
)
inline

Copying constructor.

Definition at line 627 of file concurrent_vector.h.

628  : internal::allocator_base<T, A>(a), internal::concurrent_vector_base()
629  {
631  __TBB_TRY {
632  internal_copy(vector, sizeof(T), &copy_array);
633  } __TBB_CATCH(...) {
634  segment_t *table = my_segment.load<relaxed>();
636  __TBB_RETHROW();
637  }
638  }
No ordering.
Definition: atomic.h:51
static void __TBB_EXPORTED_FUNC copy_array(void *dst, const void *src, size_type n)
Copy-construct n instances of T by copying single element pointed to by src, starting at "dst".
segment_index_t __TBB_EXPORTED_METHOD internal_clear(internal_array_op1 destroy)
void __TBB_EXPORTED_METHOD internal_copy(const concurrent_vector_base_v3 &src, size_type element_size, internal_array_op2 copy)
concurrent_vector_base_v3 concurrent_vector_base
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
#define __TBB_TRY
Definition: tbb_stddef.h:287
atomic< size_type > my_first_block
count of segments in the first block
#define __TBB_CATCH(e)
Definition: tbb_stddef.h:288
value_type load() const
Definition: atomic.h:306
static void * internal_allocator(internal::concurrent_vector_base_v3 &vb, size_t k)
Allocate k items.
void internal_free_segments(segment_t table[], segment_index_t k, segment_index_t first_block)
Free k segments from table.
atomic< segment_t * > my_segment
Pointer to the segments table.
void *(* vector_allocator_ptr)(concurrent_vector_base_v3 &, size_t)
allocator function pointer
#define __TBB_RETHROW()
Definition: tbb_stddef.h:290

◆ concurrent_vector() [4/9]

template<typename T, class A>
tbb::concurrent_vector< T, A >::concurrent_vector ( concurrent_vector< T, A > &&  source)
inline

Move constructor.

Definition at line 643 of file concurrent_vector.h.

644  : internal::allocator_base<T, A>(std::move(source)), internal::concurrent_vector_base()
645  {
648  }
void __TBB_EXPORTED_METHOD internal_swap(concurrent_vector_base_v3 &v)
concurrent_vector_base_v3 concurrent_vector_base
static void * internal_allocator(internal::concurrent_vector_base_v3 &vb, size_t k)
Allocate k items.
void move(tbb_thread &t1, tbb_thread &t2)
Definition: tbb_thread.h:309
void *(* vector_allocator_ptr)(concurrent_vector_base_v3 &, size_t)
allocator function pointer

◆ concurrent_vector() [5/9]

template<typename T, class A>
tbb::concurrent_vector< T, A >::concurrent_vector ( concurrent_vector< T, A > &&  source,
const allocator_type a 
)
inline

Definition at line 650 of file concurrent_vector.h.

651  : internal::allocator_base<T, A>(a), internal::concurrent_vector_base()
652  {
654  //C++ standard requires instances of an allocator being compared for equality,
655  //which means that memory allocated by one instance is possible to deallocate with the other one.
656  if (a == source.my_allocator) {
658  } else {
659  __TBB_TRY {
660  internal_copy(source, sizeof(T), &move_array);
661  } __TBB_CATCH(...) {
662  segment_t *table = my_segment.load<relaxed>();
664  __TBB_RETHROW();
665  }
666  }
667  }
void __TBB_EXPORTED_METHOD internal_swap(concurrent_vector_base_v3 &v)
No ordering.
Definition: atomic.h:51
segment_index_t __TBB_EXPORTED_METHOD internal_clear(internal_array_op1 destroy)
void __TBB_EXPORTED_METHOD internal_copy(const concurrent_vector_base_v3 &src, size_type element_size, internal_array_op2 copy)
concurrent_vector_base_v3 concurrent_vector_base
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
#define __TBB_TRY
Definition: tbb_stddef.h:287
atomic< size_type > my_first_block
count of segments in the first block
#define __TBB_CATCH(e)
Definition: tbb_stddef.h:288
value_type load() const
Definition: atomic.h:306
static void * internal_allocator(internal::concurrent_vector_base_v3 &vb, size_t k)
Allocate k items.
static void __TBB_EXPORTED_FUNC move_array(void *dst, const void *src, size_type n)
Move-construct n instances of T, starting at "dst" by copying according element of src array.
void internal_free_segments(segment_t table[], segment_index_t k, segment_index_t first_block)
Free k segments from table.
atomic< segment_t * > my_segment
Pointer to the segments table.
void *(* vector_allocator_ptr)(concurrent_vector_base_v3 &, size_t)
allocator function pointer
#define __TBB_RETHROW()
Definition: tbb_stddef.h:290

◆ concurrent_vector() [6/9]

template<typename T, class A>
template<class M >
tbb::concurrent_vector< T, A >::concurrent_vector ( const concurrent_vector< T, M > &  vector,
const allocator_type a = allocator_type() 
)
inline

Copying constructor for vector with different allocator type.

Definition at line 673 of file concurrent_vector.h.

674  : internal::allocator_base<T, A>(a), internal::concurrent_vector_base()
675  {
677  __TBB_TRY {
678  internal_copy(vector.internal_vector_base(), sizeof(T), &copy_array);
679  } __TBB_CATCH(...) {
680  segment_t *table = my_segment.load<relaxed>();
682  __TBB_RETHROW();
683  }
684  }
No ordering.
Definition: atomic.h:51
static void __TBB_EXPORTED_FUNC copy_array(void *dst, const void *src, size_type n)
Copy-construct n instances of T by copying single element pointed to by src, starting at "dst".
segment_index_t __TBB_EXPORTED_METHOD internal_clear(internal_array_op1 destroy)
void __TBB_EXPORTED_METHOD internal_copy(const concurrent_vector_base_v3 &src, size_type element_size, internal_array_op2 copy)
concurrent_vector_base_v3 concurrent_vector_base
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
#define __TBB_TRY
Definition: tbb_stddef.h:287
atomic< size_type > my_first_block
count of segments in the first block
#define __TBB_CATCH(e)
Definition: tbb_stddef.h:288
value_type load() const
Definition: atomic.h:306
static void * internal_allocator(internal::concurrent_vector_base_v3 &vb, size_t k)
Allocate k items.
void internal_free_segments(segment_t table[], segment_index_t k, segment_index_t first_block)
Free k segments from table.
atomic< segment_t * > my_segment
Pointer to the segments table.
void *(* vector_allocator_ptr)(concurrent_vector_base_v3 &, size_t)
allocator function pointer
#define __TBB_RETHROW()
Definition: tbb_stddef.h:290

◆ concurrent_vector() [7/9]

template<typename T, class A>
tbb::concurrent_vector< T, A >::concurrent_vector ( size_type  n)
inlineexplicit

Construction with initial size specified by argument n.

Definition at line 687 of file concurrent_vector.h.

688  {
690  __TBB_TRY {
691  internal_resize( n, sizeof(T), max_size(), NULL, &destroy_array, &initialize_array );
692  } __TBB_CATCH(...) {
693  segment_t *table = my_segment.load<relaxed>();
695  __TBB_RETHROW();
696  }
697  }
No ordering.
Definition: atomic.h:51
segment_index_t __TBB_EXPORTED_METHOD internal_clear(internal_array_op1 destroy)
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
#define __TBB_TRY
Definition: tbb_stddef.h:287
atomic< size_type > my_first_block
count of segments in the first block
#define __TBB_CATCH(e)
Definition: tbb_stddef.h:288
value_type load() const
Definition: atomic.h:306
void __TBB_EXPORTED_METHOD internal_resize(size_type n, size_type element_size, size_type max_size, const void *src, internal_array_op1 destroy, internal_array_op2 init)
static void __TBB_EXPORTED_FUNC initialize_array(void *begin, const void *, size_type n)
Construct n instances of T, starting at "begin".
static void * internal_allocator(internal::concurrent_vector_base_v3 &vb, size_t k)
Allocate k items.
void internal_free_segments(segment_t table[], segment_index_t k, segment_index_t first_block)
Free k segments from table.
atomic< segment_t * > my_segment
Pointer to the segments table.
void *(* vector_allocator_ptr)(concurrent_vector_base_v3 &, size_t)
allocator function pointer
#define __TBB_RETHROW()
Definition: tbb_stddef.h:290
size_type max_size() const
Upper bound on argument to reserve.

◆ concurrent_vector() [8/9]

template<typename T, class A>
tbb::concurrent_vector< T, A >::concurrent_vector ( size_type  n,
const_reference  t,
const allocator_type a = allocator_type() 
)
inline

Construction with initial size specified by argument n, initialization by copying of t, and given allocator instance.

Definition at line 700 of file concurrent_vector.h.

701  : internal::allocator_base<T, A>(a)
702  {
704  __TBB_TRY {
705  internal_resize( n, sizeof(T), max_size(), static_cast<const void*>(&t), &destroy_array, &initialize_array_by );
706  } __TBB_CATCH(...) {
707  segment_t *table = my_segment.load<relaxed>();
709  __TBB_RETHROW();
710  }
711  }
No ordering.
Definition: atomic.h:51
segment_index_t __TBB_EXPORTED_METHOD internal_clear(internal_array_op1 destroy)
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
#define __TBB_TRY
Definition: tbb_stddef.h:287
atomic< size_type > my_first_block
count of segments in the first block
#define __TBB_CATCH(e)
Definition: tbb_stddef.h:288
value_type load() const
Definition: atomic.h:306
void __TBB_EXPORTED_METHOD internal_resize(size_type n, size_type element_size, size_type max_size, const void *src, internal_array_op1 destroy, internal_array_op2 init)
static void * internal_allocator(internal::concurrent_vector_base_v3 &vb, size_t k)
Allocate k items.
static void __TBB_EXPORTED_FUNC initialize_array_by(void *begin, const void *src, size_type n)
Copy-construct n instances of T, starting at "begin".
void internal_free_segments(segment_t table[], segment_index_t k, segment_index_t first_block)
Free k segments from table.
atomic< segment_t * > my_segment
Pointer to the segments table.
void *(* vector_allocator_ptr)(concurrent_vector_base_v3 &, size_t)
allocator function pointer
#define __TBB_RETHROW()
Definition: tbb_stddef.h:290
size_type max_size() const
Upper bound on argument to reserve.

◆ concurrent_vector() [9/9]

template<typename T, class A>
template<class I >
tbb::concurrent_vector< T, A >::concurrent_vector ( first,
last,
const allocator_type a = allocator_type() 
)
inline

Construction with copying iteration range and given allocator instance.

Definition at line 715 of file concurrent_vector.h.

716  : internal::allocator_base<T, A>(a)
717  {
719  __TBB_TRY {
720  internal_assign_range(first, last, static_cast<is_integer_tag<std::numeric_limits<I>::is_integer> *>(0) );
721  } __TBB_CATCH(...) {
722  segment_t *table = my_segment.load<relaxed>();
724  __TBB_RETHROW();
725  }
726  }
void internal_assign_range(I first, I last, is_integer_tag< true > *)
assign integer items by copying when arguments are treated as iterators. See C++ Standard 2003 23....
No ordering.
Definition: atomic.h:51
segment_index_t __TBB_EXPORTED_METHOD internal_clear(internal_array_op1 destroy)
auto first(Container &c) -> decltype(begin(c))
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
#define __TBB_TRY
Definition: tbb_stddef.h:287
atomic< size_type > my_first_block
count of segments in the first block
auto last(Container &c) -> decltype(begin(c))
#define __TBB_CATCH(e)
Definition: tbb_stddef.h:288
value_type load() const
Definition: atomic.h:306
static void * internal_allocator(internal::concurrent_vector_base_v3 &vb, size_t k)
Allocate k items.
void internal_free_segments(segment_t table[], segment_index_t k, segment_index_t first_block)
Free k segments from table.
atomic< segment_t * > my_segment
Pointer to the segments table.
void *(* vector_allocator_ptr)(concurrent_vector_base_v3 &, size_t)
allocator function pointer
#define __TBB_RETHROW()
Definition: tbb_stddef.h:290

◆ ~concurrent_vector()

template<typename T, class A>
tbb::concurrent_vector< T, A >::~concurrent_vector ( )
inline

Clear and destroy vector.

Definition at line 1016 of file concurrent_vector.h.

1016  {
1017  segment_t *table = my_segment.load<relaxed>();
1019  // base class destructor call should be then
1020  }
No ordering.
Definition: atomic.h:51
segment_index_t __TBB_EXPORTED_METHOD internal_clear(internal_array_op1 destroy)
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
atomic< size_type > my_first_block
count of segments in the first block
value_type load() const
Definition: atomic.h:306
void internal_free_segments(segment_t table[], segment_index_t k, segment_index_t first_block)
Free k segments from table.
atomic< segment_t * > my_segment
Pointer to the segments table.

Member Function Documentation

◆ assign() [1/3]

template<typename T, class A>
void tbb::concurrent_vector< T, A >::assign ( size_type  n,
const_reference  t 
)
inline

assign n items by copying t item

Definition at line 982 of file concurrent_vector.h.

982  {
983  clear();
984  internal_resize( n, sizeof(T), max_size(), static_cast<const void*>(&t), &destroy_array, &initialize_array_by );
985  }
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
void __TBB_EXPORTED_METHOD internal_resize(size_type n, size_type element_size, size_type max_size, const void *src, internal_array_op1 destroy, internal_array_op2 init)
static void __TBB_EXPORTED_FUNC initialize_array_by(void *begin, const void *src, size_type n)
Copy-construct n instances of T, starting at "begin".
size_type max_size() const
Upper bound on argument to reserve.
void clear()
Clear container while keeping memory allocated.

◆ assign() [2/3]

template<typename T, class A>
template<class I >
void tbb::concurrent_vector< T, A >::assign ( first,
last 
)
inline

assign range [first, last)

Definition at line 989 of file concurrent_vector.h.

989  {
990  clear(); internal_assign_range( first, last, static_cast<is_integer_tag<std::numeric_limits<I>::is_integer> *>(0) );
991  }
void internal_assign_range(I first, I last, is_integer_tag< true > *)
assign integer items by copying when arguments are treated as iterators. See C++ Standard 2003 23....
auto first(Container &c) -> decltype(begin(c))
auto last(Container &c) -> decltype(begin(c))
void clear()
Clear container while keeping memory allocated.

◆ assign() [3/3]

template<typename T, class A>
void tbb::concurrent_vector< T, A >::assign ( std::initializer_list< T >  init_list)
inline

assigns an initializer list

Definition at line 995 of file concurrent_vector.h.

995  {
996  clear(); internal_assign_iterators( init_list.begin(), init_list.end());
997  }
void internal_assign_iterators(I first, I last)
assign by iterators
void clear()
Clear container while keeping memory allocated.

◆ assign_array()

template<typename T , class A >
void tbb::concurrent_vector< T, A >::assign_array ( void dst,
const void src,
size_type  n 
)
staticprivate

Assign (using operator=) n instances of T, starting at "dst" by assigning according element of src array.

Definition at line 1323 of file concurrent_vector.h.

1323  {
1324  internal_loop_guide loop(n, dst); loop.assign(src);
1325 }

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::operator=().

Here is the caller graph for this function:

◆ at() [1/2]

template<typename T, class A>
reference tbb::concurrent_vector< T, A >::at ( size_type  index)
inline

Get reference to element at given index. Throws exceptions on errors.

Definition at line 870 of file concurrent_vector.h.

870  {
872  }
T & internal_subscript_with_exceptions(size_type index) const
Get reference to element at given index with errors checks.

◆ at() [2/2]

template<typename T, class A>
const_reference tbb::concurrent_vector< T, A >::at ( size_type  index) const
inline

Get const reference to element at given index. Throws exceptions on errors.

Definition at line 875 of file concurrent_vector.h.

875  {
877  }
T & internal_subscript_with_exceptions(size_type index) const
Get reference to element at given index with errors checks.

◆ back() [1/2]

template<typename T, class A>
reference tbb::concurrent_vector< T, A >::back ( )
inline

the last item

Definition at line 969 of file concurrent_vector.h.

969  {
970  __TBB_ASSERT( size()>0, NULL);
971  return internal_subscript( size()-1 );
972  }
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:169
T & internal_subscript(size_type index) const
Get reference to element at given index.
size_type size() const
Return size of vector. It may include elements under construction.

◆ back() [2/2]

template<typename T, class A>
const_reference tbb::concurrent_vector< T, A >::back ( ) const
inline

the last item const

Definition at line 974 of file concurrent_vector.h.

974  {
975  __TBB_ASSERT( size()>0, NULL);
976  return internal_subscript( size()-1 );
977  }
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:169
T & internal_subscript(size_type index) const
Get reference to element at given index.
size_type size() const
Return size of vector. It may include elements under construction.

◆ begin() [1/2]

template<typename T, class A>
iterator tbb::concurrent_vector< T, A >::begin ( )
inline

start iterator

Definition at line 933 of file concurrent_vector.h.

933 {return iterator(*this,0);}
internal::vector_iterator< concurrent_vector, T > iterator

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::crend(), tbb::concurrent_vector< padded_element, padded_allocator_type >::range(), and tbb::concurrent_vector< padded_element, padded_allocator_type >::rend().

Here is the caller graph for this function:

◆ begin() [2/2]

template<typename T, class A>
const_iterator tbb::concurrent_vector< T, A >::begin ( ) const
inline

start const iterator

Definition at line 937 of file concurrent_vector.h.

937 {return const_iterator(*this,0);}
internal::vector_iterator< concurrent_vector, const T > const_iterator

◆ capacity()

template<typename T, class A>
size_type tbb::concurrent_vector< T, A >::capacity ( ) const
inline

Maximum size to which array can grow without allocating more memory. Concurrent allocations are not included in the value.

Definition at line 902 of file concurrent_vector.h.

902 {return internal_capacity();}
size_type __TBB_EXPORTED_METHOD internal_capacity() const

◆ cbegin()

template<typename T, class A>
const_iterator tbb::concurrent_vector< T, A >::cbegin ( ) const
inline

start const iterator

Definition at line 941 of file concurrent_vector.h.

941 {return const_iterator(*this,0);}
internal::vector_iterator< concurrent_vector, const T > const_iterator

◆ cend()

template<typename T, class A>
const_iterator tbb::concurrent_vector< T, A >::cend ( ) const
inline

end const iterator

Definition at line 943 of file concurrent_vector.h.

943 {return const_iterator(*this,size());}
internal::vector_iterator< concurrent_vector, const T > const_iterator
size_type size() const
Return size of vector. It may include elements under construction.

◆ clear()

template<typename T, class A>
void tbb::concurrent_vector< T, A >::clear ( )
inline

Clear container while keeping memory allocated.

To free up the memory, use in conjunction with method compact(). Not thread safe

Definition at line 1011 of file concurrent_vector.h.

1011  {
1013  }
segment_index_t __TBB_EXPORTED_METHOD internal_clear(internal_array_op1 destroy)
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::assign(), and tbb::interface6::enumerable_thread_specific< T, my_alloc, ets_no_key >::clear().

Here is the caller graph for this function:

◆ copy_array()

template<typename T , class A >
void tbb::concurrent_vector< T, A >::copy_array ( void dst,
const void src,
size_type  n 
)
staticprivate

Copy-construct n instances of T by copying single element pointed to by src, starting at "dst".

Definition at line 1293 of file concurrent_vector.h.

1293  {
1294  internal_loop_guide loop(n, dst); loop.copy(src);
1295 }

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::concurrent_vector(), and tbb::concurrent_vector< padded_element, padded_allocator_type >::operator=().

Here is the caller graph for this function:

◆ copy_range() [1/2]

template<typename T, class A>
template<typename Iterator >
static void __TBB_EXPORTED_FUNC tbb::concurrent_vector< T, A >::copy_range ( void dst,
const void p_type_erased_iterator,
size_type  n 
)
staticprivate

Copy-construct n instances of T, starting at "dst" by iterator range of [p_type_erased_iterator, p_type_erased_iterator+n).

◆ copy_range() [2/2]

template<typename T, class A>
template<typename I >
void tbb::concurrent_vector< T, A >::copy_range ( void dst,
const void p_type_erased_iterator,
size_type  n 
)

Definition at line 1317 of file concurrent_vector.h.

1317  {
1318  internal_loop_guide loop(n, dst);
1319  loop.iterate( *(static_cast<I*>(const_cast<void*>(p_type_erased_iterator))) );
1320 }

◆ crbegin()

template<typename T, class A>
const_reverse_iterator tbb::concurrent_vector< T, A >::crbegin ( ) const
inline

reverse start const iterator

Definition at line 953 of file concurrent_vector.h.

953 {return const_reverse_iterator(end());}
std::reverse_iterator< const_iterator > const_reverse_iterator
iterator end()
end iterator

◆ crend()

template<typename T, class A>
const_reverse_iterator tbb::concurrent_vector< T, A >::crend ( ) const
inline

reverse end const iterator

Definition at line 955 of file concurrent_vector.h.

955 {return const_reverse_iterator(begin());}
std::reverse_iterator< const_iterator > const_reverse_iterator
iterator begin()
start iterator

◆ destroy_array()

template<typename T , class A >
void tbb::concurrent_vector< T, A >::destroy_array ( void begin,
size_type  n 
)
staticprivate

◆ emplace_back()

template<typename T, class A>
template<typename... Args>
iterator tbb::concurrent_vector< T, A >::emplace_back ( Args &&...  args)
inline

Push item, create item "in place" with provided arguments.

Returns iterator pointing to the new element.

Definition at line 849 of file concurrent_vector.h.

850  {
851  push_back_helper prolog(*this);
852  new(prolog.internal_push_back_result()) T(std::forward<Args>(args)...);
853  return prolog.return_iterator_and_dismiss();
854  }

◆ empty()

template<typename T, class A>
bool tbb::concurrent_vector< T, A >::empty ( ) const
inline

Return false if vector is not empty or has elements under construction at least.

Definition at line 899 of file concurrent_vector.h.

899 {return !my_early_size;}
atomic< size_type > my_early_size
Requested size of vector.

Referenced by tbb::interface6::enumerable_thread_specific< T, my_alloc, ets_no_key >::empty().

Here is the caller graph for this function:

◆ end() [1/2]

template<typename T, class A>
iterator tbb::concurrent_vector< T, A >::end ( )
inline

end iterator

Definition at line 935 of file concurrent_vector.h.

935 {return iterator(*this,size());}
internal::vector_iterator< concurrent_vector, T > iterator
size_type size() const
Return size of vector. It may include elements under construction.

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::crbegin(), tbb::concurrent_vector< padded_element, padded_allocator_type >::range(), and tbb::concurrent_vector< padded_element, padded_allocator_type >::rbegin().

Here is the caller graph for this function:

◆ end() [2/2]

template<typename T, class A>
const_iterator tbb::concurrent_vector< T, A >::end ( ) const
inline

end const iterator

Definition at line 939 of file concurrent_vector.h.

939 {return const_iterator(*this,size());}
internal::vector_iterator< concurrent_vector, const T > const_iterator
size_type size() const
Return size of vector. It may include elements under construction.

◆ front() [1/2]

template<typename T, class A>
reference tbb::concurrent_vector< T, A >::front ( )
inline

the first item

Definition at line 957 of file concurrent_vector.h.

957  {
958  __TBB_ASSERT( size()>0, NULL);
959  const segment_value_t& segment_value = my_segment[0].template load<relaxed>();
960  return (segment_value.template pointer<T>())[0];
961  }
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:169
atomic< segment_t * > my_segment
Pointer to the segments table.
size_type size() const
Return size of vector. It may include elements under construction.

◆ front() [2/2]

template<typename T, class A>
const_reference tbb::concurrent_vector< T, A >::front ( ) const
inline

the first item const

Definition at line 963 of file concurrent_vector.h.

963  {
964  __TBB_ASSERT( size()>0, NULL);
965  const segment_value_t& segment_value = my_segment[0].template load<relaxed>();
966  return (segment_value.template pointer<const T>())[0];
967  }
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:169
atomic< segment_t * > my_segment
Pointer to the segments table.
size_type size() const
Return size of vector. It may include elements under construction.

◆ get_allocator()

template<typename T, class A>
allocator_type tbb::concurrent_vector< T, A >::get_allocator ( ) const
inline

return allocator object

Definition at line 979 of file concurrent_vector.h.

979 { return this->my_allocator; }

◆ grow_by() [1/4]

template<typename T, class A>
iterator tbb::concurrent_vector< T, A >::grow_by ( size_type  delta)
inline

Grow by "delta" elements.

Returns iterator pointing to the first new element.

Definition at line 776 of file concurrent_vector.h.

776  {
777  return iterator(*this, delta ? internal_grow_by( delta, sizeof(T), &initialize_array, NULL ) : my_early_size.load());
778  }
size_type __TBB_EXPORTED_METHOD internal_grow_by(size_type delta, size_type element_size, internal_array_op2 init, const void *src)
internal::vector_iterator< concurrent_vector, T > iterator
value_type load() const
Definition: atomic.h:306
static void __TBB_EXPORTED_FUNC initialize_array(void *begin, const void *, size_type n)
Construct n instances of T, starting at "begin".
atomic< size_type > my_early_size
Requested size of vector.

Referenced by tbb::interface6::enumerable_thread_specific< T, my_alloc, ets_no_key >::create_local(), and tbb::concurrent_vector< padded_element, padded_allocator_type >::grow_by().

Here is the caller graph for this function:

◆ grow_by() [2/4]

template<typename T, class A>
iterator tbb::concurrent_vector< T, A >::grow_by ( size_type  delta,
const_reference  t 
)
inline

Grow by "delta" elements using copying constructor.

Returns iterator pointing to the first new element.

Definition at line 782 of file concurrent_vector.h.

782  {
783  return iterator(*this, delta ? internal_grow_by( delta, sizeof(T), &initialize_array_by, static_cast<const void*>(&t) ) : my_early_size.load());
784  }
size_type __TBB_EXPORTED_METHOD internal_grow_by(size_type delta, size_type element_size, internal_array_op2 init, const void *src)
internal::vector_iterator< concurrent_vector, T > iterator
value_type load() const
Definition: atomic.h:306
atomic< size_type > my_early_size
Requested size of vector.
static void __TBB_EXPORTED_FUNC initialize_array_by(void *begin, const void *src, size_type n)
Copy-construct n instances of T, starting at "begin".

◆ grow_by() [3/4]

template<typename T, class A>
template<typename I >
iterator tbb::concurrent_vector< T, A >::grow_by ( first,
last 
)
inline

Returns iterator pointing to the first new element.

Definition at line 788 of file concurrent_vector.h.

788  {
789  typename std::iterator_traits<I>::difference_type delta = std::distance(first, last);
790  __TBB_ASSERT( delta >= 0, NULL);
791 
792  return iterator(*this, delta ? internal_grow_by(delta, sizeof(T), &copy_range<I>, static_cast<const void*>(&first)) : my_early_size.load());
793  }
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:169
auto first(Container &c) -> decltype(begin(c))
size_type __TBB_EXPORTED_METHOD internal_grow_by(size_type delta, size_type element_size, internal_array_op2 init, const void *src)
internal::vector_iterator< concurrent_vector, T > iterator
auto last(Container &c) -> decltype(begin(c))
value_type load() const
Definition: atomic.h:306
atomic< size_type > my_early_size
Requested size of vector.

◆ grow_by() [4/4]

template<typename T, class A>
iterator tbb::concurrent_vector< T, A >::grow_by ( std::initializer_list< T >  init_list)
inline

Returns iterator pointing to the first new element.

Definition at line 797 of file concurrent_vector.h.

797  {
798  return grow_by( init_list.begin(), init_list.end() );
799  }
iterator grow_by(size_type delta)
Grow by "delta" elements.

◆ grow_to_at_least() [1/2]

template<typename T, class A>
iterator tbb::concurrent_vector< T, A >::grow_to_at_least ( size_type  n)
inline

Append minimal sequence of elements such that size()>=n.

The new elements are default constructed. Blocks until all elements in range [0..n) are allocated. May return while other elements are being constructed by other threads. Returns iterator that points to beginning of appended sequence. If no elements were appended, returns iterator pointing to nth element.

Definition at line 807 of file concurrent_vector.h.

807  {
808  size_type m=0;
809  if( n ) {
810  m = internal_grow_to_at_least_with_result( n, sizeof(T), &initialize_array, NULL );
811  if( m>n ) m=n;
812  }
813  return iterator(*this, m);
814  };
size_type __TBB_EXPORTED_METHOD internal_grow_to_at_least_with_result(size_type new_size, size_type element_size, internal_array_op2 init, const void *src)
internal::vector_iterator< concurrent_vector, T > iterator
static void __TBB_EXPORTED_FUNC initialize_array(void *begin, const void *, size_type n)
Construct n instances of T, starting at "begin".
internal::concurrent_vector_base_v3::size_type size_type

◆ grow_to_at_least() [2/2]

template<typename T, class A>
iterator tbb::concurrent_vector< T, A >::grow_to_at_least ( size_type  n,
const_reference  t 
)
inline

Analogous to grow_to_at_least( size_type n ) with exception that the new elements are initialized by copying of t instead of default construction.

Definition at line 818 of file concurrent_vector.h.

818  {
819  size_type m=0;
820  if( n ) {
822  if( m>n ) m=n;
823  }
824  return iterator(*this, m);
825  };
size_type __TBB_EXPORTED_METHOD internal_grow_to_at_least_with_result(size_type new_size, size_type element_size, internal_array_op2 init, const void *src)
internal::vector_iterator< concurrent_vector, T > iterator
static void __TBB_EXPORTED_FUNC initialize_array_by(void *begin, const void *src, size_type n)
Copy-construct n instances of T, starting at "begin".
internal::concurrent_vector_base_v3::size_type size_type

◆ initialize_array()

template<typename T , class A >
void tbb::concurrent_vector< T, A >::initialize_array ( void begin,
const void ,
size_type  n 
)
staticprivate

◆ initialize_array_by()

◆ internal_allocator()

template<typename T, class A>
static void* tbb::concurrent_vector< T, A >::internal_allocator ( internal::concurrent_vector_base_v3 &  vb,
size_t  k 
)
inlinestaticprivate

Allocate k items.

Definition at line 1025 of file concurrent_vector.h.

1025  {
1026  return static_cast<concurrent_vector<T, A>&>(vb).my_allocator.allocate(k);
1027  }

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::concurrent_vector().

Here is the caller graph for this function:

◆ internal_assign_iterators()

template<typename T , class A >
template<class I >
void tbb::concurrent_vector< T, A >::internal_assign_iterators ( first,
last 
)
private

assign by iterators

Definition at line 1262 of file concurrent_vector.h.

1262  {
1263  __TBB_ASSERT(my_early_size == 0, NULL);
1264  size_type n = std::distance(first, last);
1265  if( !n ) return;
1266  internal_reserve(n, sizeof(T), max_size());
1267  my_early_size = n;
1268  segment_index_t k = 0;
1269  //TODO: unify segment iteration code with concurrent_base_v3::helper
1271  while( sz < n ) {
1272  internal_loop_guide loop(sz, my_segment[k].template load<relaxed>().template pointer<void>());
1273  loop.iterate(first);
1274  n -= sz;
1275  if( !k ) k = my_first_block;
1276  else { ++k; sz <<= 1; }
1277  }
1278  internal_loop_guide loop(n, my_segment[k].template load<relaxed>().template pointer<void>());
1279  loop.iterate(first);
1280 }
void __TBB_EXPORTED_METHOD internal_reserve(size_type n, size_type element_size, size_type max_size)
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:169
auto first(Container &c) -> decltype(begin(c))
static size_type segment_size(segment_index_t k)
atomic< size_type > my_first_block
count of segments in the first block
auto last(Container &c) -> decltype(begin(c))
atomic< size_type > my_early_size
Requested size of vector.
internal::concurrent_vector_base_v3::size_type size_type
atomic< segment_t * > my_segment
Pointer to the segments table.
size_type max_size() const
Upper bound on argument to reserve.

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::internal_assign_range().

Here is the caller graph for this function:

◆ internal_assign_n()

template<typename T, class A>
void tbb::concurrent_vector< T, A >::internal_assign_n ( size_type  n,
const_pointer  p 
)
inlineprivate

assign n items by copying t

Definition at line 1038 of file concurrent_vector.h.

1038  {
1039  internal_resize( n, sizeof(T), max_size(), static_cast<const void*>(p), &destroy_array, p? &initialize_array_by : &initialize_array );
1040  }
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
void const char const char int ITT_FORMAT __itt_group_sync p
void __TBB_EXPORTED_METHOD internal_resize(size_type n, size_type element_size, size_type max_size, const void *src, internal_array_op1 destroy, internal_array_op2 init)
static void __TBB_EXPORTED_FUNC initialize_array(void *begin, const void *, size_type n)
Construct n instances of T, starting at "begin".
static void __TBB_EXPORTED_FUNC initialize_array_by(void *begin, const void *src, size_type n)
Copy-construct n instances of T, starting at "begin".
size_type max_size() const
Upper bound on argument to reserve.

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::internal_assign_range().

Here is the caller graph for this function:

◆ internal_assign_range() [1/2]

template<typename T, class A>
template<class I >
void tbb::concurrent_vector< T, A >::internal_assign_range ( first,
last,
is_integer_tag< true > *   
)
inlineprivate

assign integer items by copying when arguments are treated as iterators. See C++ Standard 2003 23.1.1p9

Definition at line 1053 of file concurrent_vector.h.

1053  {
1054  internal_assign_n(static_cast<size_type>(first), &static_cast<T&>(last));
1055  }
void internal_assign_n(size_type n, const_pointer p)
assign n items by copying t
auto first(Container &c) -> decltype(begin(c))
auto last(Container &c) -> decltype(begin(c))

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::assign(), and tbb::concurrent_vector< padded_element, padded_allocator_type >::concurrent_vector().

Here is the caller graph for this function:

◆ internal_assign_range() [2/2]

template<typename T, class A>
template<class I >
void tbb::concurrent_vector< T, A >::internal_assign_range ( first,
last,
is_integer_tag< false > *   
)
inlineprivate

inline proxy assign by iterators

Definition at line 1058 of file concurrent_vector.h.

1058  {
1060  }
auto first(Container &c) -> decltype(begin(c))
auto last(Container &c) -> decltype(begin(c))
void internal_assign_iterators(I first, I last)
assign by iterators

◆ internal_free_segments()

template<typename T , class A >
void tbb::concurrent_vector< T, A >::internal_free_segments ( segment_t  table[],
segment_index_t  k,
segment_index_t  first_block 
)
private

Free k segments from table.

Definition at line 1209 of file concurrent_vector.h.

1209  {
1210  // Free the arrays
1211  while( k > first_block ) {
1212  --k;
1213  segment_value_t segment_value = table[k].load<relaxed>();
1214  table[k].store<relaxed>(segment_not_used());
1215  if( segment_value == segment_allocated() ) // check for correct segment pointer
1216  this->my_allocator.deallocate( (segment_value.pointer<T>()), segment_size(k) );
1217  }
1218  segment_value_t segment_value = table[0].load<relaxed>();
1219  if( segment_value == segment_allocated() ) {
1220  __TBB_ASSERT( first_block > 0, NULL );
1221  while(k > 0) table[--k].store<relaxed>(segment_not_used());
1222  this->my_allocator.deallocate( (segment_value.pointer<T>()), segment_size(first_block) );
1223  }
1224 }
No ordering.
Definition: atomic.h:51
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:169
static size_type segment_size(segment_index_t k)

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::concurrent_vector(), and tbb::concurrent_vector< padded_element, padded_allocator_type >::~concurrent_vector().

Here is the caller graph for this function:

◆ internal_subscript()

template<typename T , class A >
T & tbb::concurrent_vector< T, A >::internal_subscript ( size_type  index) const
private

Get reference to element at given index.

Definition at line 1227 of file concurrent_vector.h.

1227  {
1228  //TODO: unify both versions of internal_subscript
1229  __TBB_ASSERT( index < my_early_size, "index out of bounds" );
1230  size_type j = index;
1232  __TBB_ASSERT( my_segment.load<acquire>() != my_storage || k < pointers_per_short_table, "index is being allocated" );
1233  //no need in load with acquire (load<acquire>) since thread works in own space or gets
1234  //the information about added elements via some form of external synchronization
1235  //TODO: why not make a load of my_segment relaxed as well ?
1236  //TODO: add an assertion that my_segment[k] is properly aligned to please ITT
1237  segment_value_t segment_value = my_segment[k].template load<relaxed>();
1238  __TBB_ASSERT( segment_value != segment_allocation_failed(), "the instance is broken by bad allocation. Use at() instead" );
1239  __TBB_ASSERT( segment_value != segment_not_used(), "index is being allocated" );
1240  return (( segment_value.pointer<T>()))[j];
1241 }
segment_t my_storage[pointers_per_short_table]
embedded storage of segment pointers
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:169
Acquire.
Definition: atomic.h:47
atomic< size_type > my_early_size
Requested size of vector.
static segment_index_t segment_base_index_of(segment_index_t &index)
internal::concurrent_vector_base_v3::size_type size_type
atomic< segment_t * > my_segment
Pointer to the segments table.
Number of slots for segment pointers inside the class.

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::back(), and tbb::concurrent_vector< padded_element, padded_allocator_type >::operator[]().

Here is the caller graph for this function:

◆ internal_subscript_with_exceptions()

template<typename T , class A >
T & tbb::concurrent_vector< T, A >::internal_subscript_with_exceptions ( size_type  index) const
private

Get reference to element at given index with errors checks.

Definition at line 1244 of file concurrent_vector.h.

1244  {
1245  if( index >= my_early_size )
1246  internal::throw_exception(internal::eid_out_of_range); // throw std::out_of_range
1247  size_type j = index;
1249  //TODO: refactor this condition into separate helper function, e.g. fits_into_small_table
1250  if( my_segment.load<acquire>() == my_storage && k >= pointers_per_short_table )
1252  // no need in load with acquire (load<acquire>) since thread works in own space or gets
1253  //the information about added elements via some form of external synchronization
1254  //TODO: why not make a load of my_segment relaxed as well ?
1255  //TODO: add an assertion that my_segment[k] is properly aligned to please ITT
1256  segment_value_t segment_value = my_segment[k].template load<relaxed>();
1258  return (segment_value.pointer<T>())[j];
1259 }
segment_t my_storage[pointers_per_short_table]
embedded storage of segment pointers
friend void enforce_segment_allocated(segment_value_t const &s, internal::exception_id exception=eid_bad_last_alloc)
Acquire.
Definition: atomic.h:47
void throw_exception(exception_id eid)
Versionless convenience wrapper for throw_exception_v4()
atomic< size_type > my_early_size
Requested size of vector.
static segment_index_t segment_base_index_of(segment_index_t &index)
internal::concurrent_vector_base_v3::size_type size_type
atomic< segment_t * > my_segment
Pointer to the segments table.
Number of slots for segment pointers inside the class.

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::at().

Here is the caller graph for this function:

◆ internal_vector_base()

template<typename T, class A>
const internal::concurrent_vector_base_v3& tbb::concurrent_vector< T, A >::internal_vector_base ( ) const
inline

Definition at line 1022 of file concurrent_vector.h.

1022 { return *this; }

◆ max_size()

◆ move_array()

template<typename T , class A >
void tbb::concurrent_vector< T, A >::move_array ( void dst,
const void src,
size_type  n 
)
staticprivate

Move-construct n instances of T, starting at "dst" by copying according element of src array.

Definition at line 1299 of file concurrent_vector.h.

1299  {
1300  internal_loop_guide loop(n, dst); loop.move_construct(src);
1301 }

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::concurrent_vector(), and tbb::concurrent_vector< padded_element, padded_allocator_type >::operator=().

Here is the caller graph for this function:

◆ move_assign_array()

template<typename T , class A >
void tbb::concurrent_vector< T, A >::move_assign_array ( void dst,
const void src,
size_type  n 
)
staticprivate

Move-assign (using operator=) n instances of T, starting at "dst" by assigning according element of src array.

Definition at line 1303 of file concurrent_vector.h.

1303  {
1304  internal_loop_guide loop(n, dst); loop.move_assign(src);
1305 }

Referenced by tbb::concurrent_vector< padded_element, padded_allocator_type >::operator=().

Here is the caller graph for this function:

◆ operator=() [1/4]

template<typename T, class A>
concurrent_vector& tbb::concurrent_vector< T, A >::operator= ( const concurrent_vector< T, A > &  vector)
inline

Assignment.

Definition at line 729 of file concurrent_vector.h.

729  {
730  if( this != &vector )
731  internal_assign(vector, sizeof(T), &destroy_array, &assign_array, &copy_array);
732  return *this;
733  }
static void __TBB_EXPORTED_FUNC copy_array(void *dst, const void *src, size_type n)
Copy-construct n instances of T by copying single element pointed to by src, starting at "dst".
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
void __TBB_EXPORTED_METHOD internal_assign(const concurrent_vector_base_v3 &src, size_type element_size, internal_array_op1 destroy, internal_array_op2 assign, internal_array_op2 copy)
static void __TBB_EXPORTED_FUNC assign_array(void *dst, const void *src, size_type n)
Assign (using operator=) n instances of T, starting at "dst" by assigning according element of src ar...

◆ operator=() [2/4]

template<typename T, class A>
concurrent_vector& tbb::concurrent_vector< T, A >::operator= ( concurrent_vector< T, A > &&  other)
inline

Move assignment.

Definition at line 738 of file concurrent_vector.h.

738  {
739  __TBB_ASSERT(this != &other, "Move assignment to itself is prohibited ");
741  if(pocma_t::value || this->my_allocator == other.my_allocator) {
742  concurrent_vector trash (std::move(*this));
743  internal_swap(other);
744  tbb::internal::allocator_move_assignment(this->my_allocator, other.my_allocator, pocma_t());
745  } else {
747  }
748  return *this;
749  }
void __TBB_EXPORTED_METHOD internal_swap(concurrent_vector_base_v3 &v)
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:169
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
void __TBB_EXPORTED_METHOD internal_assign(const concurrent_vector_base_v3 &src, size_type element_size, internal_array_op1 destroy, internal_array_op2 assign, internal_array_op2 copy)
static void __TBB_EXPORTED_FUNC move_assign_array(void *dst, const void *src, size_type n)
Move-assign (using operator=) n instances of T, starting at "dst" by assigning according element of s...
void const char const char int ITT_FORMAT __itt_group_sync x void const char ITT_FORMAT __itt_group_sync s void ITT_FORMAT __itt_group_sync p void ITT_FORMAT p void ITT_FORMAT p no args __itt_suppress_mode_t unsigned int void size_t ITT_FORMAT d void ITT_FORMAT p void ITT_FORMAT p __itt_model_site __itt_model_site_instance ITT_FORMAT p __itt_model_task __itt_model_task_instance ITT_FORMAT p void ITT_FORMAT p void ITT_FORMAT p void size_t ITT_FORMAT d void ITT_FORMAT p const wchar_t ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s no args void ITT_FORMAT p size_t ITT_FORMAT d no args const wchar_t const wchar_t ITT_FORMAT s __itt_heap_function void size_t int ITT_FORMAT d __itt_heap_function void ITT_FORMAT p __itt_heap_function void void size_t int ITT_FORMAT d no args no args unsigned int ITT_FORMAT u const __itt_domain __itt_id ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain __itt_id ITT_FORMAT p const __itt_domain __itt_id __itt_timestamp __itt_timestamp ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain ITT_FORMAT p const __itt_domain __itt_string_handle unsigned long long value
void allocator_move_assignment(MyAlloc &my_allocator, OtherAlloc &other_allocator, traits_true_type)
void move(tbb_thread &t1, tbb_thread &t2)
Definition: tbb_thread.h:309
static void __TBB_EXPORTED_FUNC move_array(void *dst, const void *src, size_type n)
Move-construct n instances of T, starting at "dst" by copying according element of src array.
concurrent_vector(const allocator_type &a=allocator_type())
Construct empty vector.

◆ operator=() [3/4]

template<typename T, class A>
template<class M >
concurrent_vector& tbb::concurrent_vector< T, A >::operator= ( const concurrent_vector< T, M > &  vector)
inline

Assignment for vector with different allocator type.

Definition at line 755 of file concurrent_vector.h.

755  {
756  if( static_cast<void*>( this ) != static_cast<const void*>( &vector ) )
757  internal_assign(vector.internal_vector_base(),
758  sizeof(T), &destroy_array, &assign_array, &copy_array);
759  return *this;
760  }
static void __TBB_EXPORTED_FUNC copy_array(void *dst, const void *src, size_type n)
Copy-construct n instances of T by copying single element pointed to by src, starting at "dst".
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
void __TBB_EXPORTED_METHOD internal_assign(const concurrent_vector_base_v3 &src, size_type element_size, internal_array_op1 destroy, internal_array_op2 assign, internal_array_op2 copy)
static void __TBB_EXPORTED_FUNC assign_array(void *dst, const void *src, size_type n)
Assign (using operator=) n instances of T, starting at "dst" by assigning according element of src ar...

◆ operator=() [4/4]

template<typename T, class A>
concurrent_vector& tbb::concurrent_vector< T, A >::operator= ( std::initializer_list< T >  init_list)
inline

Assignment for initializer_list.

Definition at line 764 of file concurrent_vector.h.

764  {
766  internal_assign_iterators(init_list.begin(), init_list.end());
767  return *this;
768  }
segment_index_t __TBB_EXPORTED_METHOD internal_clear(internal_array_op1 destroy)
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
void internal_assign_iterators(I first, I last)
assign by iterators

◆ operator[]() [1/2]

template<typename T, class A>
reference tbb::concurrent_vector< T, A >::operator[] ( size_type  index)
inline

Get reference to element at given index.

This method is thread-safe for concurrent reads, and also while growing the vector, as long as the calling thread has checked that index < size().

Definition at line 860 of file concurrent_vector.h.

860  {
861  return internal_subscript(index);
862  }
T & internal_subscript(size_type index) const
Get reference to element at given index.

◆ operator[]() [2/2]

template<typename T, class A>
const_reference tbb::concurrent_vector< T, A >::operator[] ( size_type  index) const
inline

Get const reference to element at given index.

Definition at line 865 of file concurrent_vector.h.

865  {
866  return internal_subscript(index);
867  }
T & internal_subscript(size_type index) const
Get reference to element at given index.

◆ push_back() [1/2]

template<typename T, class A>
iterator tbb::concurrent_vector< T, A >::push_back ( const_reference  item)
inline

Push item.

Returns iterator pointing to the new element.

Definition at line 829 of file concurrent_vector.h.

830  {
831  push_back_helper prolog(*this);
832  new(prolog.internal_push_back_result()) T(item);
833  return prolog.return_iterator_and_dismiss();
834  }

◆ push_back() [2/2]

template<typename T, class A>
iterator tbb::concurrent_vector< T, A >::push_back ( T &&  item)
inline

Push item, move-aware.

Returns iterator pointing to the new element.

Definition at line 839 of file concurrent_vector.h.

840  {
841  push_back_helper prolog(*this);
842  new(prolog.internal_push_back_result()) T(std::move(item));
843  return prolog.return_iterator_and_dismiss();
844  }
void move(tbb_thread &t1, tbb_thread &t2)
Definition: tbb_thread.h:309

◆ range() [1/2]

template<typename T, class A>
range_type tbb::concurrent_vector< T, A >::range ( size_t  grainsize = 1)
inline

Get range for iterating with parallel algorithms.

Definition at line 880 of file concurrent_vector.h.

880  {
881  return range_type( begin(), end(), grainsize );
882  }
iterator begin()
start iterator
iterator end()
end iterator
generic_range_type< iterator > range_type

◆ range() [2/2]

template<typename T, class A>
const_range_type tbb::concurrent_vector< T, A >::range ( size_t  grainsize = 1) const
inline

Get const range for iterating with parallel algorithms.

Definition at line 885 of file concurrent_vector.h.

885  {
886  return const_range_type( begin(), end(), grainsize );
887  }
generic_range_type< const_iterator > const_range_type
iterator begin()
start iterator
iterator end()
end iterator

◆ rbegin() [1/2]

template<typename T, class A>
reverse_iterator tbb::concurrent_vector< T, A >::rbegin ( )
inline

reverse start iterator

Definition at line 945 of file concurrent_vector.h.

945 {return reverse_iterator(end());}
std::reverse_iterator< iterator > reverse_iterator
iterator end()
end iterator

◆ rbegin() [2/2]

template<typename T, class A>
const_reverse_iterator tbb::concurrent_vector< T, A >::rbegin ( ) const
inline

reverse start const iterator

Definition at line 949 of file concurrent_vector.h.

949 {return const_reverse_iterator(end());}
std::reverse_iterator< const_iterator > const_reverse_iterator
iterator end()
end iterator

◆ rend() [1/2]

template<typename T, class A>
reverse_iterator tbb::concurrent_vector< T, A >::rend ( )
inline

reverse end iterator

Definition at line 947 of file concurrent_vector.h.

947 {return reverse_iterator(begin());}
std::reverse_iterator< iterator > reverse_iterator
iterator begin()
start iterator

◆ rend() [2/2]

template<typename T, class A>
const_reverse_iterator tbb::concurrent_vector< T, A >::rend ( ) const
inline

reverse end const iterator

Definition at line 951 of file concurrent_vector.h.

951 {return const_reverse_iterator(begin());}
std::reverse_iterator< const_iterator > const_reverse_iterator
iterator begin()
start iterator

◆ reserve()

template<typename T, class A>
void tbb::concurrent_vector< T, A >::reserve ( size_type  n)
inline

Allocate enough space to grow to size n without having to allocate more memory later.

Like most of the methods provided for STL compatibility, this method is not thread safe. The capacity afterwards may be bigger than the requested reservation.

Definition at line 907 of file concurrent_vector.h.

907  {
908  if( n )
909  internal_reserve(n, sizeof(T), max_size());
910  }
void __TBB_EXPORTED_METHOD internal_reserve(size_type n, size_type element_size, size_type max_size)
size_type max_size() const
Upper bound on argument to reserve.

Referenced by tbb::interface6::enumerable_thread_specific< T, my_alloc, ets_no_key >::internal_copy(), and tbb::interface6::enumerable_thread_specific< T, my_alloc, ets_no_key >::internal_move().

Here is the caller graph for this function:

◆ resize() [1/2]

template<typename T, class A>
void tbb::concurrent_vector< T, A >::resize ( size_type  n)
inline

Resize the vector. Not thread-safe.

Definition at line 913 of file concurrent_vector.h.

913  {
914  internal_resize( n, sizeof(T), max_size(), NULL, &destroy_array, &initialize_array );
915  }
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
void __TBB_EXPORTED_METHOD internal_resize(size_type n, size_type element_size, size_type max_size, const void *src, internal_array_op1 destroy, internal_array_op2 init)
static void __TBB_EXPORTED_FUNC initialize_array(void *begin, const void *, size_type n)
Construct n instances of T, starting at "begin".
size_type max_size() const
Upper bound on argument to reserve.

◆ resize() [2/2]

template<typename T, class A>
void tbb::concurrent_vector< T, A >::resize ( size_type  n,
const_reference  t 
)
inline

Resize the vector, copy t for new elements. Not thread-safe.

Definition at line 918 of file concurrent_vector.h.

918  {
919  internal_resize( n, sizeof(T), max_size(), static_cast<const void*>(&t), &destroy_array, &initialize_array_by );
920  }
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
void __TBB_EXPORTED_METHOD internal_resize(size_type n, size_type element_size, size_type max_size, const void *src, internal_array_op1 destroy, internal_array_op2 init)
static void __TBB_EXPORTED_FUNC initialize_array_by(void *begin, const void *src, size_type n)
Copy-construct n instances of T, starting at "begin".
size_type max_size() const
Upper bound on argument to reserve.

◆ shrink_to_fit()

template<typename T , class A >
void tbb::concurrent_vector< T, A >::shrink_to_fit ( )

Optimize memory usage and fragmentation.

Definition at line 1186 of file concurrent_vector.h.

1186  {
1187  internal_segments_table old;
1188  __TBB_TRY {
1189  internal_array_op2 copy_or_move_array =
1190 #if __TBB_MOVE_IF_NOEXCEPT_PRESENT
1191  &move_array_if_noexcept
1192 #else
1193  &copy_array
1194 #endif
1195  ;
1196  if( internal_compact( sizeof(T), &old, &destroy_array, copy_or_move_array ) )
1197  internal_free_segments( old.table, pointers_per_long_table, old.first_block ); // free joined and unnecessary segments
1198  } __TBB_CATCH(...) {
1199  if( old.first_block ) // free segment allocated for compacting. Only for support of exceptions in ctor of user T[ype]
1200  internal_free_segments( old.table, 1, old.first_block );
1201  __TBB_RETHROW();
1202  }
1203 }
static void __TBB_EXPORTED_FUNC copy_array(void *dst, const void *src, size_type n)
Copy-construct n instances of T by copying single element pointed to by src, starting at "dst".
static void __TBB_EXPORTED_FUNC destroy_array(void *begin, size_type n)
Destroy n instances of T, starting at "begin".
#define __TBB_TRY
Definition: tbb_stddef.h:287
void(__TBB_EXPORTED_FUNC * internal_array_op2)(void *dst, const void *src, size_type n)
An operation on n-element destination array and n-element source array.
#define __TBB_CATCH(e)
Definition: tbb_stddef.h:288
void internal_free_segments(segment_t table[], segment_index_t k, segment_index_t first_block)
Free k segments from table.
#define __TBB_RETHROW()
Definition: tbb_stddef.h:290
void *__TBB_EXPORTED_METHOD internal_compact(size_type element_size, void *table, internal_array_op1 destroy, internal_array_op2 copy)

◆ size()

◆ swap()

template<typename T, class A>
void tbb::concurrent_vector< T, A >::swap ( concurrent_vector< T, A > &  vector)
inline

swap two instances

Definition at line 1001 of file concurrent_vector.h.

1001  {
1003  if( this != &vector && (this->my_allocator == vector.my_allocator || pocs_t::value) ) {
1004  concurrent_vector_base_v3::internal_swap(static_cast<concurrent_vector_base_v3&>(vector));
1005  tbb::internal::allocator_swap(this->my_allocator, vector.my_allocator, pocs_t());
1006  }
1007  }
void __TBB_EXPORTED_METHOD internal_swap(concurrent_vector_base_v3 &v)
void const char const char int ITT_FORMAT __itt_group_sync x void const char ITT_FORMAT __itt_group_sync s void ITT_FORMAT __itt_group_sync p void ITT_FORMAT p void ITT_FORMAT p no args __itt_suppress_mode_t unsigned int void size_t ITT_FORMAT d void ITT_FORMAT p void ITT_FORMAT p __itt_model_site __itt_model_site_instance ITT_FORMAT p __itt_model_task __itt_model_task_instance ITT_FORMAT p void ITT_FORMAT p void ITT_FORMAT p void size_t ITT_FORMAT d void ITT_FORMAT p const wchar_t ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s no args void ITT_FORMAT p size_t ITT_FORMAT d no args const wchar_t const wchar_t ITT_FORMAT s __itt_heap_function void size_t int ITT_FORMAT d __itt_heap_function void ITT_FORMAT p __itt_heap_function void void size_t int ITT_FORMAT d no args no args unsigned int ITT_FORMAT u const __itt_domain __itt_id ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain __itt_id ITT_FORMAT p const __itt_domain __itt_id __itt_timestamp __itt_timestamp ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain ITT_FORMAT p const __itt_domain __itt_string_handle unsigned long long value
void allocator_swap(MyAlloc &my_allocator, OtherAlloc &other_allocator, traits_true_type)

Friends And Related Function Documentation

◆ internal::vector_iterator

template<typename T, class A>
template<typename C , typename U >
friend class internal::vector_iterator
friend

Definition at line 561 of file concurrent_vector.h.


The documentation for this class was generated from the following file:

Copyright © 2005-2019 Intel Corporation. All Rights Reserved.

Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries.

* Other names and brands may be claimed as the property of others.