27
27
import static jdk .vm .ci .common .InitTimer .timer ;
28
28
29
29
import java .io .PrintStream ;
30
- import java .util .HashMap ;
30
+ import java .util .Comparator ;
31
+ import java .util .List ;
31
32
import java .util .Map ;
32
33
import java .util .Set ;
33
34
42
43
43
44
import jdk .vm .ci .common .InitTimer ;
44
45
import jdk .vm .ci .common .NativeImageReinitialize ;
46
+ import org .graalvm .collections .EconomicSet ;
47
+ import org .graalvm .collections .MapCursor ;
48
+ import org .graalvm .nativeimage .ImageInfo ;
49
+ import org .graalvm .nativeimage .RuntimeOptions ;
45
50
46
51
/**
47
52
* The {@link #defaultOptions()} method returns the options values initialized in a HotSpot VM. The
@@ -112,8 +117,7 @@ public static EconomicMap<OptionKey<?>, Object> parseOptions() {
112
117
Map <String , String > savedProps = GraalServices .getSavedProperties ();
113
118
114
119
EconomicMap <String , String > compilerOptionSettings = EconomicMap .create ();
115
- // Need to use Map as it's a shared type between guest and host in LibGraal.
116
- Map <String , String > vmOptionSettings = new HashMap <>();
120
+ EconomicMap <String , String > vmOptionSettings = EconomicMap .create ();
117
121
118
122
for (Map .Entry <String , String > e : savedProps .entrySet ()) {
119
123
String name = e .getKey ();
@@ -168,14 +172,42 @@ private static String stripPrefix(String name, String prefix) {
168
172
}
169
173
170
174
/**
171
- * Substituted by {@code Target_jdk_graal_compiler_hotspot_HotSpotGraalOptionValues}.
172
- *
173
175
* @param settings unparsed libgraal option values
174
176
*/
175
- private static void notifyLibgraalOptions (Map <String , String > settings ) {
176
- System .err .printf ("WARNING: Ignoring the following libgraal VM option(s) while executing jargraal: %s%n" , String .join (", " , settings .keySet ()));
177
+ private static void notifyLibgraalOptions (EconomicMap <String , String > settings ) {
178
+ if (ImageInfo .inImageRuntimeCode ()) {
179
+ MapCursor <String , String > cursor = settings .getEntries ();
180
+ while (cursor .advance ()) {
181
+ String name = cursor .getKey ();
182
+ String stringValue = cursor .getValue ();
183
+ Object value ;
184
+ if (name .startsWith ("X" ) && stringValue .isEmpty ()) {
185
+ name = name .substring (1 );
186
+ value = stringValue ;
187
+ } else {
188
+ RuntimeOptions .Descriptor desc = RuntimeOptions .getDescriptor (name );
189
+ if (desc == null ) {
190
+ throw new IllegalArgumentException ("Could not find option " + name );
191
+ }
192
+ value = desc .convertValue (stringValue );
193
+ explicitOptions .add (name );
194
+ }
195
+ try {
196
+ RuntimeOptions .set (name , value );
197
+ } catch (RuntimeException ex ) {
198
+ throw new IllegalArgumentException (ex );
199
+ }
200
+ }
201
+ } else {
202
+ System .err .printf ("WARNING: Ignoring the following libgraal VM option(s) while executing jargraal: %s%n" , settings .toString ());
203
+ }
177
204
}
178
205
206
+ /**
207
+ * The set of libgraal options seen on the command line.
208
+ */
209
+ static EconomicSet <String > explicitOptions = EconomicSet .create ();
210
+
179
211
private static OptionValues initializeOptions () {
180
212
EconomicMap <OptionKey <?>, Object > values = parseOptions ();
181
213
OptionValues options = new OptionValues (values );
@@ -188,17 +220,21 @@ private static OptionValues initializeOptions() {
188
220
static void printProperties (OptionValues compilerOptions , PrintStream out ) {
189
221
boolean all = HotSpotGraalCompilerFactory .Options .PrintPropertiesAll .getValue (compilerOptions );
190
222
compilerOptions .printHelp (OptionsParser .getOptionsLoader (), out , GRAAL_OPTION_PROPERTY_PREFIX , all );
191
- if (all ) {
192
- printLibgraalProperties (out , LIBGRAAL_VM_OPTION_PROPERTY_PREFIX );
223
+ if (all && ImageInfo .inImageRuntimeCode ()) {
224
+ if (ImageInfo .inImageRuntimeCode ()) {
225
+ Comparator <RuntimeOptions .Descriptor > comparator = Comparator .comparing (RuntimeOptions .Descriptor ::name );
226
+ RuntimeOptions .listDescriptors ().stream ().sorted (comparator ).forEach (d -> {
227
+ String assign = explicitOptions .contains (d .name ()) ? ":=" : "=" ;
228
+ OptionValues .printHelp (out , LIBGRAAL_VM_OPTION_PROPERTY_PREFIX ,
229
+ d .name (),
230
+ RuntimeOptions .get (d .name ()),
231
+ d .valueType (),
232
+ assign ,
233
+ "[community edition]" ,
234
+ d .help (),
235
+ List .of ());
236
+ });
237
+ }
193
238
}
194
239
}
195
-
196
- /**
197
- * Substituted by {@code Target_jdk_graal_compiler_hotspot_HotSpotGraalOptionValues}.
198
- *
199
- * @param out where help is to be printed
200
- * @param prefix system property prefix for libgraal VM options
201
- */
202
- private static void printLibgraalProperties (PrintStream out , String prefix ) {
203
- }
204
240
}
0 commit comments