About

Goals

The main goals of Jainja are:

Motivation

Over time, many excellent JVMs have been developed. However, portability remains a significant challenge. 

Mainstream JVMs

Some mainstream JVMs are highly portable if the following conditions are met:

Issues:

Specific JVMs

To address these portability concerns, some JVMs were implemented in languages that are native to their target platforms (e.g., JavaScript or C#).

However, this introduces another issue: if the target platform changes, the entire framework and language must often be re-ported.

Concepts

A JVM Focused on Low-Level Compliance

Jainja is a JVM that aims to comply with official specifications at a low level, ensuring support for all bytecodes. This approach allows the core logic of an application to run anywhere, adhering to Java's "Write Once, Run Anywhere" (WORA) philosophy.

However, portability is Jainja’s primary goal. To achieve this, only a subset of the standard Java libraries is supported. Developers must adapt their code to work within this subset. WORA is respected only in one direction: if the code runs on Jainja, it will work on Oracle JDK/OpenJDK, but the reverse is unlikely.

Why Not Use the Standard OpenJDK Library?

The OpenJDK assumes certain conditions that make it difficult to port Java to non-standard platforms:

Due to these assumptions, previous attempts to port Java to other platforms have led to JVMs that only support a subset of the Java ecosystem:

Jainja takes a different approach: it supports all bytecodes while maintaining a sufficiently large subset of the libraries so that GUI frameworks like MIDP, AWT, Swing, or Codename One only require adaptations rather than complete rewrites.

Thus, a Swing application using all OpenJDK features is unlikely to work directly on Jainja (or on Android, GWT, etc.), but it is possible with code adaptations.

A Different Approach to Portability: Transpilation

Instead of porting Java compilation tools to various platforms, Jainja translates the JVM into different languages via transpilation:

Meta-Circularity ("Do Not Reinvent the Wheel")

Inspired by meta-circular interpreters, Jainja leverages existing features of the host language: instead of implementing its own object model and garbage collector, Jainja relies on the host language’s built-in mechanisms.

Pure Java Libraries ("Write Once, Run Anywhere")

Unlike standard JVMs that implement native components in C/C++, Jainja prioritizes Java-based implementations. Only a thin native layer is used when strictly necessary.

Green Threads ("DIY" to Keep It Simple)

Jainja implements threads at the VM level, making native multi-threading unnecessary.

Features

Jainja currently supports all major features of the Java 1.8 specifications.

Virtual Machine

Runtime: Supported Standard Core Libraries

GUI Toolkits

Conclusion

Jainja is designed for developers who want to run their applications with minimal effort on non-standard platforms. It is not intended for running complex GUI applications "out of the box" but can support them with adaptations.

By prioritizing portability over performance, Jainja offers a unique approach compared to mainstream JVMs.


Supported platforms