Code: Select all
static inline uint32t getEFlags() {
uint32t val;
asm volatile("pushfl\n\tpopl %%eax"
:"=A"(val));
return val;
}
static inline void setEFlags(uint32t flags) {
asm volatile("pushl %%eax\n\tpopfl"
:
:"A"(flags));
}
uint32t checkCPUID() {
uint32t flags= getEFlags();
setEFlags(flags ^ 0x200000);
if(unlikely((flags ^ getEFlags()) == 0))
return 0;
return 1;
}
Code: Select all
.globl checkCPUID
.type checkCPUID, @function
checkCPUID:
pushl %ebp
movl %esp, %ebp
/APP
/ 171 "../src/include/asm.h" 1
pushfl
popl %eax
/ 0 "" 2
/NO_APP
movl %edx, %eax
xorl $2097152, %eax
/APP
/ 178 "../src/include/asm.h" 1
pushl %eax
popfl
/ 0 "" 2
/ 171 "../src/include/asm.h" 1
pushfl
popl %eax
/ 0 "" 2
/NO_APP
cmpl %eax, %edx
popl %ebp
setne %al
movzbl %al, %eax
ret
.size checkCPUID, .-checkCPUID
The funny thing is, my code worked all the time, because I compiled it with the -O2 flag and so gcc has some "good" value in edx, but today I wanted to see how much space I can save if I´m compiling with the -Os flag and now there is a "bad" value in edx and my code doesn´t work anymore