The ldrexd and strexd instructions are undefined for the ARMv7M architecture, so we cannot use them to implement the __sync_fetch_and_*_8 builtins. There is no other way to implement these without OS support, so this patch #ifdef's these functions out for M-class architectures. There are no tests as I cannot find any existing tests for these builtins. I used the __ARM_ARCH_PROFILE predefine because __ARM_FEATURE_LDREX is deprecated and not set by clang. llvm-svn: 218601
24 lines
729 B
ArmAsm
24 lines
729 B
ArmAsm
/*===-- sync_fetch_and_and_8.S - ------------------------------------------===//
|
|
*
|
|
* The LLVM Compiler Infrastructure
|
|
*
|
|
* This file is dual licensed under the MIT and the University of Illinois Open
|
|
* Source Licenses. See LICENSE.TXT for details.
|
|
*
|
|
*===----------------------------------------------------------------------===//
|
|
*
|
|
* This file implements the __sync_fetch_and_and_8 function for the ARM
|
|
* architecture.
|
|
*
|
|
*===----------------------------------------------------------------------===*/
|
|
|
|
#include "sync-ops.h"
|
|
|
|
#if __ARM_ARCH_PROFILE != 'M'
|
|
#define and_8(rD_LO, rD_HI, rN_LO, rN_HI, rM_LO, rM_HI) \
|
|
and rD_LO, rN_LO, rM_LO ; \
|
|
and rD_HI, rN_HI, rM_HI
|
|
|
|
SYNC_OP_8(and_8)
|
|
#endif
|