Java Virtual Machine

From Seo Wiki - Search Engine Optimization and Programming Languages
Jump to navigationJump to search

A Java Virtual Machine (JVM) is a set of computer software programs and data structures that use a virtual machine model for the execution of other computer programs and scripts. The model used by a JVM accepts a form of computer intermediate language commonly referred to as Java bytecode. This language conceptually represents the instruction set of a stack-oriented, capability architecture. Sun claims there are over 4.5 billion JVM-enabled devices.[1]

Overview

Java Virtual Machines operate on Java bytecode, which is normally (but not necessarily) generated from Java source code; a JVM can also be used to implement programming languages other than Java. For example, Ada source code can be compiled to Java bytecode, which may then be executed by a JVM. JVMs can also be released by other companies besides Sun (the developer of Java) — JVMs using the "Java" trademark may be developed by other companies as long as they adhere to the JVM specification published by Sun (and related contractual obligations).

The JVM is a crucial component of the Java Platform. Because JVMs are available for many hardware and software platforms, Java can be both middleware and a platform in its own right[clarification needed] — hence the trademark write once, run anywhere. The use of the same bytecode for all platforms allows Java to be described as "compile once, run anywhere", as opposed to "write once, compile anywhere", which describes cross-platform compiled languages. The JVM also enables such features as Automated Exception Handling that provides 'root-cause' debugging information for every software error (exception) independent of the source code.

The JVM is distributed along with a set of standard class libraries that implement the Java API (Application Programming Interface). An application programming interface is what a computer system, library or application provides in order to allow data exchange between them. They are bundled together as the Java Runtime Environment.

Execution environment

Programs intended to run on a JVM must be compiled into a standardized portable binary format, which typically comes in the form of .class files. A program may consist of many classes in different files. For easier distribution of large programs, multiple class files may be packaged together in a .jar file (short for Java archive).

The JVM runtime executes .class or .jar files, emulating the JVM instruction set by interpreting it, or using a just-in-time compiler (JIT) such as Sun's HotSpot. JIT compiling, not interpreting, is used in most JVMs today to achieve greater speed. Ahead-of-time compilers that enable the developer to precompile class files into native code for a particular platforms also exist.

Like most virtual machines, the Java Virtual Machine has a stack-based architecture akin to a microcontroller/microprocessor. However, the JVM also has low-level support for Java-like classes and methods, which amounts to a highly idiosyncratic memory model and capability-based architecture.

The JVM, which is the instance of the 'JRE' (Java Runtime Environment), comes into action when a Java program is executed. When execution is complete, this instance is garbage-collected. JIT is the part of the JVM that is used to speed up the execution time. JIT compiles parts of the byte code that have similar functionality at the same time, and hence reduces the amount of time needed for compilation.

Support for dynamic languages

Although the JVM was primarily aimed at running compiled Java programs, many other languages can now run on top of it[2], including:

The JVM has currently no built-in support for Dynamically typed languages: the existing JVM instruction set is statically typed,[3] although the JVM can be used to implement interpreters for dynamic languages. The JVM has a limited support for dynamically modifying existing classes and methods; this currently only works in a debugging environment. However, new classes and methods can be added dynamically.

Built-in support for dynamic languages is currently planned for Java 7.[4]

Bytecode verifier

A basic philosophy of Java is that it is inherently "safe" from the standpoint that no user program can "crash" the host machine or otherwise interfere inappropriately with other operations on the host machine, and that it is possible to protect certain functions and data structures belonging to "trusted" code from access or corruption by "untrusted" code executing within the same JVM. Furthermore, common programmer errors that often lead to data corruption or unpredictable behavior such as accessing off the end of an array or using an uninitialized pointer are not allowed to occur. Several features of Java combine to provide this safety, including the class model, the garbage-collected heap, and the verifier.

The JVM verifies all bytecode before it is executed. This verification consists primarily of three types of checks:

  • Branches are always to valid locations
  • Data is always initialized and references are always type-safe
  • Access to "private" or "package private" data and methods is rigidly controlled.

