1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/**********************************************************************
* $Id: cpl_atomic_ops.cpp 19884 2010-06-17 22:01:19Z rouault $
*
* Name: cpl_atomic_ops.cpp
* Project: CPL - Common Portability Library
* Purpose: Atomic operation functions.
* Author: Even Rouault, <even dot rouault at mines dash paris dot org>
*
**********************************************************************
* Copyright (c) 2009, Even Rouault, <even dot rouault at mines dash paris dot org>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "cpl_atomic_ops.h"
#if defined(__MACH__) && defined(__APPLE__)
#include <libkern/OSAtomic.h>
int CPLAtomicAdd(volatile int* ptr, int increment)
{
return OSAtomicAdd32(increment, (int*)(ptr));
}
#elif defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))
#include <windows.h>
int CPLAtomicAdd(volatile int* ptr, int increment)
{
#if defined(_MSC_VER) && (_MSC_VER <= 1200)
return InterlockedExchangeAdd((LONG*)(ptr), (LONG)(increment)) + increment;
#else
return InterlockedExchangeAdd((volatile LONG*)(ptr), (LONG)(increment)) + increment;
#endif
}
#elif defined(__MINGW32__) && defined(__i386__)
#include <windows.h>
int CPLAtomicAdd(volatile int* ptr, int increment)
{
return InterlockedExchangeAdd((LONG*)(ptr), (LONG)(increment)) + increment;
}
#elif defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
int CPLAtomicAdd(volatile int* ptr, int increment)
{
int temp = increment;
__asm__ __volatile__("lock; xaddl %0,%1"
: "+r" (temp), "+m" (*ptr)
: : "memory");
return temp + increment;
}
#elif defined(HAVE_GCC_ATOMIC_BUILTINS)
/* Starting with GCC 4.1.0, built-in functions for atomic memory access are provided. */
/* see http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Atomic-Builtins.html */
/* We use a ./configure test to determine whether this builtins are available */
/* as it appears that the GCC 4.1 version used on debian etch is broken when linking */
/* such instructions... */
int CPLAtomicAdd(volatile int* ptr, int increment)
{
if (increment > 0)
return __sync_add_and_fetch(ptr, increment);
else
return __sync_sub_and_fetch(ptr, -increment);
}
#elif !defined(CPL_MULTIPROC_PTHREAD)
#warning "Needs real lock API to implement properly atomic increment"
/* Dummy implementation */
int CPLAtomicAdd(volatile int* ptr, int increment)
{
(*ptr) += increment;
return *ptr;
}
#else
#include "cpl_multiproc.h"
static void *hAtomicOpMutex = NULL;
/* Slow, but safe, implemenation using a mutex */
int CPLAtomicAdd(volatile int* ptr, int increment)
{
CPLMutexHolder oMutex(&hAtomicOpMutex);
(*ptr) += increment;
return *ptr;
}
#endif
#ifndef HAS_CPL_INLINE
int CPLAtomicInc(volatile int* ptr)
{
return CPLAtomicAdd(ptr, 1);
}
int CPLAtomicDec(volatile int* ptr)
{
return CPLAtomicAdd(ptr, -1);
}
#endif
|