Is the M1 that revolutionary? It seems more like the culmination of technology that has been around for years. Rosetta 2 is the most impressive part, and even that is kinda the most obvious method of x86 emulation that doesnt suck
The M1 does not emulate x86 instructions (in hardware). Emulation is provided by Rosetta 2, a combined ahead-of-time and just-in-time emulation that can run x86-64 macOS binaries on Aarch64. However, there is still some hardware support for Rosetta 2 in the M1, e.g. to support strong memory ordering.
A question about the M1: can you actually run an x86 VM under Rosetta? A large part of my job involves driving VMs for expensive hardware loaded with dev tools. I thought the answer was "no", which has put me off getting an M1, but just wanted to check.
It is not only Rosetta. M1 has special hardware to allow for faster emulation like supports for Intel cache coherency protocol allowing to emulate multithreaded code with much less efforts.
Several benchmarks have shown that popular x86 apps running in Rosetta on the M1 still run faster than running on native x86 on other machines, so it's probably not going to be an issue.
M1 doesn't have a special mode for Rosetta. All code is executed with x86 TSO on M1's application processors. How do I know this?
Well, did you know Apple ported Rosetta 2 to Linux? You can get it by running a Linux VM on macOS. It does not require any kernel changes to support in VMs, and if you extract the binary to run it on Asahi Linux, it works just fine too. None of the Asahi team did anything to support x86 TSO. Rosetta also works just fine in m1n1's hypervisor mode, which exists specifically to log all hardware access to detect these sorts of things. If there is a hardware toggle for TSO, it's either part of the chicken bits (and thus enabled all the time anyway) or turned on by iBoot (and thus enabled before any user code runs).
Related point: Hector Martin just upstreamed a patch to Linux that fixes a memory ordering bug in workqueues that's been around since before Linux had Git history. He also found a bug in some ARM litmus tests that he was using to validate whether or not they were implemented correctly. Both of those happened purely because M1 and M2 are so hilariously wide and speculative that they trigger memory reorders no other CPU would.
Conversely, I got an M1 machine for work and I've found that it's pretty useless unless your workload has been specifically tuned for it (like YouTube browsing or Twitter scrolling). There's no way in hell I'm using Rosetta to compile my x86 binaries, especially on a professional basis.
Can we say that M1 will be much faster when those applications are compiled natively for M1? As far as I know there's a translation layer (Rosetta) at the moment.
We had a customer testing our video player application recently and asked whether M1 support was there. It was embarrassing to realize we hadn't formally tested on the M1.
Our application is Gstreamer based, which means it uses highly optimized codecs that eventually render to OpenGL. I was very worried it wouldn't work on the M1.
It works flawlessly. Rosetta is amazing. I'm not an Apple fanboy at all but Apple has done an amazing job with M1 and this is true even though many applications are just running x86 code via Rosetta.
You did mention above that 8.0 is now native M1, but you may still be quite right about the 7.1 version that is available for free download works using Rosetta 2 on the M1.
reply