The first two of these checks take place primarily during the "verification" step that occurs when a class is loaded and made eligible for use. The third is primarily performed dynamically, when data items or methods of a class are first accessed by another class.

The verifier permits only some bytecode sequences in valid programs, e.g. a jump (branch) instruction can only target an instruction within the same function or method. Furthermore, the verifier ensures that any given instruction operates on a fixed stack location[5], allowing the JIT compiler to transform stack accesses into fixed register accesses. Because of this, the fact that JVM is a stack architecture does not imply a speed penalty for emulation on register-based architectures when using a JIT compiler. In the face of the code-verified JVM architecture, it makes no difference to a JIT compiler whether it gets named imaginary registers or imaginary stack positions that need to be allocated to the target architecture's registers. In fact, code verification makes the JVM different from a classic stack architecture whose efficient emulation with a JIT compiler is more complicated and typically carried out by a slower interpreter.

Code verification also ensures that arbitrary bit patterns cannot get used as an address. Memory protection is achieved without the need for a Memory management unit (MMU). Thus, JVM is an efficient way of getting memory protection on simple architectures that lack an MMU. This is analogous to managed code in Microsoft's .NET Common Language Runtime, and conceptually similar to capability architectures such as the Plessey 250, and IBM System/38.

Bytecode instructions

The JVM has instructions for the following groups of tasks:

The aim is binary compatibility. Each particular host operating system needs its own implementation of the JVM and runtime. These JVMs interpret the byte code semantically the same way, but the actual implementation may be different. More complicated than just the emulation of bytecode is compatible and efficient implementation of the Java core API that has to be mapped to each host operating system.

Secure execution of remote code

A virtual machine architecture allows very fine-grained control over the actions that code within the machine is permitted to take. This is designed to allow safe execution of untrusted code from remote sources, a model used by Java applets. Applets run within a VM incorporated into a user's browser, executing code downloaded from a remote HTTP server. The remote code runs in a restricted "sandbox", which is designed to protect the user from misbehaving or malicious code. Publishers can purchase a certificate with which to digitally sign applets as "safe", giving them permission to ask the user to break out of the sandbox and access the local file system, clipboard or network.

C to bytecode compilers

From the point of view of a compiler, the Java Virtual Machine is just another processor with an instruction set, Java bytecode, for which code can be generated. The JVM was originally designed to execute programs written in the Java language. However, the JVM provides an execution environment in the form of a bytecode instruction set and a runtime system that is general enough that it can be used as the target for compilers of other languages.

Because of its close association with the Java language, the JVM performs the strict runtime checks mandated by the Java specification. That requires C to bytecode compilers to provide their own "lax machine abstraction", for instance producing compiled code that uses a Java array to represent main memory (so pointers can be compiled to integers), and linking the C library to a centralized Java class that emulates system calls. Most or all of the compilers listed below use a similar approach.

Several C to bytecode compilers exist:

  • NestedVM translates C to MIPS machine language first before converting to Java bytecode.
  • Cybil works similarly to NestedVM but targets J2ME devices.
  • LLJVM compiles C to LLVM IR, which is then translated to JVM bytecode.
  • C2J is also GCC-based, but it produces intermediary Java source code before generating bytecode[6]. Supports the full ANSI C runtime.
  • Axiomatic Multi-Platform C supports full ANSI C 1989, SWT, and J2ME CDC 1.1 for mobile devices.
  • Java Backend for GCC, possibly the oldest project of its kind, was developed at the The University of Queensland in 1999.
  • Javum is an attempt to port the full GNU environment to the JVM, and includes one of the above compilers packaged with additional utilities.
  • egcs-jvm appears to be an inactive project.

Compilers targeting Java bytecode have been written for other programming languages, including Ada and COBOL.

Licensing

Starting with J2SE 5.0, changes to the JVM specification have been developed under the Java Community Process as JSR 924[7]. As of 2006, changes to specification to support changes proposed to the class file format (JSR 202[8]) are being done as a maintenance release of JSR 924. The specification for the JVM is published in book form,[9] known as "blue book". The preface states:

