1
1

Merge pull request #2679 from hjelmn/cpuid_fix

master: amd64: save/restore all 64 bits of rbx around cpuid
Этот коммит содержится в:
Nathan Hjelm 2017-01-10 09:12:28 -07:00 коммит произвёл GitHub
родитель 6d59b476de 5b70ae3ec0
Коммит 3593fad4d2

Просмотреть файл

@ -61,16 +61,18 @@ opal_sys_timer_get_cycles(void)
static inline bool opal_sys_timer_is_monotonic (void)
{
int32_t cpuid1, cpuid2, tmp;
int64_t tmp;
int32_t cpuid1, cpuid2;
const int32_t level = 0x80000007;
/* cpuid clobbers ebx but it must be restored for -fPIC so save
* then restore ebx */
__asm__ volatile ("xchgl %%ebx, %2\n"
__asm__ volatile ("xchg %%rbx, %2\n"
"cpuid\n"
"xchgl %%ebx, %2\n":
"xchg %%rbx, %2\n":
"=a" (cpuid1), "=d" (cpuid2), "=r" (tmp) :
"a" (level) :
"ecx");
"ecx", "ebx");
/* bit 8 of edx contains the invariant tsc flag */
return !!(cpuid2 & (1 << 8));
}