GraalVM

From Wikipedia, the free encyclopedia
GraalVM
Developer(s)Oracle Corporation
Stable release
21.3.0[1] Edit this on Wikidata / 19 October 2021; 3 months ago (19 October 2021)
Repository
Written inJava
Operating systemLinux, Windows and macOS[2]
PlatformJava Virtual Machine
TypeJava dynamic compiler and runtime
LicenseCommunity Edition: GPLv2[3][4] Enterprise Edition: Trialware
Websitewww.graalvm.org

GraalVM is a Java VM and JDK based on HotSpot/OpenJDK, implemented in Java. It supports additional programming languages and execution modes, like ahead-of-time compilation of Java applications for fast startup and low memory footprint. The first production-ready version, GraalVM 19.0, was released in May 2019.[5] The most recent version is GraalVM 21.3.0, made available in October 2021.

Major differentiators of GraalVM compared to the base JDK are:

  • GraalVM Compiler, a JIT compiler for Java
  • GraalVM Native Image, allowing the ahead-of-time compilation of Java applications
  • Truffle Language Implementation framework and the GraalVM SDK, to implement additional programming language runtimes
  • LLVM Runtime and JavaScript Runtime

Project goals[]

  • To improve the performance of Java virtual machine-based languages to match the performance of native languages.[6][7]
  • To reduce the startup time of JVM-based applications by compiling them ahead-of-time with GraalVM Native Image technology.
  • To enable GraalVM integration into the Oracle Database, OpenJDK, Node.js, Android/iOS, and to support similar custom embeddings.
  • To allow freeform mixing of code from any programming language in a single program, billed as "polyglot applications".[6][8]
  • To include an easily extended set of "polyglot programming tools".[6][9]

History[]

GraalVM has its roots in the Maxine Virtual Machine project at Sun Microsystems Laboratories (now Oracle Labs). The goal was to write a Java virtual machine in Java itself, hoping to free the development from the problems of developing in C++, particularly manual memory management, and benefit from meta-circular optimizations. Upon realizing that writing everything in Java was too ambitious as a first step, the decision was taken to focus on the compiler only and hook it into Hotspot, to reuse as much as possible the Hotspot runtime. The GraalVM compiler was started by manually converting the code of the Hotspot client compiler (named "C1") into Java, replacing the previous Maxine compiler.[10]

Graal was included in HotSpot-based Java VM releases like OpenJDK from Java 9 through 15, but was removed in Java 16 for lack of use.[11]

Releases[]

GraalVM is production-ready software, available as Community Edition for an open-source license and as Oracle GraalVM Enterprise Edition accessible by accepting the OTN License Agreement Oracle GraalVM Enterprise Edition Including License for Early Adopter Versions.[12] Oracle Corporation announced the release of Oracle GraalVM Enterprise Edition on 8 May 2019.[13] GraalVM can substitute a default JDK on Linux and macOS platforms on x86 64-bit systems.

GraalVM 20[]

GraalVM 20.3.0

GraalVM 20.3.0 was released in November 2020.[14] It was marked as the first LTS enterprise version of GraalVM and as the final release for 2020. This version supports code sharing in the GraalVM LLVM runtime, allowing the AST and compiled code of common bitcode libraries to be shared between multiple contexts within a single engine.

GraalVM 20.1.0

GraalVM 20.1.0 was released in May 2020.[15] It included several improvement for many of the components. Besides performance improvements, usability fixes for native-image were published. The JavaScript engine supports all ECMAScript 2020 mode features by default. The regular expression engine (TRegex) used by JavaScript and Python supports all expressions now. Ruby (TruffleRuby) improved in compatibility with native gems.

GraalVM 20.0.0

GraalVM 20.0.0 was released in February 2020.[16] It improved in its Windows support, brought an enhanced native-image tool and improved the tooling support, among many detailed changes in the compiler and supported languages.

GraalVM 19[]

GraalVM 19.0.0

The support on Windows is currently under development and released as an early adopter functionality in GraalVM 19.0.

GraalVM 19.0 is based on top of JDK version 8u212.

Components[]

The GraalVM compiler is shipped with the components of a normal Java virtual machine (OpenJDK). Additional components are included in GraalVM to support new execution modes (GraalVM Native Image) or programming languages (LLVM runtime, GraalVM JavaScript as a potential replacement to the deprecated Nashorn engine, TRegex as a regular expression engine).

GraalVM Compiler[]

