Major gaming updates for Windows 11 on ARM and Snapdragon devices.
Major gaming updates for Windows 11 on ARM and Snapdragon devices.
Your explanation seemed confusing. It doesn’t make sense that an apple or snapdragon would outperform x86 code compared to x86. The translation layer always introduces extra overhead and can’t instantly improve performance. Software that isn’t well-optimized on x86 will still be translated by ARM into x86, which won’t automatically make it faster. Arm processors aren’t inherently quicker than x86, and vice versa.
the overhead stays consistent regardless of how quickly the arm hardware runs. the main task remains jit translation from x86 to arm, followed by execution on the arm and some loss in OOE and prefetch features. it doesn’t matter if the arm is ten times faster; if the translation forces you to perform 1.4 times more work for the same job, and the hardware’s reduced scope adds another 10% loss in potential optimization. the same software will always need more operations and NOPs from the arm chip in a fixed ratio. jit can’t correct poor code because fixing it demands a practical context window for real-time processing. the actual figures don’t matter, what matters is that the overhead ratio stays constant, not changing with chip speed.