转载

GraalVM 社区版 1.0 RC7,新一代高性能跨语言虚拟机

GraalVM 社区版 1.0 RC7 已发布。

GraalVM 是由 Oracle 开源的新一代高性能跨语言虚拟机,用于运行 JavaScript、Python 3、Ruby、R、基于 JVM 的语言,如 Java、Scala、Kotlin 和基于 LLVM 的语言,如 C 和 C++。

GraalVM 消除了编程语言之间的隔离,并支持共享运行时的互操作性。它可以独立运行,也可以在 OpenJDK、Node、Oracle 或者 MySQL 上运行。

GraalVM 整个平台包含多个组件:

  • Graal:一个 由 Java 语言编写的 JIT 编译器

  • SubstrateVM:一个对执行容器抽象层的轻量级封装

  • Truffle:一个用于构建语言解析器的工具集和 API

语言支持

下载包括以下语言引擎:

  • JavaScript— Graal.js 是一个 JavaScript 解释器/编译器,能够在 JVM 上运行 Node.js 应用

  • FastR— R 语言解释器/编译器

  • RubyTruffle— 支持 Ruby 且性能优于 Ruby

  • SimpleLanguage— 一个有关如何使用 Graal API 的示例

好处

  • 性能— Graal 结合了我们对编译器技术的研究,在一些负载上提供比传统 JVM 更好的峰值性能

  • 语言互操作性— 用 Graal 执行的语言可以互相调用,可以使用来自其他语言的库

用法

只需下载 OTN 预览版并将其用作 JDK。它经过预先配置,使用 Graal 作为默认的 Java 编译器,包括命令行程序 nodejrb 和  R ,可用于取代 NodeJS、Ruby 和 R。

1.0 RC7 针对每门语言都新增了不少新特性 ——

GraalVM for Java developers (GraalVM + compiler)

Added the virtualization of Unsafe compare and swap calls, for more details see  GH-636 .

Note that due do the issue with the underlying platform Java Mission control freezes at startup on MacOS. Because of that we removed the jmc utility from the distribution. For more information and workarounds please see the  JMC known issues page .

Native image generation

  • Support for the Java security framework, see JCA-SECURITY-SERVICES.md for the details.

  • Support for https URL connections, see  URL-PROTOCOLS.md for more details.

JavaScript

  • Improved support for sharing of shapes between Contexts with the same Engine, which allows to reuse ASTs and objects across different manually created contexts.

  • Support for BigInteger typed TypedArrays.

下载地址 https://github.com/oracle/graal/releases/tag/vm-1.0.0-rc7

发布说明  http://www.graalvm.org/docs/release-notes/#10-rc6

开发团队表示,在发布 1.0 稳定版前,更新主要都是围绕提升稳定性来进行。

原文  https://www.oschina.net/news/100548/graalvm-1-0-rc7-released
正文到此结束
Loading...