dpdk-fm10k/lib/librte_eal/x86/include/rte_rtm.h
Thomas Monjalon a1b6cda16a eal: move arch-specific header files
The arch-specific directories arm, ppc and x86 in common/include/arch/
are moved as include/ sub-directories of respective arch directories:
	- arm/include/
	- ppc/include/
	- x86/include/

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Reviewed-by: Gavin Hu <gavin.hu@arm.com>
Reviewed-by: David Christensen <drc@linux.vnet.ibm.com>
Acked-by: David Marchand <david.marchand@redhat.com>
2020-03-31 13:08:55 +02:00

63 lines
1.3 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2012,2013 Intel Corporation
*/
#ifndef _RTE_RTM_H_
#define _RTE_RTM_H_ 1
/* Official RTM intrinsics interface matching gcc/icc, but works
on older gcc compatible compilers and binutils. */
#include <rte_common.h>
#ifdef __cplusplus
extern "C" {
#endif
#define RTE_XBEGIN_STARTED (~0u)
#define RTE_XABORT_EXPLICIT (1 << 0)
#define RTE_XABORT_RETRY (1 << 1)
#define RTE_XABORT_CONFLICT (1 << 2)
#define RTE_XABORT_CAPACITY (1 << 3)
#define RTE_XABORT_DEBUG (1 << 4)
#define RTE_XABORT_NESTED (1 << 5)
#define RTE_XABORT_CODE(x) (((x) >> 24) & 0xff)
static __attribute__((__always_inline__)) inline
unsigned int rte_xbegin(void)
{
unsigned int ret = RTE_XBEGIN_STARTED;
asm volatile(".byte 0xc7,0xf8 ; .long 0" : "+a" (ret) :: "memory");
return ret;
}
static __attribute__((__always_inline__)) inline
void rte_xend(void)
{
asm volatile(".byte 0x0f,0x01,0xd5" ::: "memory");
}
/* not an inline function to workaround a clang bug with -O0 */
#define rte_xabort(status) do { \
asm volatile(".byte 0xc6,0xf8,%P0" :: "i" (status) : "memory"); \
} while (0)
static __attribute__((__always_inline__)) inline
int rte_xtest(void)
{
unsigned char out;
asm volatile(".byte 0x0f,0x01,0xd6 ; setnz %0" :
"=r" (out) :: "memory");
return out;
}
#ifdef __cplusplus
}
#endif
#endif /* _RTE_RTM_H_ */