Posted Oct 26, 2012 21:32 UTC (Fri) by ncm (subscriber, #165)
[Link]
MIPS is an interesting case. MIPS has had a 64-bit design for a long time, and it's not bad, mostly. Unfortunately, its memory model suffers from the same problems as the Alpha: you can't count on anything happening in order, as seen from another processor, so you can't program a MIPS SMP without somebody else making guarantees beyond the architecture spec. x86 has the opposite problem: it promises so much that a 16-way x86 might spend most of its time waiting at barriers for memory state to settle, just in case. The Power64 and Itanic designs hit workable (but different) compromises. We can only hope the AArgh64 architects took advantage of hindsight, because without it maybe only Power64 has MP legs.
Haley: We're doing an ARM64 OpenJDK port!
Posted Oct 26, 2012 23:26 UTC (Fri) by aryonoco (subscriber, #55563)
[Link]
Ah! MIPS, yes I did forget that. Though I wonder if that's my fault, or a reflection of MIPS completely disappearing from the radar (other than in a few niche markets).