Jikes RVM

Not to be confused with Jikes.
Jikes RVM
Developer(s) Jikes RVM Team and Contributors
Stable release
3.1.4 / February 18, 2016 (2016-02-18)
Development status Active
Written in Java
Operating system Unix-like
Type Java Virtual Machine, library
License Eclipse Public License
Website www.jikesrvm.org

Jikes RVM (Jikes Research Virtual Machine) is a mature open source virtual machine that runs Java programs. Unlike most other JVMs, it is written in Java, a style of implementation termed meta-circular.

History

Bootstrap

Being meta-circular Jikes RVM requires a bootstrap JVM to run upon to create a boot image. The boot image is a view of the objects Jikes RVM requires to boot created using reflection in the bootstrap JVM. A small C loader is responsible for loading the boot image at runtime.

VM Magic

VM Magic is where the compiler generates different code for a class than the bytecodes within that class should perform. VM Magic classes allow direct access to memory and are key to the Memory Management Toolkits performance. The VM Magic classes reside in the org.vmmagic package and have been reused in other Java projects.

Memory Management Toolkit

The Memory Management Toolkit (MMTk) is a collection of precise garbage collectors that have been used within Jikes RVM and other projects such as the Singularity operating system and the Rotor software project.[2] As with the rest of the Jikes RVM the implementation is in Java, but the main dependence is on VM Magic.

Class Libraries

Either Apache Harmony or GNU Classpath class libraries can be used with Jikes RVM, with experimental support for OpenJDK's class library.

Compilers

Jikes RVM uses a fast baseline compiler to quickly generate code for a particular architecture. Adaptive compilation then recompiles code with an optimizing compiler with features such as on-stack replacement (OSR). The adaptive compilation system uses a cost-benefit analysis model.

Runtime

Jikes RVM's runtime has many innovative features including mechanisms for fast locking, a collaborative scheduling mechanism and support for fast exception gathering and dispatch.

Processors

The PowerPC (or ppc) and IA-32 (or Intel x86, 32-bit) instruction set architectures are supported by Jikes RVM.

Research

Since it is a research project, the emphasis of Jikes RVM is on researching new technologies, as is apparent from the scientific publications it has spawned -- over 220 papers as of 2015.[3]

Jikes RVM has also participated in the Google Summer of Code 2007, 2008, 2010, 2011 and 2012.

See also

References

The Jikes Research Virtual Machine project: Building an open-source research community, IBM Systems Journal, Vol 44, No 2, 2005. http://www.research.ibm.com/journal/sj/442/alpern.pdf

External links

This article is issued from Wikipedia - version of the 9/21/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.