(no title)
thxg | 2 years ago
> Note that the top 56 bits in rax are not zeroed – they contain junk. This is fine b/c the compiler will only make callers check the lowest bit of a register for boolean operations. This is why changing the compiler’s “understanding” (ie the cast) is necessary.
... and yet, the function ABI is clearly i386 (fetching arguments from stack) and indeed everything is compiled with -m32 [2] (i.e. 32-bit SysV ABI). This is a strange contradiction in 2023. On the Intel/AMD side, x86_64 has been prevalent (and the default) for... more than 15 years?
It does not invalidate the article's point. But it is slightly confusing....
AshamedCaptain|2 years ago
On such architecture "casting to bool" would be free, but other, narrowing type conversions would not.
danobi|2 years ago
And thanks for pointing out the x86/ABI assumptions. Had not considered that. It's certainly interesting to think about.