atomic.h 8.49 KB
Newer Older
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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
/*
 * Copyright (c) 2014, Siemens AG. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef EMBB_BASE_C_ATOMIC_H_
#define EMBB_BASE_C_ATOMIC_H_

/**
 * \defgroup C_BASE_ATOMIC Atomic
 * 
 * \ingroup C_BASE
 *
 * Atomic operations.
 *
 * \anchor general_desc_atomic_base
 * Atomic operations are not directly applied to fundamental types. Instead,
 * there is for each character and integer type an associated atomic type that
 * has the same bit width (if the target CPU supports atomic operations on
 * that type):
 *
 * Fundamental type   | Atomic type
 * :------------------| :----------------------------------
 * char               | embb_atomic_char
 * short              | embb_atomic_short
 * unsigned short     | embb_atomic_unsigned_short
 * int                | embb_atomic_int
 * unsigned int       | embb_atomic_unsigned_int
 * long               | embb_atomic_long
 * unsigned long      | embb_atomic_unsigned_long
 * long long          | embb_atomic_long_long
 * unsigned long long | embb_atomic_unsigned_long_long
 * intptr_t           | embb_atomic_intptr_t
 * uintptr_t          | embb_atomic_uintptr_t
 * size_t             | embb_atomic_size_t
 * ptrdiff_t          | embb_atomic_ptrdiff_t
 * uintmax_t          | embb_atomic_uintmax_t
 *
 * Each of the atomic operations described in the following can be applied to
 * the types listed above. However, to avoid unnecessary redundancy, we document
 * them only once in a generic way. The keyword TYPE serves as a placeholder
 * which has to be replaced by the concrete type (e.g., int). If the fundamental
 * type contains spaces (e.g., unsigned int), "_" is used for concatenation
 * (e.g. unsigned_int).
 *
 * Usage example:
 * --------------
 *
 * Store the value \c 5 in an atomic \c "unsigned int" variable.
 *
 * Step 1 (declare atomic variable):
 * \code
 * embb_atomic_unsigned_int my_var;
 * \endcode

 * Step 2 (store the value):
 * \code
 * embb_atomic_store_unsigned_int( &my_var, 5 );
 * \endcode
 *
 * The current implementation guarantees sequential consistency (full fences)
 * for all atomic operations. Relaxed memory models may be added in the future.
 */

#ifdef DOXYGEN
/**
 * Computes the logical "and" of the value stored in \p variable and \c value.
 *
 * The result is stored in \p variable.
 *
 * \see \ref general_desc_atomic_base "Detailed description" for general
 * information and the meaning of \b TYPE.
 *
 * \ingroup C_BASE_ATOMIC
 * \waitfree
 */
EMBB_INLINE void embb_atomic_and_assign_TYPE(
  embb_atomic_TYPE* variable,
  /**< [IN,OUT] Pointer to atomic variable which serves as left-hand side for
                the "and" operation and is used to store the result. */
  TYPE value
  /** [IN] Right-hand side of "and" operation, passed by value */
  );

/**
 * Compares \p variable with \p expected and, if equivalent, swaps its value
 * with \p desired.
 *
 * Stores \p desired in \p variable if the value of \p variable is equivalent
 * to the value of \p expected. Otherwise, stores the value of \p variable in
 * \p expected.
 *
 * \return != 0 if the values of \p variable and \p expected were equivalent \n
 *          0 otherwise
 *
 * \see \ref general_desc_atomic_base "Detailed description" for general
 * information and the meaning of \b TYPE.
 *
 * \ingroup C_BASE_ATOMIC
 * \waitfree
 */
EMBB_INLINE int embb_atomic_compare_and_swap_TYPE(
  embb_atomic_TYPE* variable,
  /**< [IN,OUT] Pointer to atomic variable */
  TYPE* expected,
  /**< [IN,OUT] Pointer to expected value */
  TYPE desired
  /**< [IN] Value to be stored in \p variable */
  );

/**
 * Adds \p value to \p variable and returns its old value.
 *
 * \return The value before the operation
 *
 * \see \ref general_desc_atomic_base "Detailed description" for general
 * information and the meaning of \b TYPE.
 *
 * \ingroup C_BASE_ATOMIC
 * \waitfree
 */
