SoftBank reportedly closing a $40 billion sale of ARM to Nvidia -- now confirmed

There was never (and probably never will be) compiler for Itanium that worked well enough. Itanium is immune to many security issues that come from speculative execution because Itanium is in-order CPU and so there is no real need for speculative execution.

And for last paragraph, let's look some latest CPU-designs:

- AMD Zen: Out-of-Order
- ARM Cortex cores: Out-of-Order
- Apple ARM cores: Out-of-Order
- Intel Cove-cores: Out-of-Order
- Intel Tremont (latest Atom): Out-of-Order, first Atom's were in-order.

So basically all modern "high performance" cores seem to be out-of-order so they are all very very far from Itanium design.

The in-order/out-of-order debate comes down to who ultimately has the responsibility for optimizing execution: The CPU or the Compiler. In-Order execution pushes the responsibility to the compiler, which now needs to be aware of the exact architecture (or ideally, the exact CPU) it's compiling for in order to optimize code. You can't make the code generic and let the CPU handle it (which is how out-of-order essentially works), hence the complaints about compiler performance (which matters a LOT more for in-order CPUs).
 
The in-order/out-of-order debate comes down to who ultimately has the responsibility for optimizing execution: The CPU or the Compiler. In-Order execution pushes the responsibility to the compiler, which now needs to be aware of the exact architecture (or ideally, the exact CPU) it's compiling for in order to optimize code. You can't make the code generic and let the CPU handle it (which is how out-of-order essentially works), hence the complaints about compiler performance (which matters a LOT more for in-order CPUs).

Agreed. If we had something we could call "perfect compiler", then all high performance CPU's would probably be in-order. But because there is not even "nearly perfect compiler" available, high performance also mean out-of-order CPU's. I expect this trend to continue at least some time.

-

For this Nvidia-ARM thing, it sounds very strange. Hard to see what Nvidia exactly wants from ARM. They could already make ARM CPU's and after this acquisition they could... make ARM CPU's. Yeah, they could add their own GPU's to the mix but that doesn't sound very important thing. Nvidia must have some plans that are not yet public. However deal is far from finalized and could meet many obstacles so nothing is sure yet.
 
Back