src/share/vm/runtime/arguments.cpp

changeset 2418
36c186bcc085
parent 2344
ac637b7220d1
child 2449
8f8dfba37802
equal deleted inserted replaced
2398:06e4b9c9db76 2418:36c186bcc085
2295 round_to((int)long_ThreadStackSize, K) / K); 2295 round_to((int)long_ThreadStackSize, K) / K);
2296 // -Xoss 2296 // -Xoss
2297 } else if (match_option(option, "-Xoss", &tail)) { 2297 } else if (match_option(option, "-Xoss", &tail)) {
2298 // HotSpot does not have separate native and Java stacks, ignore silently for compatibility 2298 // HotSpot does not have separate native and Java stacks, ignore silently for compatibility
2299 // -Xmaxjitcodesize 2299 // -Xmaxjitcodesize
2300 } else if (match_option(option, "-Xmaxjitcodesize", &tail)) { 2300 } else if (match_option(option, "-Xmaxjitcodesize", &tail) ||
2301 match_option(option, "-XX:ReservedCodeCacheSize=", &tail)) {
2301 julong long_ReservedCodeCacheSize = 0; 2302 julong long_ReservedCodeCacheSize = 0;
2302 ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize, 2303 ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize,
2303 (size_t)InitialCodeCacheSize); 2304 (size_t)InitialCodeCacheSize);
2304 if (errcode != arg_in_range) { 2305 if (errcode != arg_in_range) {
2305 jio_fprintf(defaultStream::error_stream(), 2306 jio_fprintf(defaultStream::error_stream(),
2306 "Invalid maximum code cache size: %s\n", 2307 "Invalid maximum code cache size: %s. Should be greater than InitialCodeCacheSize=%dK\n",
2307 option->optionString); 2308 option->optionString, InitialCodeCacheSize/K);
2308 describe_range_error(errcode); 2309 describe_range_error(errcode);
2309 return JNI_EINVAL; 2310 return JNI_EINVAL;
2310 } 2311 }
2311 FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize); 2312 FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
2312 // -green 2313 // -green

mercurial