Differences between arm64 and aarch64

前端 未结 2 1484
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-07 14:35

I have two \"unlocked\" devices, an iPad mini 3, and a Galaxy Edge 6, both endowed with a terminal and a minimalistic set of unix commands. I thought both devices have arm64

相关标签:
2条回答
  • 2020-12-07 15:03

    AArch64 is the 64-bit state introduced in the Armv8-A architecture (https://en.wikipedia.org/wiki/ARM_architecture#ARMv8-A). The 32-bit state which is backwards compatible with Armv7-A and previous 32-bit Arm architectures is referred to as AArch32. Therefore the GNU triplet for the 64-bit ISA is aarch64. The Linux kernel community chose to call their port of the kernel to this architecture arm64 rather than aarch64, so that's where some of the arm64 usage comes from.

    As far as I know the Apple backend for aarch64 was called arm64 whereas the LLVM community-developed backend was called aarch64 (as it is the canonical name for the 64-bit ISA) and later the two were merged and the backend now is called aarch64.

    So AArch64 and ARM64 refer to the same thing.

    0 讨论(0)
  • 2020-12-07 15:16

    It seems that ARM64 was created by Apple and AARCH64 by the others, most notably GNU/GCC guys.

    After some googling I found this link:

    The LLVM 64-bit ARM64/AArch64 Back-Ends Have Merged

    So it makes sense, iPad calls itself ARM64, as Apple is using LLVM, and Edge uses AARCH64, as Android is using GNU GCC toolchain.

    0 讨论(0)
提交回复
热议问题