EMBB_INLINE TYPE embb_atomic_fetch_and_add_TYPE(
  embb_atomic_TYPE* variable,
  /**< [IN,OUT] Pointer to atomic variable*/
  TYPE value
  /**< [IN] The value to be added to \p variable (can be negative) */
  );

/**
 * Loads the value of \p variable and returns it.
 *
 * \return The value of the atomic variable.
 *
 * \see \ref general_desc_atomic_base "Detailed description" for general
 * information and the meaning of \b TYPE.
 *
 * \ingroup C_BASE_ATOMIC
 * \waitfree
 */
EMBB_INLINE TYPE embb_atomic_load_TYPE(
  const embb_atomic_TYPE* variable
  /**< [IN] Pointer to atomic variable */
  );

/**
 * Enforces a memory barrier (full fence).
 *
 * \ingroup C_BASE_ATOMIC
 * \waitfree
 */
EMBB_INLINE void embb_atomic_memory_barrier();

/**
 * Computes the logical "or" of the value stored in \p variable and \c value.
 *
 * The result is stored in \p variable.
 *
 * \see \ref general_desc_atomic_base "Detailed description" for general
 * information and the meaning of \b TYPE.
 *
 * \ingroup C_BASE_ATOMIC
 * \waitfree
 */
EMBB_INLINE void embb_atomic_or_assign_TYPE(
  embb_atomic_TYPE* variable,
  /**< [IN,OUT] Pointer to atomic variable which serves as left-hand side for
                the "or" operation and is used to store the result. */
  TYPE value
  /** [IN] Right-hand side of "or" operation, passed by value */
  );

/**
 * Stores \p value in \p variable.
 *
 * \see \ref general_desc_atomic_base "Detailed description" for general
 * information and the meaning of \b TYPE.
 *
 * \ingroup C_BASE_ATOMIC
 * \waitfree
 */
EMBB_INLINE void embb_atomic_store_TYPE(
  embb_atomic_TYPE* variable,
  /**< [IN,OUT] Pointer to atomic variable */
  int value
  /**< [IN] Value to be stored */
  );

/**
 * Swaps the current value of \p variable with \p value.
 *
 * \return The old value of \p variable
 *
 * \see \ref general_desc_atomic_base "Detailed description" for general
 * information and the meaning of \b TYPE.
 *
 * \ingroup C_BASE_ATOMIC
 * \waitfree
 */
EMBB_INLINE TYPE embb_atomic_swap_TYPE(
  embb_atomic_TYPE* variable,
  /**< [IN,OUT] Pointer to atomic variable whose value is swapped */
  TYPE value
  /** [IN] Value which will be stored in the atomic variable */
  );

/**
* Computes the logical "xor" of the value stored in \p variable and \c value.
*
* The result is stored in \p variable.
*
* \see \ref general_desc_atomic_base "Detailed description" for general
* information and the meaning of \b TYPE.
*
* \ingroup C_BASE_ATOMIC
* \waitfree
*/
EMBB_INLINE void embb_atomic_xor_assign_TYPE(
  embb_atomic_TYPE* variable,
  /**< [IN,OUT] Pointer to atomic variable which serves as left-hand side for
                the "xor" operation and is used to store the result. */
  TYPE value
  /** [IN] Right-hand side of "xor" operation, passed by value */
  );
#endif

#ifdef __cplusplus
extern "C" {
#endif

#include <embb/base/c/internal/platform.h>
#include <embb/base/c/internal/atomic/atomic_sizes.h>
#include <embb/base/c/internal/atomic/atomic_variables.h>
#include <embb/base/c/internal/macro_helper.h>
#include <embb/base/c/internal/atomic/load.h>
#include <embb/base/c/internal/atomic/and_assign.h>
#include <embb/base/c/internal/atomic/store.h>
#include <embb/base/c/internal/atomic/or_assign.h>
#include <embb/base/c/internal/atomic/xor_assign.h>
#include <embb/base/c/internal/atomic/swap.h>
#include <embb/base/c/internal/atomic/fetch_and_add.h>
#include <embb/base/c/internal/atomic/compare_and_swap.h>
#include <embb/base/c/internal/atomic/memory_barrier.h>

#ifdef __cplusplus
}
#endif

#endif //EMBB_BASE_C_ATOMIC_H_