You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: compiler/src/jdk.graal.compiler.test/src/jdk/graal/compiler/replacements/test/InvokerSignatureMismatchTest.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ public void test() throws Throwable {
Copy file name to clipboardExpand all lines: docs/reference-manual/embedding/embed-languages.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -423,7 +423,7 @@ This table shows the level of optimizations the Java runtimes currently provide:
423
423
424
424
***Optimized:** Executed guest application code can be compiled and executed as highly efficient machine code at run time.
425
425
***Optimized with additional compiler passes:** Oracle GraalVM implements additional optimizations performed during runtime compilation. For example, it uses a more advanced inlining heuristic. This typically leads to better runtime performance and memory consumption.
426
-
***Optimized if enabled via experimental VM option:** Optimization is not enabled by default and must be enabled using `-XX:+EnableJVMCI` virtual machine option. In addition, to support compilation, the Graal compiler must be downloaded as a JAR file and put on the `--upgrade-module-path`. In this mode, the compiler runs as a Java application and may negatively affect the execution performance of the host application.
426
+
***Optimized if enabled via experimental VM option:** Optimization is not enabled by default and must be enabled using the `--add-modules=jdk.internal.vm.ci` virtual machine option. In addition, to support compilation on OpenJDK, the Graal compiler must be downloaded as a JAR file and put on the `--upgrade-module-path`. In this mode, the compiler runs as a Java application and may negatively affect the execution performance of the host application.
427
427
***No runtime optimizations:** With no runtime optimizations or if JVMCI is not enabled, the guest application code is executed in interpreter-only mode.
428
428
***JVMCI:** Refers to the [Java-Level JVM Compiler Interface](https://openjdk.org/jeps/243) supported by most Java runtimes.
0 commit comments