We intend that this specification should sufficiently document the Java Virtual Machine to make possible compatible clean-room implementations. Sun provides tests that verify the proper operation of implementations of the Java Virtual Machine.

Sun's JVM is called HotSpot. Clean-room Java implementations include Kaffe and IBM J9. Sun retains control over the Java trademark, which it uses to certify implementation suites as fully compatible with Sun's specification.

Heap

The Java Virtual Machine heap is the area of memory used by the JVM (and specifically HotSpot) for dynamic memory allocation[10]. The heap is split up into "generations":

  • The Young generation store short-lived Objects that are created and immediately Garbage collected.
  • Objects that persist longer are moved to the Old generation (also called Tenured generation).
  • The Permanent Generation is used for class definitions.

A separate area of the heap called Permanent generation (or permgen) is used to store class definitions and the associated Metadata[11][12]. There was originally no permanent generation, and Objects and classes were just stored together in the same area. But as class unloading occurs much more rarely than Objects are collected, moving class structures to a specific area allows significant performance improvements[11].

See also

Notes

  1. http://www.java.com/en/about/ Learn about Java Technology
  2. Tolksdorf, Robert (2005). "Languages for the Java VM". http://www.is-research.de/info/vmlanguages/. Retrieved 2008-06-08. 
  3. Nutter, Charles (2007-01-03). "InvokeDynamic: Actually Useful?". http://headius.blogspot.com/2007/01/invokedynamic-actually-useful.html. Retrieved 2008-01-25. 
  4. Krill, Paul (2008-01-31). "Sun's Da Vinci Machine broadens JVM coverage". http://www.infoworld.com/article/08/01/31/davinci-machine_1.html. Retrieved 2008-02-06. 
  5. "The Verification process". The Java Virtual Machine Specification. Sun Microsystems. 1999. http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#9766. Retrieved 2009-05-31. 
  6. http://tech.novosoft-us.com/product_c2j_faq.jsp
  7. JSR 924 – Specifies changes to the JVM specification starting with J2SE 5.0
  8. JSR 202 – Specifies a number of changes to the class file format
  9. The Java Virtual Machine Specification (the first and second editions are also available online)
  10. "Frequently Asked Questions about Garbage Collection in the Hotspot Java Virtual Machine". Sun Microsystems. 6 February 2003. http://java.sun.com/docs/hotspot/gc1.4.2/faq.html. Retrieved 7 February 2009. 
  11. 11.0 11.1 Masamitsu, Jon (28 November 2006). "Presenting the Permanent Generation". http://blogs.sun.com/jonthecollector/entry/presenting_the_permanent_generation. Retrieved 7 February 2009. 
  12. Nutter, Charles (11 September 2008). "A First Taste of InvokeDynamic". http://blog.headius.com/2008/09/first-taste-of-invokedynamic.html. Retrieved 7 February 2009. 

References

External links

Template:Java Virtual Machine Template:Java (Sun) Template:Sun Microsystems

ar:آلة جافا الافتراضية bs:Java Virtualna Mašina ca:Màquina Virtual Java cs:Java Virtual Machine de:Java Virtual Machine es:Máquina virtual Java fa:ماشین مجازی جاوا fr:Machine virtuelle Java hi:जावा आभासी मशीन ko:자바 가상 머신 hr:Java (virtualni stroj) it:Macchina virtuale Java he:Java Virtual Machine hu:Java virtuális gép ml:ജാവ വിര്‍ച്ച്വല്‍ മെഷീന്‍ nl:Java Virtual Machine ja:Java仮想マシン pl:Wirtualna maszyna Javy pt:Máquina virtual Java ru:Java Virtual Machine sq:Java Virtual Machine simple:Java Virtual Machine sh:Java (virtualni stroj) sv:Java Virtual Machine uk:Віртуальна машина Java zh:Java虚拟机

If you like SEOmastering Site, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...