Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / lib / builtins / arm / sync_synchronize.S
blobdd06e7191f9b8e5ff780343b60c451a35ebf2dda
1 //===-- sync_synchronize - Implement memory barrier * ----------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "../assembly.h"
11 // When compiling a use of the gcc built-in __sync_synchronize() in thumb1 mode
12 // the compiler may emit a call to __sync_synchronize.
13 // On Darwin the implementation jumps to an OS supplied function named
14 // OSMemoryBarrier
16         .text
17         .syntax unified
19 #if __APPLE__
21         .p2align 2
22 DEFINE_COMPILERRT_PRIVATE_FUNCTION(__sync_synchronize)
23         stmfd   sp!, {r7, lr}
24         add             r7, sp, #0
25         bl              _OSMemoryBarrier
26         ldmfd   sp!, {r7, pc}
27 END_COMPILERRT_FUNCTION(__sync_synchronize)
29         // tell linker it can break up file at label boundaries
30         .subsections_via_symbols
32 #endif
34 NO_EXEC_STACK_DIRECTIVE