A Java virtual machine (JVM) is a virtual
machine that can execute Java bytecode
. In the name itself it same its one time of virtual machine . It is the code execution
component of the Java software
platform
if you understand JVM, you will understand Java more, and will be able to solve the problems which seem to be so simple but unsolvable
Thus, in this article I will explain how JVM works, its structure, how it executes Java bytecode, the order of execution, examples of common mistakes and their solutions, as well as the new features in Java SE 7 Edition.
Virtual Machine
The JRE is
composed of the Java API and the JVM. The role of the JVM is to read the Java
application through the Class Loader and execute it along with the Java API. A virtual machine (VM) is a software
implementation of a machine (i.e. a computer) that executes programs like a
physical machine. Originally, Java was designed to run based on a virtual
machine separated from a physical machine for implementing WORA (Write
Once Run Anywhere. although this goal has been mostly forgotten. Therefore,
the JVM runs on all kinds of hardware to execute the Java Bytecode
without changing the Java execution code.
- Stack-based virtual machine: The most popular computer architectures such as Intel x86 Architecture and ARM Architecture run based on a register. However, JVM runs based on a stack.
- Symbolic reference: All types (class and interface) except for primitive data types are referred to through symbolic reference, instead of through explicit memory address-based reference.
- Garbage collection: A class instance is explicitly created by the user code and automatically destroyed by garbage collection.
- Guarantees platform independence by clearly defining the primitive data type: A traditional language such as C/C++ has different int type size according to the platform. The JVM clearly defines the primitive data type to maintain its compatibility and guarantee platform independence. << THIS IS VERY IMPORTANT POINT… WHICH IS CLEAR SEPARATION OF Platform independence>>
Sun Microsystems developed Java. However, any vendor can develop and
provide a JVM by following the Java Virtual Machine Specification. For this
reason, there are various JVMs, including Oracle Hotspot JVM and IBM JVM. The
Dalvik VM in Google's Android operating system is a kind of JVM, though it does
not follow the Java Virtual Machine Specification. Unlike Java VMs, which are
stack machines, the Dalvik VM is a register-based architecture. Java bytecode
is also converted into an register-based instruction set used by the Dalvik VM .
Java bytecode
To implement WORA, the JVM uses Java bytecode, a middle-language between Java (user language) and the machine language. This Java bytecode is the smallest unit that deploys the Java code. Before explaining the Java bytecode, let's take a look at it. This case is a summary of a real example that has occurred in development process.Java Bytecode is the essential element of JVM The JVM is an emulator that emulates the Java Bytecode. Java compiler does not directly convert high-level language such as C/C++ to the machine language (direct CPU instruction); it converts the Java language that the developer understands to the Java Bytecode that the JVM understands. Since Java bytecode has no platform-dependent code, it is executable on the hardware where the JVM (accurately, the JRE of the same profile) has been installed, even when the CPU or OS is different (a class file developed and compiled on the Windows PC can be executed on the Linux machine without additional change.) The size of the compiled code is almost identical to the size of the source code, making it easy to transfer and execute the compiled code via the network.
The class file itself is a binary file that cannot be understood by a human. To manage this file, JVM vendors provide javap, the disassembler. The result of using javap is called Java assembly. In the above case, the Java assembly below is obtained by disassembling the UserService.add() method of the application code with the javap -c option.
The first 16 bytes of the UserService.class file disassembled earlier are shown as follows in the Hex Editor.
ca fe ba be 00 00 00 32 00 28 07 00 02 01 00 1b
There are 10 basic sections to the Java Class File structure:
- Magic Number: 0xCAFEBABE
- Version of Class File Format: the minor and major versions of the class file
- Constant Pool: Pool of constants for the class
- Access Flags: for example whether the class is abstract, static, etc.
- This Class: The name of the current class
- Super Class: The name of the super class
- Interfaces: Any interfaces in the class
- Fields: Any fields in the class
- Methods: Any methods in the class
- Attributes: Any attributes of the class (for example the name of the sourcefile, etc.)
Magic, Version, Constant, Access, This, Super, Interfaces, Fields, Methods, Attributes (MVCATSIFMA)
major version number of the class file format being used.
J2SE 7 = 51 (0x33 hex),
J2SE 6.0 = 50 (0x32 hex),
J2SE 5.0 = 49 (0x31 hex),
"We used to go to lunch at a place called St Michael's Alley. According to local legend, in the deep dark past, the Grateful Dead used to perform there before they made it big. It was a pretty funky place that was definitely a Grateful Dead Kinda Place. When Jerry died, they even put up a little Buddhist-esque shrine. When we used to go there, we referred to the place as Cafe Dead. Somewhere along the line it was noticed that this was a HEX number. I was re-vamping some file format code and needed a couple of magic numbers: one for the persistent object file, and one for classes. I used CAFEDEAD for the object file format, and in gripping for 4 character hex words that fit after "CAFE" (it seemed to be a good theme) I hit on BABE and decided to use it. At that time, it didn't seem terribly important or destined to go anywhere but the trash-can of history. So CAFEBABE became the class file format, and CAFEDEAD was the persistent object format. But the persistent object facility went away, and along with it went the use of CAFEDEAD - it was eventually replaced by RMI."
To prepare for such cases, the Java class loader is verified through a very strict and tight process. The JVM specifications explicitly detail the process.
A class loader loads the compiled Java Bytecode to the Runtime Data
Areas, and the execution engine executes the Java Bytecode.
Class Loader : The Bootstrap Class Loader is the parent of all class loaders.
- Bootstrap class loader: This is created when running the JVM. It loads Java APIs, including object classes. Unlike other class loaders, it is implemented in native code instead of Java.
- Extension class loader: It loads the extension classes excluding the basic Java APIs. It also loads various security extension functions.
- System class loader: If the bootstrap class loader and the extension class loader load the JVM components, the system class loader loads the application classes. It loads the class in the $CLASSPATH specified by the user.
- User-defined class loader: This is a class loader that an application user directly creates on the code.
No comments:
Post a Comment