comparison src/share/vm/runtime/arguments.cpp @ 10415:1c77d0732233

Remove completely UseCompressedOops args
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Tue, 18 Jun 2013 19:30:58 +0200
parents 4abd6387a612
children ff3c23a329ed
comparison
equal deleted inserted replaced
10414:72eafe3a1c34 10415:1c77d0732233
2095 #if INCLUDE_NMT 2095 #if INCLUDE_NMT
2096 } 2096 }
2097 #endif 2097 #endif
2098 } 2098 }
2099 #ifdef GRAAL 2099 #ifdef GRAAL
2100 if (UseCompressedOops) {
2101 if (IgnoreUnrecognizedVMOptions) {
2102 warning("UseCompressedOops is disabled, because it is not supported by Graal");
2103 FLAG_SET_CMDLINE(bool, UseCompressedOops, false);
2104 } else {
2105 status = true;
2106 FLAG_SET_CMDLINE(bool, UseCompressedOops, true);
2107 }
2108 } else {
2109 // This prevents the flag being set to true by set_ergonomics_flags()
2110 FLAG_SET_CMDLINE(bool, UseCompressedOops, false);
2111 }
2112
2113 if (UseCompressedKlassPointers) { 2100 if (UseCompressedKlassPointers) {
2114 if (IgnoreUnrecognizedVMOptions) { 2101 if (IgnoreUnrecognizedVMOptions) {
2115 warning("UseCompressedKlassPointers is disabled, because it is not supported by Graal"); 2102 warning("UseCompressedKlassPointers is disabled, because it is not supported by Graal");
2116 FLAG_SET_CMDLINE(bool, UseCompressedKlassPointers, false); 2103 FLAG_SET_CMDLINE(bool, UseCompressedKlassPointers, false);
2117 } else { 2104 } else {