ARMv7 vs. ARMv8: Key Architectural Differences

arm architecture
armv7
armv8
processor design
instruction set

ARMv7 and ARMv8 architectures represent significant generational leaps in ARM processor design, each bringing substantial improvements over its predecessor. Before diving into the specifics, let’s understand each architecture individually.

ARMv7 Architecture

Here’s a breakdown of the key features of the ARMv7 architecture:

  • Instruction Sets: The ARMv7 architecture introduced the ARMv7-A profile, which supports both the ARM instruction set (A32) and the Thumb-2 instruction set (T32).
  • Instruction Size: ARM instructions (A32) are 32-bit instructions, while Thumb-2 instructions (T32) combine 16-bit and 32-bit instructions. This offers a balance between code density and performance.
  • Execution Modes: ARMv7 supports multiple execution modes:
    • ARM Mode: Executes 32-bit ARM instructions.
    • Thumb Mode: Executes a mix of 16-bit and 32-bit Thumb instructions.
    • ThumbEE Mode: Provides enhanced features specifically designed for Java execution environments.
  • Memory Management:
    • 32-bit Memory Model: Supports addressing up to 4 GB of memory space.
    • MMU and MPU: Includes a Memory Management Unit (MMU) for virtual memory and a Memory Protection Unit (MPU) for controlling memory access.
  • Security: Incorporates security features like TrustZone technology, which creates hardware-based isolation between secure and non-secure software environments.

ARMv8 Architecture

Here’s what you need to know about the ARMv8 architecture:

  • Instruction Sets: The ARMv8 architecture introduces the ARMv8-A profile. It supports the A64 instruction set (64-bit), while maintaining backward compatibility with the A32 and T32 instruction sets.
  • Instruction Size: A64 instructions are 64-bit, offering enhanced performance for 64-bit computing.
  • Execution States: ARMv8 introduces two execution states:
    • AArch64: For 64-bit execution, using the A64 instruction set.
    • AArch32: For 32-bit execution, supporting the A32 and T32 instruction sets for compatibility.
  • Memory Management:
    • 32-bit and 64-bit Addressing: Retains support for 32-bit memory addressing while introducing 64-bit memory addressing. This allows for significantly larger memory spaces (more than 4 GB).
  • Security:
    • Memory Tagging Extension (MTE): Enhances security with MTE, which helps prevent memory safety vulnerabilities such as buffer overflows and pointer errors.
  • Virtualization:
    • Virtualization Host Extensions (VHE): Improves virtualization support with VHE, simplifying virtualization management and boosting performance in virtualized environments.

Differences Between ARMv7 and ARMv8

The following table summarizes the key differences between ARMv7 and ARMv8 architectures:

FeatureARMv7ARMv8
Instruction Set Architecture (ISA)ARMv7-A: 32-bit A32 and Thumb-2 (T32)ARMv8-A: 64-bit A64, 32-bit A32, and T32
Addressing ModesSupports 32-bit and 16-bit addressing modesRetains support for 32-bit modes and introduces 64-bit modes
Execution ModesARM, Thumb, ThumbEEAArch64 (64-bit mode), AArch32 (32-bit mode)
Exception HandlingException handling mode, exception vector tableExtended with additional exception levels (EL)
Security FeaturesTrustZone technology for hardware-based isolationEnhanced with Memory Tagging Extension (MTE) for memory safety
Virtualization SupportVirtualization ExtensionsVirtualization Host Extensions (VHE) for improved virtualization management
Memory Model32-bit memory modelExpanded memory model with 64-bit addressing
Performance32-bit execution modeSupports both 32-bit and 64-bit execution modes

In conclusion, the ARMv8 architecture is a significant advancement over ARMv7. It provides support for 64-bit execution, improved security features, better virtualization, and numerous other enhancements designed to meet the growing demands of modern computing.

Understanding Floating Point Units (FPUs) in ARM Processors

Explore Floating Point Units (FPUs) in ARM processors, their purpose in accelerating arithmetic operations, architecture (ARMv7-A & ARMv8-A), data formats, instruction set, and performance benefits.

arm processor
floating point
hardware

Understanding ARM Processor Pipeline Stages

Explore the pipeline architecture of ARM processors, detailing the fetch, decode, execute, memory access, and write-back stages involved in instruction processing.

arm processor
pipeline stage
instruction execution