top | item 46028265 (no title) pdw | 3 months ago Rosetta uses software emulation for x87 floating point. That's slow, but in practice that doesn't matter much. Mac software never had a reason to use x87 FP, every Intel Mac had at least SSE3 support. discuss order hn newest ksherlock|3 months ago There was at least one reason... long double x87me(long double a, long double b) { return a+b; } pushq %rbp movq %rsp, %rbp fldt 32(%rbp) fldt 16(%rbp) faddp %st(1) popq %rbp retq adastra22|3 months ago what is this? load replies (1)
ksherlock|3 months ago There was at least one reason... long double x87me(long double a, long double b) { return a+b; } pushq %rbp movq %rsp, %rbp fldt 32(%rbp) fldt 16(%rbp) faddp %st(1) popq %rbp retq adastra22|3 months ago what is this? load replies (1)
ksherlock|3 months ago
adastra22|3 months ago