diff src/share/vm/runtime/arguments.cpp @ 22601:bc2d4dac0cd3

JVMCI options are now passed as individual -Djvmci.option.<name>=<value> arguments on the command line instead of -Djvmci.options=<multiple options settings separated by spaces>
author Doug Simon <doug.simon@oracle.com>
date Tue, 22 Sep 2015 22:29:28 +0200
parents be44a5efeaff
children d3930fdd1eb3
line wrap: on
line diff
--- a/src/share/vm/runtime/arguments.cpp	Tue Sep 22 11:57:49 2015 -0700
+++ b/src/share/vm/runtime/arguments.cpp	Tue Sep 22 22:29:28 2015 +0200
@@ -3570,6 +3570,11 @@
   scp_p->expand_endorsed();
 
 #if INCLUDE_JVMCI
+  jint res = JVMCIRuntime::save_options(_system_properties);
+  if (res != JNI_OK) {
+    return res;
+  }
+
   if (!UseJVMCIClassLoader) {
     // Append lib/jvmci/*.jar to boot class path
     char jvmciDir[JVM_MAXPATHLEN];