OpenJDK / aarch32-port / jdk9-arm3264 / hotspot
changeset 12304:760fcb1e224d
Merge
author | ccheung |
---|---|
date | Mon, 14 Nov 2016 19:21:18 +0000 |
parents | d9e9bc313c5a 351f661b6080 |
children | 9835a0bc4c4b |
files | |
diffstat | 1 files changed, 16 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/share/vm/runtime/arguments.cpp Mon Nov 14 10:10:10 2016 -0800 +++ b/src/share/vm/runtime/arguments.cpp Mon Nov 14 19:21:18 2016 +0000 @@ -1315,22 +1315,31 @@ #if INCLUDE_CDS void Arguments::check_unsupported_dumping_properties() { assert(DumpSharedSpaces, "this function is only used with -Xshare:dump"); - const char* unsupported_properties[5] = { "jdk.module.main", + const char* unsupported_properties[] = { "jdk.module.main", + "jdk.module.limitmods", "jdk.module.path", "jdk.module.upgrade.path", - "jdk.module.addmods.0", - "jdk.module.limitmods" }; - const char* unsupported_options[5] = { "-m", + "jdk.module.addmods.0" }; + const char* unsupported_options[] = { "-m", + "--limit-modules", "--module-path", "--upgrade-module-path", - "--add-modules", - "--limit-modules" }; + "--add-modules" }; + assert(ARRAY_SIZE(unsupported_properties) == ARRAY_SIZE(unsupported_options), "must be"); + // If a vm option is found in the unsupported_options array with index less than the warning_idx, + // vm will exit with an error message. Otherwise, it will result in a warning message. + uint warning_idx = 2; SystemProperty* sp = system_properties(); while (sp != NULL) { - for (int i = 0; i < 5; i++) { + for (uint i = 0; i < ARRAY_SIZE(unsupported_properties); i++) { if (strcmp(sp->key(), unsupported_properties[i]) == 0) { + if (i < warning_idx) { vm_exit_during_initialization( "Cannot use the following option when dumping the shared archive", unsupported_options[i]); + } else { + warning( + "the %s option is ignored when dumping the shared archive", unsupported_options[i]); + } } } sp = sp->next();