The JVM

Java Virtual Machine (JVM) is a critical component of the Java Runtime Environment (JRE) and the Java Development Kit (JDK). It plays a fundamental role in executing Java bytecode, which is the compiled form of Java source code. The JVM serves as an abstraction layer between Java applications and the underlying hardware and operating system, making Java truly platform-independent and enabling the “Write Once, Run Anywhere” (WORA) capability.

In this comprehensive explanation, we will delve into the internal architecture of the JVM, understanding its key components, execution process, memory management, class loading, and just-in-time (JIT) compilation.

Overview of JVM

The JVM is a virtual machine that interprets and executes Java bytecode. It provides an isolated and controlled environment for Java applications to run, abstracting the differences in hardware, operating systems, and machine architectures. The JVM forms the cornerstone of Java’s platform independence, as it ensures that Java applications behave consistently across different platforms without requiring recompilation.

Role of JVM

The primary roles of the JVM can be summarized as follows:

  • Execution: The JVM is responsible for executing Java bytecode by interpreting the instructions and performing the necessary computations.
  • Platform Independence: It abstracts the hardware and operating system details, enabling Java applications to run on any platform with a compatible JVM implementation.
  • Memory Management: The JVM manages memory, including object allocation, garbage collection, and optimization to ensure efficient memory usage.
  • Security: It enforces Java’s security model by verifying bytecode before execution to prevent unauthorized access and malicious code execution.
  • Optimization: Modern JVM implementations use JIT compilation to translate frequently executed bytecode into native machine code for improved performance.

Internal Architecture of JVM

The JVM consists of several key components, each serving a specific purpose in the execution process. Understanding these components is crucial for comprehending the internal workings of the JVM.

Class Loader Subsystem

The Class Loader Subsystem is responsible for loading Java class files into memory and converting them into binary data (bytecode) that the JVM can understand. The class loader subsystem includes the following components:

  • Bootstrap Class Loader: The Bootstrap Class Loader is the first component of the class loading process and is responsible for loading the core Java classes, such as those in the “java.lang” package. It is implemented in native code and is an integral part of the JVM.
  • Extensions Class Loader: The Extensions Class Loader is responsible for loading classes from the extension classpath, which includes classes in the “jre/lib/ext” directory.
  • System Class Loader: The System Class Loader, also known as the Application Class Loader, loads classes from the classpath specified by the user when running the Java application. It is responsible for loading application-specific classes.
  • User-Defined Class Loaders: In addition to the standard class loaders, developers can create their custom class loaders by extending the “java.lang.ClassLoader” class. These custom class loaders can be used for specific purposes, such as loading classes from non-conventional sources or implementing class loading security restrictions.
Runtime Data Area

The Runtime Data Area is the memory area used by the JVM to store data during the execution of Java applications. It consists of several components:

  • Method Area: The Method Area stores class-level data, such as the runtime constants pool, field information, method information, and method code. Each loaded class has its own entry in the Method Area.
  • Heap: The Heap is the runtime data area where objects are allocated. It is shared among all threads and is the memory area subject to garbage collection. The JVM dynamically manages the heap size based on the application’s memory requirements.
  • Java Stack: Each thread in the JVM has its own Java Stack, which stores method call frames. A method call frame contains local variables, method parameters, and intermediate computation results. The Java Stack is used for method invocation and supports the Last-In-First-Out (LIFO) mechanism.
  • Native Method Stack: The Native Method Stack is specific to the execution of native (non-Java) methods. It holds method call frames for native methods, which are implemented in languages other than Java (e.g., C, C++).
  • Program Counter (PC) Register: The Program Counter Register holds the address of the next bytecode instruction to be executed for the current thread.
Execution Engine

The Execution Engine is responsible for executing Java bytecode. It includes two main components:

  • Interpreter: The Interpreter reads and interprets bytecode instructions one by one, executing them on the host CPU. While the interpreter is simpler and easier to implement, it can be slower than other execution engines.
  • Just-In-Time (JIT) Compiler: The JIT compiler is an optional component that dynamically compiles frequently executed bytecode into native machine code at runtime. The native code is stored in the Code Cache and executed directly by the CPU. This process, called JIT compilation, significantly improves the performance of the application.

JVM Execution Process

The JVM’s execution process involves several stages, starting from class loading to the actual execution of bytecode. Understanding this process is essential to grasp how the JVM operates.

Class Loading

The JVM class loading process begins with the loading of class files into memory. When a Java application starts, the JVM’s Class Loader Subsystem performs the following steps:

Loading: The class loader subsystem loads class files from various sources, such as the file system, network, or other custom sources.

Linking: 

Linking is a three step process.

(i)Verification: The JVM verifies the correctness of the loaded bytecode, ensuring that it adheres to Java’s security and language specifications. Verification checks include type safety, bytecode structure, and constant pool validity.

