Architecture & Working of JVM(Java Virtual Machine)

Wondering why Java programs are called as WORA(Write Once Run Anywhere)?, Yes, you are guessing it right JVM(Java Virtual Machine) is the answer of this Java feature which has helped Java to be one of the most successful programming language.
main() method is the entry point to Java applications, JVM is responsible for calling the main() method present in the java code, JVM acts as a runtime engine to run java applications. JRE(Java Runtime Environment) consist JVM.
WORA means a developer can develop a java program on one system and can expect it to run on any other java enabled system.
When .java file is compiled, a .class file(containing bytecode) with the same filename is generated  by the java compiler. On execution this .class file goes into various steps. These steps together describe the whole JVM.

Working of JVM

Three activities are mainly responsible:-
  1. Loading
  2. Linking
  3. Initialization
Loading :- The class loader reads the .class file, generates the corresponding binary data and save it in method area. For every .class file, following information is stored in method area by JVM
  • Fully qualified name of the loaded class and it’s immediate parent class.
  • Whether .class file is related to Class or Interface or Enum.
  • Modifier, Variables and Method Information etc.
After loading .class file, JVM creates an object of type Class to represent this file in the heap memory. Please note that this object is of type Class predefined in java.lang package. This Class object can be used by the programmer for getting class level information like name of class, parent name, methods and variable information etc. To get this object reference we can use getClass() method of Object class.

classStudent

classAllkonnected

Output

Note : For every loaded .class file, only one object of Class is created.

Linking :- Linking performs verification, preparation, and resolution(optionally).
  1. Verification : It ensures the correctness of .class file i.e. it check whether this file is properly formatted and generated by valid compiler or not. If verification fails, we get run-time exception java.lang.VerifyError.
  2. Preparation : JVM allocates memory for class variables and initializing the memory to default values.
  3. Resolution : It is the process of replacing symbolic references from the type with direct references. It is done by searching into method area to locate the referenced entity.
Initialization :- In this phase, all static variables are assigned with their values defined in the code and static block(if any). This is executed from top to bottom in a class and from parent to child in class hierarchy.
In general, there are three class loaders :
  1. Bootstrap class loader : Every JVM implementation must have a bootstrap class loader, capable of loading trusted classes. It loads core java API classes present in JAVA_HOME/jre/lib directory. This path is known as bootstrap path. It is implemented in native languages like C, C++.
  2. Extension class loader : It is child of bootstrap class loader. It loads the classes present in the extensions directories JAVA_HOME/jre/lib/ext(Extension path) or any other directory specified by the java.ext.dirs system property. It is implemented in java by the sun.misc.Launcher$ExtClassLoader class.
  3. System/Application class loader : It is child of extension class loader. It is responsible to load classes from application class path. It internally uses Environment Variable which mapped to java.class.path. It is also implemented in Java by the sun.misc.Launcher$AppClassLoader class.
JVM Memory :-
Method area :In method area, all class level information like class name, immediate parent class name, methods and variables information etc. are stored, including static variables. There is only one method area per JVM, and it is a shared resource.
Heap area :Information of all objects is stored in heap area. There is also one Heap Area per JVM. It is also a shared resource.
Stack area :For every thread, JVM create one run-time stack which is stored here. Every block of this stack is called activation record/stack frame which store methods calls. All local variables of that method are stored in their corresponding frame. After a thread terminate, it’s run-time stack will be destroyed by JVM. It is not a shared resource.
PC Registers :Store address of current execution instruction of a thread. Obviously each thread has separate PC Registers.
Native method stacks :For every thread, separate native stack is created. It stores native method information.
Execution Engine :-
Execution engine execute the .class (bytecode). It reads the byte-code line by line, use data and information present in various memory area and execute instructions. It can be classified in three parts :-
  1. Interpreter : It interprets the bytecode line by line and then executes. The disadvantage here is that when one method is called multiple times, every time interpretation is required.
  2. Just-In-Time Compiler(JIT) : It is used to increase efficiency of interpreter.It compiles the entire bytecode and changes it to native code so whenever interpreter see repeated method calls, JIT provide direct native code for that part so re-interpretation is not required,thus efficiency is improved.
  3. Garbage Collector : It destroy un-referenced objects.For more on Garbage Collector,refer Garbage Collector.
Java Native Interface(JNI) :-
It is a interface which interacts with the Native Method Libraries and provides the native libraries(C, C++) required for the execution. It enables JVM to call C/C++ libraries and to be called by C/C++ libraries which may be specific to hardware.

Native Method Libraries :-
It is a collection of the Native Libraries(C, C++) which are required by the Execution Engine.