1*bed243d3SAndroid Build Coastguard Worker /*===-------------- wbnoinvdintrin.h - wbnoinvd intrinsic-------------------=== 2*bed243d3SAndroid Build Coastguard Worker * 3*bed243d3SAndroid Build Coastguard Worker * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*bed243d3SAndroid Build Coastguard Worker * See https://llvm.org/LICENSE.txt for license information. 5*bed243d3SAndroid Build Coastguard Worker * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*bed243d3SAndroid Build Coastguard Worker * 7*bed243d3SAndroid Build Coastguard Worker *===-----------------------------------------------------------------------=== 8*bed243d3SAndroid Build Coastguard Worker */ 9*bed243d3SAndroid Build Coastguard Worker 10*bed243d3SAndroid Build Coastguard Worker #if !defined __X86INTRIN_H && !defined __IMMINTRIN_H 11*bed243d3SAndroid Build Coastguard Worker #error "Never use <wbnoinvdintrin.h> directly; include <x86intrin.h> instead." 12*bed243d3SAndroid Build Coastguard Worker #endif 13*bed243d3SAndroid Build Coastguard Worker 14*bed243d3SAndroid Build Coastguard Worker #ifndef __WBNOINVDINTRIN_H 15*bed243d3SAndroid Build Coastguard Worker #define __WBNOINVDINTRIN_H 16*bed243d3SAndroid Build Coastguard Worker 17*bed243d3SAndroid Build Coastguard Worker static __inline__ void 18*bed243d3SAndroid Build Coastguard Worker __attribute__((__always_inline__, __nodebug__, __target__("wbnoinvd"))) _wbnoinvd(void)19*bed243d3SAndroid Build Coastguard Worker_wbnoinvd (void) 20*bed243d3SAndroid Build Coastguard Worker { 21*bed243d3SAndroid Build Coastguard Worker __builtin_ia32_wbnoinvd (); 22*bed243d3SAndroid Build Coastguard Worker } 23*bed243d3SAndroid Build Coastguard Worker 24*bed243d3SAndroid Build Coastguard Worker #endif /* __WBNOINVDINTRIN_H */ 25