(ii)Preparation: The JVM allocates memory for class variables (static fields) and initializes them with default values (e.g., zero for numeric types, null for objects).

(iii)Initialization: The static variables and static initializer blocks of the class are executed in the order they appear in the code. This step initializes the static state of the class.

The class loading process is dynamic, meaning that classes are loaded as needed during the execution of the program. Additionally, classes may be unloaded from memory by the JVM’s garbage collector if they are no longer in use.

Bytecode Execution

After class loading, the JVM executes the bytecode of the application. The execution process involves the following steps:

  • Interpreter Execution: The JVM’s Interpreter reads and interprets the bytecode instructions sequentially. It fetches the bytecode instruction pointed to by the Program Counter (PC) register, executes the instruction, and updates the PC to point to the next instruction.
  • Just-In-Time (JIT) Compilation: In addition to interpreting bytecode, modern JVM implementations use JIT compilation to improve performance. When the JVM identifies hotspots, i.e., frequently executed sections of bytecode, it employs the JIT compiler to translate the bytecode into native machine code. This native code is stored in the Code Cache and executed directly by the CPU, bypassing the interpreter. As a result, the application’s performance improves significantly.

Garbage Collection

The JVM performs automatic memory management through garbage collection. The Garbage Collector (GC) identifies and reclaims memory occupied by objects that are no longer in use, thus preventing memory leaks and ensuring efficient memory usage.

Garbage collection involves the following steps:

  • Mark: The GC traverses the object graph, starting from root objects (e.g., objects referenced by local variables or static fields), and marks all reachable objects as live.
  • Sweep: The GC identifies and collects all unreachable objects, also known as garbage. It reclaims the memory occupied by these objects.
  • Compact (Optional): Some garbage collectors also perform compaction, which rearranges the remaining live objects in memory to minimize fragmentation and improve memory locality.

The choice of garbage collector and its configuration can significantly impact the performance of the application. Different garbage collectors have different trade-offs between throughput, latency, and memory footprint.

Memory Management in JVM

Memory management is a critical aspect of JVM’s internal architecture. The JVM manages memory primarily in two areas: the Heap and the Java Stack.

Heap Memory

The Heap is the runtime data area used for dynamic memory allocation. It is where objects are allocated during the application’s execution. The JVM automatically manages the Heap’s memory and performs garbage collection to reclaim memory occupied by objects that are no longer in use.

Heap memory is divided into several regions, with the primary ones being:

  • Young Generation: This region is further divided into Eden Space and two Survivor Spaces (S0 and S1). New objects are allocated in Eden Space. When Eden Space fills up, a minor garbage collection (Young Generation Collection) is triggered, during which live objects are moved to one of the Survivor Spaces. Objects that survive multiple garbage collections are promoted to the Old Generation.
  • Old Generation: This region holds long-lived objects that have survived multiple garbage collections in the Young Generation. Major garbage collections (Old Generation Collection) are less frequent but involve traversing the entire heap and are typically more time-consuming.
  • Permanent Generation (Deprecated): Prior to Java 8, the Permanent Generation (PermGen) was a part of the Heap used for storing metadata related to classes, interned strings, and other internal JVM data. In Java 8 and later versions, the concept of PermGen was replaced by the Metaspace.

Java Stack Memory

Each thread in the JVM has its own Java Stack, which is used for method invocation and supports the Last-In-First-Out (LIFO) mechanism. The Java Stack holds method call frames, each of which contains local variables, method parameters, and intermediate computation results.Since the Java Stack is per-thread, it is lightweight and allows for fast method invocation and thread switching. However, its size is typically smaller than the Heap, and it is not subject to garbage collection.

Garbage Collection in JVM

Garbage collection is a crucial aspect of JVM memory management, ensuring efficient memory usage and preventing memory leaks. Different JVM implementations come with various garbage collection algorithms, each with its own trade-offs between throughput, latency, and memory overhead.

Types of Garbage Collectors

Some common types of garbage collectors in modern JVM implementations include:

  • Serial Garbage Collector: Also known as the Serial Collector, this collector uses a single thread for garbage collection. It is suitable for single-threaded applications or those with limited memory resources. The Serial Collector is ideal for small applications or testing purposes.
  • Parallel Garbage Collector: The Parallel Garbage Collector, also known as the throughput collector, uses multiple threads for garbage collection, making it suitable for multi-core systems. It aims to maximize application throughput by leveraging multiple CPU cores.
  • Concurrent Mark-Sweep (CMS) Garbage Collector: The CMS Garbage Collector performs most of the garbage collection work concurrently with the application’s execution, reducing pauses and improving application responsiveness. It is well-suited for applications requiring low-latency responses, such as interactive applications or web servers.
  • Garbage-First (G1) Garbage Collector: The G1 Garbage Collector is a region-based garbage collector designed for large heaps. It divides the Heap into regions and prioritizes garbage collection in regions with the most garbage, aiming to achieve both low-latency and high throughput.

Garbage Collection Process

The garbage collection process involves the following phases:

  • Mark Phase: The JVM identifies and marks all reachable objects, starting from the root objects (e.g., objects referenced by local variables or static fields). It traverses the object graph to identify live objects.
  • Sweep Phase: The JVM identifies and collects all unreachable objects, also known as garbage. It reclaims the memory occupied by these objects.
  • Compact Phase (Optional): Some garbage collectors perform compaction, which rearranges the remaining live objects in memory to minimize fragmentation and improve memory locality. Compaction can be particularly beneficial in scenarios with a high rate of object allocation and deallocation.

JIT Compilation in JVM

One of the JVM’s key optimization techniques is Just-In-Time (JIT) compilation, which dynamically translates frequently executed bytecode into native machine code at runtime. The JIT compiler analyzes the bytecode, identifies hotspots, and optimizes them for better performance.

Interpretation vs. JIT Compilation

Before JIT compilation, the JVM used to execute bytecode using an interpreter. The interpreter reads bytecode instructions one by one, interprets them, and executes them on the host CPU. While interpretation is straightforward and easy to implement, it can be slower than direct execution of native machine code.

With JIT compilation, the JVM selectively compiles bytecode into native machine code when it identifies code segments (methods or loops) that are executed frequently. This native code is stored in the Code Cache and executed directly by the CPU, bypassing the interpreter. As a result, the application’s performance improves significantly, especially in the case of frequently executed code.

JIT Compilation Process

The JIT compilation process involves the following steps:

  • Identification of Hotspots: The JVM monitors the execution of the application to identify code segments that are executed frequently and constitute hotspots. A hotspot can be a method or a loop that is executed repeatedly.
  • Compilation: Once a hotspot is identified, the JIT compiler translates the bytecode of the hotspot into native machine code. This native code is optimized for the target CPU architecture and can be executed directly by the CPU.
  • Code Cache: The compiled native code is stored in the Code Cache, a dedicated memory area within the JVM. The Code Cache ensures that frequently executed code is readily available for execution without the need for repeated compilation.
  • Profiling and Deoptimization: The JVM continues to monitor the execution of the application. If the execution behavior changes, or if new optimizations become possible, the JVM can recompile the hotspot with different optimizations. Additionally, if the assumptions made during JIT compilation are no longer valid, the JVM can deoptimize the code, falling back to interpretation until a new optimized version is compiled.

JIT compilation allows the JVM to strike a balance between interpreting bytecode for quick startup and selectively compiling hotspots for improved execution speed.

Performance Considerations and Tuning

JVM performance is influenced by several factors, including garbage collection, JIT compilation, heap size, and memory management. Tuning the JVM’s configuration can significantly impact application performance. Here are some key considerations:

  • Choosing the Right Garbage Collector: Selecting the appropriate garbage collector for your application’s requirements is crucial. For instance, if your application prioritizes low-latency and responsiveness, consider using the CMS or G1 garbage collector. On the other hand, if throughput is a primary concern, the Parallel Garbage Collector may be more suitable.
  • Heap Size: Properly sizing the Heap is essential to avoid frequent garbage collection pauses. A larger Heap may reduce the frequency of garbage collections but might increase the pause times. Conversely, a smaller Heap may lead to more frequent collections but with shorter pauses. Finding the right balance depends on the specific workload and available memory resources.
  • JIT Compilation: JIT compilation can significantly improve performance, but it also introduces an initial overhead due to the compilation process. Monitoring and fine-tuning the JIT compilation threshold and policy can help strike the right balance between interpreted and compiled code.
  • Meta space Size: In Java 8 and later versions, the concept of PermGen was replaced by Metaspace for storing metadata related to classes. Meta space is unlimited by default, but you can set a maximum size using JVM options to control its growth.
  • Thread Stack Size: The default thread stack size might be insufficient for certain applications. In situations where deep recursion or many threads are used, increasing the thread stack size might be necessary to avoid StackOverflowErrors.
  • Hardware and OS Considerations: JVM performance is also affected by hardware specifications and the underlying operating system. Ensuring that the JVM is running on hardware that meets the application’s requirements and optimizing OS settings can improve overall performance.

        The Java Virtual Machine (JVM) is the heart of the Java platform, providing platform independence and enabling Java applications to run on any compatible platform without recompilation. The JVM’s internal architecture is complex, comprising the Class Loader Subsystem, Runtime Data Area, Execution Engine, and Garbage Collection. The JVM executes Java bytecode, manages memory, and optimizes performance through JIT compilation. Understanding the internal workings of the JVM is crucial for Java developers and system administrators to optimize Java application performance, configure the JVM effectively, and ensure a smooth and efficient runtime environment for Java applications.

Scroll to Top