arrow left
Back to Developer Education

    ARM vs x86 - Explained

    ARM vs x86 - Explained

    Recently, Apple announced their decision to switch from Intel CPUs to their own ARM chips. What is the difference? The new Apple Silicon chips are based on ARM CPUs, like the current CPUs for the iPhone and iPad. The Intel chips use Intel's proprietary x86 architecture. <!--more-->

    ARM is a RISC architecture. RISC stands for Reduced Instruction Set Computing. This means that the CPU has a limited number of instructions it can use. As a result, each instruction runs in a single cycle and the instructions are simpler. Meanwhile, x86 is a CISC architecture, which stands for Complex Instruction Set Computing.

    This means that it has many more instructions. The exact number varies depending on how you count them, but x86-64 has at least 981 instructions. ARM, on the other hand, has closer to 50 (Actual documentation with ARM is hard to find, since it's only semi-open). Some of these instructions will take more than one cycle to execute. However, there are some instructions that can do the work of many RISC instructions.

    Another benefit of ARM is that it's a semi-open architecture. Very few companies manufacture x86 processors, because Intel has made it closed-source. ARM, on the other hand, doesn't actually manufacture their own CPUs. They license the design out to other companies who want to make their own CPUs. Apple is one of them. Apple is able to customize their chips to work better on their platforms. That's presumably why iPhones perform very well in benchmarks.

    ARM is designed to be smaller, more energy-efficient, and creates less heat. This makes it perfect for mobile devices, like smartphones. The small size makes it great for tiny devices. The energy-efficiency gives the device a longer battery life. The lower heat is good for a device that's constantly being held.

    The same benefits appear in laptops. Apple has historically had problems with overheating in 2020, 2018, 2015, and older. ARM would allow Apple to make their MacBooks cooler, so they don't run into throttling issues. It would allow them to make devices that have a longer battery life. There's also a possibility of Apple's laptops getting smaller.

    Drawbacks of ARM

    One problem is that x86 programs can't run on ARM. Programs will need to be completely rewritten to run on Apple's newer machines. Most programming languages can target ARM just fine. Any currently-maintained programs should have few problems. Anything written in Assembly will need to be rewritten to work on ARM though.

    The main problem is for programs that are no longer being updated. Apple has Rosetta 2, which can run x86 applications. However, Rosetta 1 was known to run much slower than on original hardware. This is by necessity. Rosetta needs to translate the x86 instructions into ARM instructions in real-time. To be fair, Java converts from bytecode to everything else, and it seems to work fine-ish. Still, it seems hard to imagine being able to play games from the 2010's if Microsoft also decides to switch to ARM.

    There's also an issue of speed. Since ARM has fewer instructions, developers need to use more instructions. For example, ARM usually doesn't have a division instruction. Even the most efficient division algorithms are very complicated, and many ARM CPUs don't implement it. On these CPUs, you'd have to divide by using other instructions. Since you're using other instructions to fake division, it ends up taking more cycles. This could even be slower than on a CISC instruction set.

    Executable Sizes

    Since you need more instructions in ARM, it's possible that executables will be larger. To test this, we can compile the sorting_algos repository made for our sorting article. It was run on a Raspberry Pi 4 Model B Rev 1.1. The same program was compiled on an x86-64 Linux desktop. The Raspberry Pi file size would normally be a little smaller because of the 32-bit operating system (Raspberry Pi OS Lite). So, the desktop cross-compiled to the stable-i686-unknown-linux-gnu toolchain. "Stripped" means that nonessential symbols were stripped from the executable. The Cargo profiles used for this are at the bottom. Here are the results:

    x86-32ARM-32
    Unoptimized (unstripped)4.39 MB4.29 MB
    Unoptimized (stripped)595 KB407 KB
    Optimized for speed (unstripped)2.71 MB2.75 MB
    Optimized for speed (stripped)317 KB231 KB
    Optimized for size (unstripped)1.14 MB1.13 MB
    Optimized for size (stripped)272 KB206 KB

    Yes, that's correct. The ARM executable files actually ended up being smaller than the x86 executables. The exact reason why this happened is unclear. It's probably a combination of a few issues:

    • ARM has more registers, so fewer instructions are necessary to move between them.
    • x86 has variable-length instructions, which can be up to 120 bits. All ARM instructions are 32 bits (on most machines).
    • The Rust compiler is using some black magic voodoo to optimize the ARM version. For some reason, it isn't doing this on the x86 version.

    Conclusion

    ARM is designed to be small, energy-efficient, and produce less heat. Because of this, it's widely used in mobile devices, like smartphones. That's also why Apple is working on switching its laptops over to ARM. ARM comes with the issues of backwards-compatibility, and possibly speed. We can only wait and see if ARM completely takes over laptops.

    Cargo Profiles

    Unoptimized: default debugging profile

    Optimized for speed:

    opt-level = 3
    debug = false
    debug-assertions = false
    overflow-checks = false
    lto = false
    panic = 'abort'
    incremental = false
    codegen-units = 1
    rpath = false
    

    Optimized for size:

    opt-level = 's'
    debug = false
    debug-assertions = false
    overflow-checks = false
    lto = true
    panic = 'abort'
    incremental = false
    codegen-units = 1
    rpath = false
    

    Peer Review Contributions by: Sophia Raji

    Published on: Sep 16, 2020
    Updated on: Jul 15, 2024
    CTA

    Start your journey with Cloudzilla

    With Cloudzilla, apps freely roam across a global cloud with unbeatable simplicity and cost efficiency
    Get Started for Free