The GraalVM Compiler is a modern Java just-in-time compiler. It complements or replaces the existing compilers (C1/C2 in HotSpot). In contrast to those existing compilers, the GraalVM compiler is written in modular, maintainable and extendable fashion in Java itself.

It is released under GPL version 2 with the classpath exception.

GraalVM Native Image[]

GraalVM Native Image is an ahead-of-time compilation technology that produces executable binaries of class files.[17] It is released as an early adopter plugin, which means it is production-ready but may include backport incompatible updates in the future releases.

This functionality supports JVM-based languages, but can optionally execute dynamic languages, developed on top of GraalVM with Truffle framework. The executable file does not run on a JVM and uses necessary runtime components as thread scheduling or GC from “Substrate VM” - a trivial version of a virtual machine. Since the resulting native binary includes application classes, JDK dependencies and libraries already, the startup and execution time reduces significantly.

GraalVM Native Image is officially supported by the Fn, Gluon, Helidon, Micronaut, Picocli, Quarkus, Vert.x and Spring Boot Java frameworks.[18] [19] In September 2016, Oracle detailed plans to add ahead-of-time compilation to the OpenJDK using the GraalVM compiler for Java 9.[20][21] This proposal, tracked by the JEP 295: Ahead-of-Time Compilation, was included in Java 9.[22] The experimental use of GraalVM as a just-in-time compiler was added for the Linux x86-64 platform for Java 10.[23]

The jaotc command creates a Native Image.[24] The experimental -XX:+EnableJVMCIProduct flag enables the use of Graal JIT.[25]

Truffle Language Implementation Framework[]

In association with GraalVM, Oracle Labs developed a language abstract syntax tree interpreter called "Truffle" which would allow it to implement languages on top of the GraalVM.[26][27] Many languages have been implemented in Truffle, including a C interpreter claiming to be about as fast as GCC and Clang.[28]

The Truffle framework and its dependent part, GraalVM SDK, are released under the , version 1.0, to encourage use of the framework for projects which do not want to be bound by the copyright or other parent rights.

Instrumentation-based Tool Support[]

A major advantage of the GraalVM ecosystem is language-agnostic, fully dynamic instrumentation support built-in directly into the VM runtime. Execution events can be captured by API clients with overhead that is extremely low in fully optimized code.[29][30]

The core GraalVM installation provides a language-agnostic debugger, profiler, heap viewer, and others based on instrumentation and other VM support.[9] GraalVM also includes a backend implementation of the Chrome Inspector remote debugging protocol.[31] Although designed originally for JavaScript debugging, it can be used to debug all GraalVM languages from a browser.

Language and Runtime Support[]

GraalVM is written in and for the Java ecosystem. It can execute applications written in all languages that compile to the Java bytecode format, e.g. Java, Scala, Kotlin, and more.

Based on Truffle Language Implementation framework additional languages can be supported in GraalVM.

Support for additional languages can be implemented by users of GraalVM. Some notable third-party language implementations are grCuda,[39] SOMns,[40] TruffleSqueak,[41][42] and Yona.[43]

