mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-10407 more efficient UnicodeString::refCount()
X-SVN-Rev: 34367
This commit is contained in:
parent
25bab8fa6f
commit
36663e1226
1 changed files with 9 additions and 13 deletions
|
@ -117,23 +117,19 @@ operator+ (const UnicodeString &s1, const UnicodeString &s2) {
|
|||
//========================================
|
||||
|
||||
void
|
||||
UnicodeString::addRef()
|
||||
{ umtx_atomic_inc((u_atomic_int32_t *)fUnion.fFields.fArray - 1);}
|
||||
UnicodeString::addRef() {
|
||||
umtx_atomic_inc((u_atomic_int32_t *)fUnion.fFields.fArray - 1);
|
||||
}
|
||||
|
||||
int32_t
|
||||
UnicodeString::removeRef()
|
||||
{ return umtx_atomic_dec((u_atomic_int32_t *)fUnion.fFields.fArray - 1);}
|
||||
UnicodeString::removeRef() {
|
||||
return umtx_atomic_dec((u_atomic_int32_t *)fUnion.fFields.fArray - 1);
|
||||
}
|
||||
|
||||
int32_t
|
||||
UnicodeString::refCount() const
|
||||
{
|
||||
umtx_lock(NULL);
|
||||
// Note: without the lock to force a memory barrier, we might see a very
|
||||
// stale value on some multi-processor systems.
|
||||
int32_t count = *((int32_t *)fUnion.fFields.fArray - 1);
|
||||
umtx_unlock(NULL);
|
||||
return count;
|
||||
}
|
||||
UnicodeString::refCount() const {
|
||||
return umtx_loadAcquire(*((u_atomic_int32_t *)fUnion.fFields.fArray - 1));
|
||||
}
|
||||
|
||||
void
|
||||
UnicodeString::releaseArray() {
|
||||
|
|
Loading…
Add table
Reference in a new issue