GraalVM is a universal virtual machine for running applications written in JavaScript, Python, Ruby, R, JVM-based languages like Java, Scala, Clojure, Kotlin, and LLVM-based languages such as C and C++.
The project website at https://www.graalvm.org describes how to get started, how to stay connected, and how to contribute.
The GraalVM main source repository includes the following components:
-
Graal SDK contains long term supported APIs of GraalVM.
-
Graal compiler written in Java that supports both dynamic and static compilation and can integrate with the Java HotSpot VM or run standalone.
-
Truffle language implementation framework for creating languages and instrumentations for GraalVM.
-
Tools contains a set of tools for GraalVM languages implemented with the instrumentation framework.
-
Substrate VM framework that allows ahead-of-time (AOT) compilation of Java applications under closed-world assumption into executable images or shared objects.
-
Sulong is an engine for running LLVM bitcode on GraalVM.
-
TRegex is an implementation of regular expressions which leverages GraalVM for efficient compilation of automata.
-
VM includes the components to build a modular GraalVM image.
GraalVM allows running of following languages which are being developed and tested in related repositories with GraalVM core to run on top of it using Truffle and Graal compiler. These are:
- Graal.JS - JavaScript (ECMAScript 2018 compatible) and node.js 10.15.0
- FastR - R Language 3.5.1
- GraalPython - Python 3.7
- TruffleRuby - Ruby Programming Language 2.4.4
- SimpleLanguage - A simple demonstration language for the GraalVM.
Each GraalVM component is licensed:
- Truffle and its dependency Graal SDK are licensed under the Universal Permissive License.
- Tools project is licensed under the GPL 2 with Classpath exception.
- TRegex project is licensed under the GPL 2 with Classpath exception.
- The Graal compiler is licensed under the GPL 2 with Classpath exception.
- Substrate VM is licensed under the GPL 2 with Classpath exception.
- Sulong is licensed under 3-clause BSD.
- VM is licensed under the GPL 2 with Classpath exception.