2020-06-26 17:21:16 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#ifndef __SELFTESTS_X86_HELPERS_H
|
|
|
|
#define __SELFTESTS_X86_HELPERS_H
|
|
|
|
|
|
|
|
#include <asm/processor-flags.h>
|
|
|
|
|
|
|
|
static inline unsigned long get_eflags(void)
|
|
|
|
{
|
|
|
|
#ifdef __x86_64__
|
2020-11-02 19:54:02 +00:00
|
|
|
return __builtin_ia32_readeflags_u64();
|
2020-06-26 17:21:16 +00:00
|
|
|
#else
|
2020-11-02 19:54:02 +00:00
|
|
|
return __builtin_ia32_readeflags_u32();
|
2020-06-26 17:21:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void set_eflags(unsigned long eflags)
|
|
|
|
{
|
|
|
|
#ifdef __x86_64__
|
2020-11-02 19:54:02 +00:00
|
|
|
__builtin_ia32_writeeflags_u64(eflags);
|
2020-06-26 17:21:16 +00:00
|
|
|
#else
|
2020-11-02 19:54:02 +00:00
|
|
|
__builtin_ia32_writeeflags_u32(eflags);
|
2020-06-26 17:21:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __SELFTESTS_X86_HELPERS_H */
|