References[]

  1. ^ https://www.graalvm.org/release-notes/21_3/.
  2. ^ "Downloads".
  3. ^ "GraalVM FAQ". Retrieved 2018-04-25.
  4. ^ "graal/README.md". Retrieved 2018-04-25.
  5. ^ "For Building Programs That Run Faster Anywhere: Oracle GraalVM Enterprise Edition". Oracle Corporation. Retrieved 2022-01-21.
  6. ^ a b c "Why GraalVM". Retrieved 2018-04-25.
  7. ^ "Graal : Un compilateur dynamique pour Java". lemondeinformatique.fr. 2012-02-13. Retrieved 2013-08-23.
  8. ^ "Reference Manual for Polyglot Applications". Retrieved 2018-04-25.
  9. ^ a b "GraalVM Debugging and Monitoring Tools". www.graalvm.org. Retrieved 2019-04-08. GraalVM provides a set of tools for developers, integrators, and IT administrators to debug and monitor GraalVM and deployed applications.
  10. ^ ""Meta-Circularity is Near", GraalVM, Truffle--airhacks.fm podcast : Adam Bien's Weblog". Archived from the original on 2020-05-29.
  11. ^ "[JDK-8255616] Removal of experimental features AOT and Graal JIT". bugs.openjdk.java.net. Retrieved 2021-03-13.
  12. ^ [1]
  13. ^ "GraalVM 19.3: Announcing GraalVM 19.3 with JDK 11 Support". Oracle Corporation. Retrieved 2019-11-25.
  14. ^ Šelajev, Oleg (2020-11-20). "GraalVM 20.3 is available". Medium. Retrieved 2020-12-31.
  15. ^ GraalVM 20.1
  16. ^ A look at GraalVM 20.0: better Windows support, better Native Images, better tooling
  17. ^ [2]
  18. ^ "GraalVM Open Source Ecosystem". Oracle Corporation. Retrieved 2019-09-11.
  19. ^ "Spring Native Image documentation". Spring_Framework. Retrieved 2021-10-26.
  20. ^ "Ahead-of-Time (AOT) Compilation May Come to OpenJDK HotSpot in Java 9". InfoQ.com. 2016-10-01. Retrieved 2016-10-06. AOT brings about a new tool called ‘jaotc' which uses Graal as the backend (to generate code)
  21. ^ Vladimir Kozlov (2016-09-14). "JDK-8166089: Ahead-of-Time Compilation". Oracle Corporation. Retrieved 2016-10-06. Compile an application's Java classes to native code prior to launching the virtual machine.
  22. ^ Vladimir Kozlov (2016-10-13). "JEP 295: Ahead-of-Time Compilation". Oracle Corporation. Retrieved 2016-10-13. Compile Java classes to native code prior to launching the virtual machine.
  23. ^ Vladimir Kozlov (2017-10-20). "JEP 317: Experimental Java-Based JIT Compiler". Oracle Corporation. Retrieved 2018-01-21. JEP 317: Experimental Java-Based JIT Compiler
  24. ^ "OpenJDK: Graal". openjdk.java.net.
  25. ^ "[JDK-8232118] Add JVM option to enable JVMCI compilers in product mode". bugs.openjdk.java.net.
  26. ^ "Truffle: A Self-Optimizing Runtime System" (PDF). Oracle Corporation. Retrieved 2013-08-23.
  27. ^ "Truffle served in a Holy Graal: Graal and Truffle for polyglot language interpretation on the JVM". 2017-12-05. Retrieved 2018-04-25.
  28. ^ "Truffle: Languages and Material". Gist.
  29. ^ Van De Vanter, Michael; Seaton, Chris; Haupt, Michael; Humer, Christian; Würthinger, Thomas (March 9, 2018). "Fast, Flexible, Polyglot Instrumentation Support for Debuggers and other Tools". The Art, Science, and Engineering of Programming. 2 (3, Article 14): 30. arXiv:1803.10201v1. Bibcode:2018arXiv180310201V. doi:10.22152/programming-journal.org/2018/2/14. S2CID 4382172.
  30. ^ "Getting started with Instruments in GraalVM". www.graalvm.org. Retrieved 2019-04-08. Truffle instruments can track very fine-grained VM-level runtime events to profile, inspect, and analyze the runtime behavior of applications running on GraalVM.
  31. ^ "Chrome DevTools". developers.google.com. Retrieved 2019-04-08. Chrome DevTools is a set of web developer tools built directly into the Google Chrome browser. DevTools can help you edit pages on-the-fly and diagnose problems quickly, which ultimately helps you build better websites, faster.
  32. ^ GraalVM JavaScript github repository
  33. ^ TruffleRuby github repository
  34. ^ GraalVM FastR github repository
  35. ^ GraalPython github repository
  36. ^ GraalVM LLVM Runtime github repository
  37. ^ "GraalWasm github repository".
  38. ^ Prokopec, Aleksandar (2019-12-02). "Announcing GraalWasm — a WebAssembly engine in GraalVM". Medium. Retrieved 2020-01-15.
  39. ^ grCuda GitHub repository
  40. ^ SOMns GitHub repository
  41. ^ TruffleSqueak GitHub repository
  42. ^ Niephaus, Fabio; Felgentreff, Tim; Hirschfeld, Robert (2019). "GraalSqueak: Toward a Smalltalk-based Tooling Platform for Polyglot Programming". Proceedings of the 16th ACM SIGPLAN International Conference on Managed Programming Languages and Runtimes - MPLR 2019. ACM Digital Library. pp. 14–26. doi:10.1145/3357390.3361024. ISBN 9781450369770. S2CID 204728643. Retrieved 2020-11-08.
  43. ^ Yona Language

External links[]

Official website Edit this at Wikidata

Retrieved from ""