You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For 64-bit divisions GCC 6 no longer seems to generate divs.l instructions on 68020-68040, but relies on __divdi3 instead. AFAIK this instruction is only mission on the 68000 and 68060. I made a small example in CEX, thanks for the help in advance. http://franke.ms/cex/z/7KzEqE
The text was updated successfully, but these errors were encountered:
I vaguely recall GCC 3.4.0 doing this, but I could be remembering wrong, maybe I saw this in hand-crafted assembly.
In that case I'll rephrase this as a question/feature request: would it feasible to replace __divdi3 with a divs.l in the example above?
int FixedDiv(int a, int b) {
int d0 = (a << 16) | ((unsigned int)a >> 16);
int d1 = (short)(d0);
d0 &= 0xffff0000;
asm volatile("divs.l %2,%1:%0" : "+r"(d0), "+r"(d1) : "d"(b));
return d0;
}
For 64-bit divisions GCC 6 no longer seems to generate divs.l instructions on 68020-68040, but relies on __divdi3 instead. AFAIK this instruction is only mission on the 68000 and 68060. I made a small example in CEX, thanks for the help in advance.
http://franke.ms/cex/z/7KzEqE
The text was updated successfully, but these errors were encountered: