comparison src/share/vm/runtime/arguments.cpp @ 8507:c92949b1ec8a

-Changes after CR-243
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Fri, 22 Mar 2013 12:08:24 +0100
parents c3657d00e343
children b9a918201d47
comparison
equal deleted inserted replaced
8506:c3657d00e343 8507:c92949b1ec8a
2094 } 2094 }
2095 } else { 2095 } else {
2096 // This prevents the flag being set to true by set_ergonomics_flags() 2096 // This prevents the flag being set to true by set_ergonomics_flags()
2097 FLAG_SET_CMDLINE(bool, UseCompressedKlassPointers, false); 2097 FLAG_SET_CMDLINE(bool, UseCompressedKlassPointers, false);
2098 } 2098 }
2099 if (UseG1GC) {
2100 if (IgnoreUnrecognizedVMOptions) {
2101 warning("UseG1GC is still experimental in Graal, use SerialGC instead ");
2102 FLAG_SET_CMDLINE(bool, UseG1GC, true);
2103 } else {
2104 warning("UseG1GC is still experimental in Graal, use SerialGC instead ");
2105 status = true;
2106 }
2107 } else {
2108 // This prevents the flag being set to true by set_ergonomics_flags()
2109 FLAG_SET_CMDLINE(bool, UseG1GC, false);
2110 }
2099 2111
2100 if (!ScavengeRootsInCode) { 2112 if (!ScavengeRootsInCode) {
2101 warning("forcing ScavengeRootsInCode non-zero because Graal is enabled"); 2113 warning("forcing ScavengeRootsInCode non-zero because Graal is enabled");
2102 ScavengeRootsInCode = 1; 2114 ScavengeRootsInCode = 1;
2103 } 2115 }