hotspot/src/share/vm/runtime/arguments.cpp
changeset 1889 24b003a6fe46
parent 1676 d80e69372634
child 1907 405ab5976b58
equal deleted inserted replaced
1888:bbf498fb4354 1889:24b003a6fe46
  1359       FLAG_SET_DEFAULT(AutoBoxCacheMax, 20000);
  1359       FLAG_SET_DEFAULT(AutoBoxCacheMax, 20000);
  1360     }
  1360     }
  1361 
  1361 
  1362     // Feed the cache size setting into the JDK
  1362     // Feed the cache size setting into the JDK
  1363     char buffer[1024];
  1363     char buffer[1024];
  1364     sprintf(buffer, "java.lang.Integer.IntegerCache.high=%d", AutoBoxCacheMax);
  1364     sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
  1365     add_property(buffer);
  1365     add_property(buffer);
  1366   }
  1366   }
  1367   if (AggressiveOpts && FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
  1367   if (AggressiveOpts && FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
  1368     FLAG_SET_DEFAULT(DoEscapeAnalysis, true);
  1368     FLAG_SET_DEFAULT(DoEscapeAnalysis, true);
  1369   }
  1369   }