ARM: implement __sync_fetch_and_* operations
[blocksruntime.git] / lib / builtins / arm / sync_fetch_and_xor_8.S
blob91b6a4c088790674126b07539806c5ea6a491bc7
1 /*===-- sync_fetch_and_xor_8.S - ------------------------------------------===//
2  *
3  *                     The LLVM Compiler Infrastructure
4  *
5  * This file is dual licensed under the MIT and the University of Illinois Open
6  * Source Licenses. See LICENSE.TXT for details.
7  *
8  *===----------------------------------------------------------------------===//
9  *
10  * This file implements the __sync_fetch_and_xor_8 function for the ARM
11  * architecture.
12  *
13  *===----------------------------------------------------------------------===*/
15 #include "sync-ops.h"
17 #define xor_8(rD_LO, rD_HI, rN_LO, rN_HI, rM_LO, rM_HI) \
18     eor rD_LO, rN_LO, rM_LO ; \
19     eor rD_HI, rN_HI, rM_HI
21 SYNC_OP_8(xor_8)