mirror of
https://github.com/apache/nuttx.git
synced 2026-08-25 15:37:23 +00:00
The reason for using builtin atomic is that in C++, when include <atomic> in <nuttx/atomic.h> easily conflicts with third-party function libraries. We wanted to completely separate the implementation of <nuttx/atomic.h>. There are two points: 1. use builtin function directly. 2. Without the standard library implementation, need implement "atomic_fetch_xxx", leading conflicts with the standard library used by third-party programs, introducing redefinition issues and requiring name changes. Signed-off-by: zhangyu117 <zhangyu117@xiaomi.com>
405 lines
15 KiB
C
405 lines
15 KiB
C
/****************************************************************************
|
|
* libs/libc/machine/arch_atomic_irq.c
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <nuttx/irq.h>
|
|
#include <nuttx/macro.h>
|
|
|
|
#include "arch_atomic.h"
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
static inline irqstate_t atomic_lock(void)
|
|
{
|
|
return up_irq_save();
|
|
}
|
|
|
|
static inline void atomic_unlock(irqstate_t flags)
|
|
{
|
|
up_irq_restore(flags);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_store_1
|
|
****************************************************************************/
|
|
|
|
STORE(__atomic_store_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_store_2
|
|
****************************************************************************/
|
|
|
|
STORE(__atomic_store_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_store_4
|
|
****************************************************************************/
|
|
|
|
STORE(__atomic_store_, 4, uint32_t)
|
|
STORE(atomic_store_, 4, int32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_load_1
|
|
****************************************************************************/
|
|
|
|
LOAD(__atomic_load_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_load_2
|
|
****************************************************************************/
|
|
|
|
LOAD(__atomic_load_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_load_4
|
|
****************************************************************************/
|
|
|
|
LOAD(__atomic_load_, 4, uint32_t)
|
|
LOAD(atomic_load_, 4, int32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_exchange_1
|
|
****************************************************************************/
|
|
|
|
EXCHANGE(__atomic_exchange_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_exchange_2
|
|
****************************************************************************/
|
|
|
|
EXCHANGE(__atomic_exchange_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_exchange_4
|
|
****************************************************************************/
|
|
|
|
EXCHANGE(__atomic_exchange_, 4, uint32_t)
|
|
EXCHANGE(atomic_exchange_, 4, int32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_compare_exchange_1
|
|
****************************************************************************/
|
|
|
|
CMP_EXCHANGE(__atomic_compare_exchange_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_compare_exchange_2
|
|
****************************************************************************/
|
|
|
|
CMP_EXCHANGE(__atomic_compare_exchange_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_compare_exchange_4
|
|
****************************************************************************/
|
|
|
|
CMP_EXCHANGE(__atomic_compare_exchange_, 4, uint32_t)
|
|
CMP_EXCHANGE(atomic_compare_exchange_, 4, int32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_flag_test_and_set_1
|
|
****************************************************************************/
|
|
|
|
FLAG_TEST_AND_SET(__atomic_flags_test_and_set_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_flag_test_and_set_2
|
|
****************************************************************************/
|
|
|
|
FLAG_TEST_AND_SET(__atomic_flags_test_and_set_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_flag_test_and_set_4
|
|
****************************************************************************/
|
|
|
|
FLAG_TEST_AND_SET(__atomic_flags_test_and_set_, 4, uint32_t)
|
|
FLAG_TEST_AND_SET(atomic_flags_test_and_set_, 4, int32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_add_1
|
|
****************************************************************************/
|
|
|
|
FETCH_ADD(__atomic_fetch_add_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_add_2
|
|
****************************************************************************/
|
|
|
|
FETCH_ADD(__atomic_fetch_add_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_add_4
|
|
****************************************************************************/
|
|
|
|
FETCH_ADD(__atomic_fetch_add_, 4, uint32_t)
|
|
FETCH_ADD(atomic_fetch_add_, 4, int32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_sub_1
|
|
****************************************************************************/
|
|
|
|
FETCH_SUB(__atomic_fetch_sub_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_sub_2
|
|
****************************************************************************/
|
|
|
|
FETCH_SUB(__atomic_fetch_sub_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_sub_4
|
|
****************************************************************************/
|
|
|
|
FETCH_SUB(__atomic_fetch_sub_, 4, uint32_t)
|
|
FETCH_SUB(atomic_fetch_sub_, 4, int32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_and_1
|
|
****************************************************************************/
|
|
|
|
FETCH_AND(__atomic_fetch_and_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_and_2
|
|
****************************************************************************/
|
|
|
|
FETCH_AND(__atomic_fetch_and_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_and_4
|
|
****************************************************************************/
|
|
|
|
FETCH_AND(__atomic_fetch_and_, 4, uint32_t)
|
|
FETCH_AND(atomic_fetch_and_, 4, int32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_or_1
|
|
****************************************************************************/
|
|
|
|
FETCH_OR(__atomic_fetch_or_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_or_2
|
|
****************************************************************************/
|
|
|
|
FETCH_OR(__atomic_fetch_or_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_or_4
|
|
****************************************************************************/
|
|
|
|
FETCH_OR(__atomic_fetch_or_, 4, uint32_t)
|
|
FETCH_OR(atomic_fetch_or_, 4, int32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_xor_1
|
|
****************************************************************************/
|
|
|
|
FETCH_XOR(__atomic_fetch_xor_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_xor_2
|
|
****************************************************************************/
|
|
|
|
FETCH_XOR(__atomic_fetch_xor_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __atomic_fetch_xor_4
|
|
****************************************************************************/
|
|
|
|
FETCH_XOR(__atomic_fetch_xor_, 4, uint32_t)
|
|
FETCH_XOR(atomic_fetch_xor_, 4, int32_t)
|
|
|
|
/* Clang define the __sync builtins, add #ifndef to avoid
|
|
* redefined/redeclared problem.
|
|
*/
|
|
|
|
#ifndef __clang__
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_add_and_fetch_1
|
|
****************************************************************************/
|
|
|
|
SYNC_ADD_FETCH(__sync_add_and_fetch_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_add_and_fetch_2
|
|
****************************************************************************/
|
|
|
|
SYNC_ADD_FETCH(__sync_add_and_fetch_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_add_and_fetch_4
|
|
****************************************************************************/
|
|
|
|
SYNC_ADD_FETCH(__sync_add_and_fetch_, 4, uint32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_sub_and_fetch_1
|
|
****************************************************************************/
|
|
|
|
SYNC_SUB_FETCH(__sync_sub_and_fetch_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_sub_and_fetch_2
|
|
****************************************************************************/
|
|
|
|
SYNC_SUB_FETCH(__sync_sub_and_fetch_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_sub_and_fetch_4
|
|
****************************************************************************/
|
|
|
|
SYNC_SUB_FETCH(__sync_sub_and_fetch_, 4, uint32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_or_and_fetch_1
|
|
****************************************************************************/
|
|
|
|
SYNC_OR_FETCH(__sync_or_and_fetch_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_or_and_fetch_2
|
|
****************************************************************************/
|
|
|
|
SYNC_OR_FETCH(__sync_or_and_fetch_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_or_and_fetch_4
|
|
****************************************************************************/
|
|
|
|
SYNC_OR_FETCH(__sync_or_and_fetch_, 4, uint32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_and_and_fetch_1
|
|
****************************************************************************/
|
|
|
|
SYNC_AND_FETCH(__sync_and_and_fetch_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_and_and_fetch_2
|
|
****************************************************************************/
|
|
|
|
SYNC_AND_FETCH(__sync_and_and_fetch_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_and_and_fetch_4
|
|
****************************************************************************/
|
|
|
|
SYNC_AND_FETCH(__sync_and_and_fetch_, 4, uint32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_xor_and_fetch_1
|
|
****************************************************************************/
|
|
|
|
SYNC_XOR_FETCH(__sync_xor_and_fetch_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_xor_and_fetch_2
|
|
****************************************************************************/
|
|
|
|
SYNC_XOR_FETCH(__sync_xor_and_fetch_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_xor_and_fetch_4
|
|
****************************************************************************/
|
|
|
|
SYNC_XOR_FETCH(__sync_xor_and_fetch_, 4, uint32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_nand_and_fetch_1
|
|
****************************************************************************/
|
|
|
|
SYNC_NAND_FETCH(__sync_nand_and_fetch_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_nand_and_fetch_2
|
|
****************************************************************************/
|
|
|
|
SYNC_NAND_FETCH(__sync_nand_and_fetch_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_nand_and_fetch_4
|
|
****************************************************************************/
|
|
|
|
SYNC_NAND_FETCH(__sync_nand_and_fetch_, 4, uint32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_bool_compare_and_swap_1
|
|
****************************************************************************/
|
|
|
|
SYNC_BOOL_CMP_SWAP(__sync_bool_compare_and_swap_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_bool_compare_and_swap_2
|
|
****************************************************************************/
|
|
|
|
SYNC_BOOL_CMP_SWAP(__sync_bool_compare_and_swap_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_bool_compare_and_swap_4
|
|
****************************************************************************/
|
|
|
|
SYNC_BOOL_CMP_SWAP(__sync_bool_compare_and_swap_, 4, uint32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_val_compare_and_swap_1
|
|
****************************************************************************/
|
|
|
|
SYNC_VAL_CMP_SWAP(__sync_val_compare_and_swap_, 1, uint8_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_val_compare_and_swap_2
|
|
****************************************************************************/
|
|
|
|
SYNC_VAL_CMP_SWAP(__sync_val_compare_and_swap_, 2, uint16_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_val_compare_and_swap_4
|
|
****************************************************************************/
|
|
|
|
SYNC_VAL_CMP_SWAP(__sync_val_compare_and_swap_, 4, uint32_t)
|
|
|
|
/****************************************************************************
|
|
* Name: __sync_synchronize
|
|
****************************************************************************/
|
|
|
|
void weak_function __sync_synchronize(void)
|
|
{
|
|
#ifdef UP_DMB
|
|
UP_DMB();
|
|
#endif
|
|
}
|
|
|
|
#endif /* __clang__ */
|