invpcidintrin.h revision 353358
10Sduke/*===------------- invpcidintrin.h - INVPCID intrinsic ---------------------===
22933Sakulyakh *
30Sduke * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40Sduke * See https://llvm.org/LICENSE.txt for license information.
50Sduke * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60Sduke *
70Sduke *===-----------------------------------------------------------------------===
80Sduke */
90Sduke
100Sduke#ifndef __IMMINTRIN_H
110Sduke#error "Never use <invpcidintrin.h> directly; include <immintrin.h> instead."
120Sduke#endif
130Sduke
140Sduke#ifndef __INVPCIDINTRIN_H
150Sduke#define __INVPCIDINTRIN_H
160Sduke
170Sdukestatic __inline__ void
180Sduke  __attribute__((__always_inline__, __nodebug__,  __target__("invpcid")))
19553Sohair_invpcid(unsigned int __type, void *__descriptor) {
20553Sohair  __builtin_ia32_invpcid(__type, __descriptor);
21553Sohair}
220Sduke
230Sduke#endif /* __INVPCIDINTRIN_H */
240Sduke