Ho sempre pensato che, quando facevo (a % 256)
l'ottimizzatore, avrei naturalmente usato un'operazione bit a bit efficiente, come se avessi scritto (a & 0xFF)
.
Durante i test su compilatore explorer gcc-6.2 (-O3):
// Type your code here, or load an example.
int mod(int num) {
return num % 256;
}
mod(int):
mov edx, edi
sar edx, 31
shr edx, 24
lea eax, [rdi+rdx]
movzx eax, al
sub eax, edx
ret
E quando provi l'altro codice:
// Type your code here, or load an example.
int mod(int num) {
return num & 0xFF;
}
mod(int):
movzx eax, dil
ret
Sembra che mi manchi completamente qualcosa. Qualche idea?
%
non è &
neanche.
num
è unsigned
?