1 /*===---- xtestintrin.h - XTEST intrinsic ----------------------------------===
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
7 *===-----------------------------------------------------------------------===
11 #error "Never use <xtestintrin.h> directly; include <immintrin.h> instead."
14 #ifndef __XTESTINTRIN_H
15 #define __XTESTINTRIN_H
17 /* xtest returns non-zero if the instruction is executed within an RTM or active
19 /* FIXME: This can be an either or for RTM/HLE. Deal with this when HLE is
22 __attribute__((__always_inline__
, __nodebug__
, __target__("rtm")))
24 return __builtin_ia32_xtest();