Commit 3cfb44c2 by Stefan Olsson Committed by Loren J. Rittle

mt_allocator.h: Reduce lock contention.

2004-01-23  Stefan Olsson  <stefan@snon.net>

	* include/ext/mt_allocator.h: Reduce lock contention.

From-SVN: r76474
parent b4eb7029
2004-01-23 Stefan Olsson <stefan@snon.net>
* include/ext/mt_allocator.h: Reduce lock contention.
2004-01-23 Paolo Carlini <pcarlini@suse.de> 2004-01-23 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/13831 PR libstdc++/13831
......
...@@ -269,7 +269,7 @@ namespace __gnu_cxx ...@@ -269,7 +269,7 @@ namespace __gnu_cxx
size_t thread_id = 0; size_t thread_id = 0;
#endif #endif
block_record* block; block_record* block = NULL;
/* /*
* Find out if we have blocks on our freelist. * Find out if we have blocks on our freelist.
...@@ -280,9 +280,11 @@ namespace __gnu_cxx ...@@ -280,9 +280,11 @@ namespace __gnu_cxx
{ {
/* /*
* Are we using threads? * Are we using threads?
* - Yes, lock and check if there are free blocks on the global * - Yes, check if there are free blocks on the global
* list (and if not add new ones), get the first one * list. If so, grab up to block_count blocks in one
* and change owner. * lock and change ownership. If the global list is
* empty, we allocate a new chunk and add those blocks
* directly to our own freelist (with us as owner).
* - No, all operations are made directly to global pool 0 * - No, all operations are made directly to global pool 0
* no need to lock or change ownership but check for free * no need to lock or change ownership but check for free
* blocks on global list (and if not add new ones) and * blocks on global list (and if not add new ones) and
...@@ -291,57 +293,83 @@ namespace __gnu_cxx ...@@ -291,57 +293,83 @@ namespace __gnu_cxx
#ifdef __GTHREADS #ifdef __GTHREADS
if (__gthread_active_p()) if (__gthread_active_p())
{ {
size_t bin_t = 1 << bin;
size_t block_count =
_S_chunk_size /(bin_t + sizeof(block_record));
__gthread_mutex_lock(_S_bin[bin].mutex); __gthread_mutex_lock(_S_bin[bin].mutex);
if (_S_bin[bin].first[0] == NULL) if (_S_bin[bin].first[0] == NULL)
{ {
_S_bin[bin].first[0] = /*
* No need to hold the lock when we are adding a
* whole chunk to our own list
*/
__gthread_mutex_unlock(_S_bin[bin].mutex);
_S_bin[bin].first[thread_id] =
(block_record*)malloc(_S_chunk_size); (block_record*)malloc(_S_chunk_size);
if (!_S_bin[bin].first[0]) if (!_S_bin[bin].first[thread_id])
{
__gthread_mutex_unlock(_S_bin[bin].mutex);
__throw_bad_alloc(); __throw_bad_alloc();
}
size_t bin_t = 1 << bin;
size_t block_count =
_S_chunk_size /(bin_t + sizeof(block_record));
_S_bin[bin].free[0] = block_count; _S_bin[bin].free[thread_id] = block_count;
block_count--; block_count--;
block = _S_bin[bin].first[0]; block = _S_bin[bin].first[thread_id];
while (block_count > 0) while (block_count > 0)
{ {
block->next = (block_record*)((char*)block + block->next = (block_record*)((char*)block +
(bin_t + sizeof(block_record))); (bin_t + sizeof(block_record)));
block->thread_id = thread_id;
block = block->next; block = block->next;
block_count--; block_count--;
} }
block->next = NULL; block->next = NULL;
_S_bin[bin].last[0] = block; block->thread_id = thread_id;
_S_bin[bin].last[thread_id] = block;
} }
else
{
size_t global_count = 0;
while( _S_bin[bin].first[0] != NULL &&
global_count < block_count )
{
block = _S_bin[bin].first[0]; block = _S_bin[bin].first[0];
/* if (_S_bin[bin].first[thread_id] == NULL)
* Remove from list and count down the available counter on _S_bin[bin].first[thread_id] = block;
* global pool 0. else
*/ _S_bin[bin].last[thread_id]->next = block;
_S_bin[bin].last[thread_id] = block;
block->thread_id = thread_id;
_S_bin[bin].free[thread_id]++;
_S_bin[bin].first[0] = _S_bin[bin].first[0]->next; _S_bin[bin].first[0] = _S_bin[bin].first[0]->next;
_S_bin[bin].free[0]--;
global_count++;
}
block->next = NULL;
__gthread_mutex_unlock(_S_bin[bin].mutex); __gthread_mutex_unlock(_S_bin[bin].mutex);
}
/* /*
* Now that we have removed the block from the global * Return the first newly added block in our list and
* freelist we can change owner and update the used * update the counters
* counter for this thread without locking.
*/ */
block->thread_id = thread_id; block = _S_bin[bin].first[thread_id];
_S_bin[bin].first[thread_id] =
_S_bin[bin].first[thread_id]->next;
_S_bin[bin].free[thread_id]--;
_S_bin[bin].used[thread_id]++; _S_bin[bin].used[thread_id]++;
} }
else else
...@@ -356,8 +384,6 @@ namespace __gnu_cxx ...@@ -356,8 +384,6 @@ namespace __gnu_cxx
size_t block_count = size_t block_count =
_S_chunk_size / (bin_t + sizeof(block_record)); _S_chunk_size / (bin_t + sizeof(block_record));
_S_bin[bin].free[0] = block_count;
block_count--; block_count--;
block = _S_bin[bin].first[0]; block = _S_bin[bin].first[0];
...@@ -375,12 +401,9 @@ namespace __gnu_cxx ...@@ -375,12 +401,9 @@ namespace __gnu_cxx
block = _S_bin[bin].first[0]; block = _S_bin[bin].first[0];
/* /*
* Remove from list and count down the available counter on * Remove from list
* global pool 0 and increase it's used counter.
*/ */
_S_bin[bin].first[0] = _S_bin[bin].first[0]->next; _S_bin[bin].first[0] = _S_bin[bin].first[0]->next;
_S_bin[bin].free[0]--;
_S_bin[bin].used[0]++;
} }
} }
else else
...@@ -392,9 +415,15 @@ namespace __gnu_cxx ...@@ -392,9 +415,15 @@ namespace __gnu_cxx
block = _S_bin[bin].first[thread_id]; block = _S_bin[bin].first[thread_id];
_S_bin[bin].first[thread_id] = _S_bin[bin].first[thread_id]->next; _S_bin[bin].first[thread_id] = _S_bin[bin].first[thread_id]->next;
#ifdef __GTHREADS
if (__gthread_active_p())
{
_S_bin[bin].free[thread_id]--; _S_bin[bin].free[thread_id]--;
_S_bin[bin].used[thread_id]++; _S_bin[bin].used[thread_id]++;
} }
#endif
}
return static_cast<_Tp*>(static_cast<void*>((char*)block + sizeof(block_record))); return static_cast<_Tp*>(static_cast<void*>((char*)block + sizeof(block_record)));
} }
...@@ -465,7 +494,6 @@ namespace __gnu_cxx ...@@ -465,7 +494,6 @@ namespace __gnu_cxx
_S_bin[bin].first[thread_id] = _S_bin[bin].first[thread_id] =
_S_bin[bin].first[thread_id]->next; _S_bin[bin].first[thread_id]->next;
_S_bin[bin].free[0]++;
_S_bin[bin].free[thread_id]--; _S_bin[bin].free[thread_id]--;
remove--; remove--;
...@@ -509,9 +537,6 @@ namespace __gnu_cxx ...@@ -509,9 +537,6 @@ namespace __gnu_cxx
_S_bin[bin].last[0]->next = block; _S_bin[bin].last[0]->next = block;
_S_bin[bin].last[0] = block; _S_bin[bin].last[0] = block;
_S_bin[bin].free[0]++;
_S_bin[bin].used[0]--;
} }
} }
}; };
...@@ -605,10 +630,15 @@ namespace __gnu_cxx ...@@ -605,10 +630,15 @@ namespace __gnu_cxx
if (!_S_bin) if (!_S_bin)
__throw_bad_alloc(); __throw_bad_alloc();
std::size_t __n = 1;
#ifdef __GTHREADS
if (__gthread_active_p())
__n = _S_max_threads + 1;
#endif
for (size_t bin = 0; bin < _S_no_of_bins; bin++) for (size_t bin = 0; bin < _S_no_of_bins; bin++)
{ {
std::size_t __n = _S_max_threads + 1;
_S_bin[bin].first = (block_record**) _S_bin[bin].first = (block_record**)
malloc(sizeof(block_record*) * __n); malloc(sizeof(block_record*) * __n);
...@@ -621,6 +651,9 @@ namespace __gnu_cxx ...@@ -621,6 +651,9 @@ namespace __gnu_cxx
if (!_S_bin[bin].last) if (!_S_bin[bin].last)
__throw_bad_alloc(); __throw_bad_alloc();
#ifdef __GTHREADS
if (__gthread_active_p())
{
_S_bin[bin].free = (size_t*) malloc(sizeof(size_t) * __n); _S_bin[bin].free = (size_t*) malloc(sizeof(size_t) * __n);
if (!_S_bin[bin].free) if (!_S_bin[bin].free)
...@@ -631,7 +664,6 @@ namespace __gnu_cxx ...@@ -631,7 +664,6 @@ namespace __gnu_cxx
if (!_S_bin[bin].used) if (!_S_bin[bin].used)
__throw_bad_alloc(); __throw_bad_alloc();
#ifdef __GTHREADS
_S_bin[bin].mutex =(__gthread_mutex_t*) malloc(sizeof(__gthread_mutex_t)); _S_bin[bin].mutex =(__gthread_mutex_t*) malloc(sizeof(__gthread_mutex_t));
#ifdef __GTHREAD_MUTEX_INIT #ifdef __GTHREAD_MUTEX_INIT
...@@ -643,15 +675,21 @@ namespace __gnu_cxx ...@@ -643,15 +675,21 @@ namespace __gnu_cxx
#else #else
{ __GTHREAD_MUTEX_INIT_FUNCTION (_S_bin[bin].mutex); } { __GTHREAD_MUTEX_INIT_FUNCTION (_S_bin[bin].mutex); }
#endif #endif
}
#endif #endif
for (size_t thread = 0; thread <= _S_max_threads; thread++) for (size_t thread = 0; thread < __n; thread++)
{ {
_S_bin[bin].first[thread] = NULL; _S_bin[bin].first[thread] = NULL;
_S_bin[bin].last[thread] = NULL; _S_bin[bin].last[thread] = NULL;
#ifdef __GTHREADS
if (__gthread_active_p())
{
_S_bin[bin].free[thread] = 0; _S_bin[bin].free[thread] = 0;
_S_bin[bin].used[thread] = 0; _S_bin[bin].used[thread] = 0;
} }
#endif
}
} }
_S_initialized = true; _S_initialized = true;
...@@ -783,6 +821,18 @@ namespace __gnu_cxx ...@@ -783,6 +821,18 @@ namespace __gnu_cxx
template<typename _Tp> typename __mt_alloc<_Tp>::bin_record* template<typename _Tp> typename __mt_alloc<_Tp>::bin_record*
volatile __mt_alloc<_Tp>::_S_bin = NULL; volatile __mt_alloc<_Tp>::_S_bin = NULL;
template<typename _Tp>
inline bool
operator==(const __mt_alloc<_Tp>&,
const __mt_alloc<_Tp>&)
{ return true; }
template<typename _Tp>
inline bool
operator!=(const __mt_alloc<_Tp>&,
const __mt_alloc<_Tp>&)
{ return false; }
} // namespace __gnu_cxx } // namespace __gnu_cxx
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment