The JVM Architecture Explained - DZone Java PDF
The JVM Architecture Explained - DZone Java PDF
Every Java developer knows that bytecode will be executed by the JRE (Java
Runtime Environment). But many don't know the fact that JRE is the
implementation of Java Virtual Machine (JVM), which analyzes the bytecode,
interprets the code, and executes it. It is very important, as a developer, that we
know the architecture of the JVM, as it enables us to write code more efficiently.
In this article, we will learn more deeply about the JVM architecture in Java
and different components of the JVM.
1. ClassLoader Subsystem
2. Runtime Data Area
3. Execution Engine
1. ClassLoader Subsystem
Java's dynamic class loading functionality is handled by the ClassLoader
subsystem. It loads, links. and initializes the class file when it refers to a class
for the first time at runtime, not compile time.
1.1 Loading
Classes will be loaded by this component. BootStrap ClassLoader, Extension
ClassLoader, and Application ClassLoader are the three ClassLoaders that will
help in achieving it.
1.2 Linking
1. Verify – Bytecode verifier will verify whether the generated bytecode is
proper or not if verification fails we will get the verification error.
2. Prepare – For all static variables memory will be allocated and assigned
with default values.
3. Resolve – All symbolic memory references are replaced with the original
references from Method Area.
1.3 Initialization
This is the final phase of ClassLoading; here, all static variables will be assigned
with the original values, and the static block will be executed.
1. Method Area – All the class-level data will be stored here, including static
variables. There is only one method area per JVM, and it is a shared
resource.
2. Heap Area – All the Objects and their corresponding instance variables
and arrays will be stored here. There is also one Heap Area per JVM. Since
the Method and Heap areas share memory for multiple threads, the data
stored is not thread-safe.
3. Stack Area – For every thread, a separate runtime stack will be created.
For every method call, one entry will be made in the stack memory which
is called Stack Frame. All local variables will be created in the stack
memory. The stack area is thread-safe since it is not a shared resource. The
Stack Frame is divided into three subentities:
1. Local Variable Array – Related to the method how many local
variables are involved and the corresponding values will be stored
here.
2. Operand stack – If any intermediate operation is required to perform,
operand stack acts as runtime workspace to perform the operation.
3. Frame data – All symbols corresponding to the method is stored here.
In the case of any exception, the catch block information will be
maintained in the frame data.
3. Execution Engine
The bytecode, which is assigned to the Runtime Data Area, will be executed by
the Execution Engine. The Execution Engine reads the bytecode and executes it
piece by piece.
Java Native Interface (JNI): JNI will be interacting with the Native Method
Libraries and provides the Native Libraries required for the Execution Engine.
You can manually track and manage open source vulnerabilities. But do you want to? Download the
DIY Guide to Open Source Vulnerability Management to learn more.
Presented by Synopsys