JAVA is an architecture neutral language. As stated in article1, the JAVA compiler generates JAVA Virtual Machine codes instead of machine codes specific to the computer system we are using.
These Virtual Machine codes, or JAVA bytecodes, are all architecturally neutral; the compiled codes are executable on any processors and systems, provided of course, that the JAVA Virtual machine (interpreter) is installed in those systems
JVM Architecture:
ClassLoader:RunTime Data Area: Aresa used during runtime which comprsises of some data Areas relative to JVM and Thread LifeCycle span.
PC Register: Contains address of the JVM instrauction if NOT native, i.e. method written in C or that doenot run in JVM.
JVM Stack: Fixed or dynamic Sized Stack containg frames,i..e local variables or partial results and is created at time of Thread creation.
This might lead to two errors:
If thread execution needs larger stack for execution than throws stackOverFlow error and if stack allocation is dynamic,the
Stack might get allocated extra memory but still the Stack memory required by JVM for new Thread might run out of memory thus causing OutOFMemory Error.
Heap: Runtime area ffrom which memory is allocated to all class instances and arrays.
Method Area: Comprisies within heap and is shared among all threads of JVM and conaytins per class structures as:
constant pool,field, methods, data, Interfaces.This contains the compiled code.
This method area further comprises of: run-time contant pool: this is the per-class,per-interface runtime representation of the class anf it contains the literals or symbolic references generated by compiler. and is created the time class or interface is created.
Native Method Stacks:To Supports native methods.
Frames: used to store data and partial results, return vales from method.
Heap
^
Method Area
^
Constant Pool
JVM has following lifecycle for classes:
Loading: Finding the binary representation for the class/interface with particular name and create class/interface from that binary represenatation.
Linking:Combinting class/interfcae with run time state of JVM so can be executed.
Initializing:intiialzation of classes
JVM StartUp:
The Java Virtual Machine starts up by creating an initial class, which is specified
in an implementation-dependent manner, using the bootstrap class loader (§5.3.1).
The Java Virtual Machine then links the initial class, initializes it, and invokes
the public class method void main(String[]).
JVM implemention as: Linux based, windows.
JRE is implementaion for JVM
Loading
^
Linking
^
Initializing
^
Vertfication, check if class/interfcae are structurally correct
To Exit JVM:Runtime class exit method
JIT: Just in Time compiler is part of JVm and it bypasses the interpretaion phase by compiling bytecodea to machine native language at runtime