src/share/vm/runtime/arguments.cpp

changeset 5151
91eba9f82325
parent 5126
2f9ac66165e6
child 5224
c07dd9be16e8
equal deleted inserted replaced
5130:7ec426e29e4c 5151:91eba9f82325
2627 option->optionString, InitialCodeCacheSize/K); 2627 option->optionString, InitialCodeCacheSize/K);
2628 describe_range_error(errcode); 2628 describe_range_error(errcode);
2629 return JNI_EINVAL; 2629 return JNI_EINVAL;
2630 } 2630 }
2631 FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize); 2631 FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
2632 //-XX:IncreaseFirstTierCompileThresholdAt=
2633 } else if (match_option(option, "-XX:IncreaseFirstTierCompileThresholdAt=", &tail)) {
2634 uintx uint_IncreaseFirstTierCompileThresholdAt = 0;
2635 if (!parse_uintx(tail, &uint_IncreaseFirstTierCompileThresholdAt, 0) || uint_IncreaseFirstTierCompileThresholdAt > 99) {
2636 jio_fprintf(defaultStream::error_stream(),
2637 "Invalid value for IncreaseFirstTierCompileThresholdAt: %s. Should be between 0 and 99.\n",
2638 option->optionString);
2639 return JNI_EINVAL;
2640 }
2641 FLAG_SET_CMDLINE(uintx, IncreaseFirstTierCompileThresholdAt, (uintx)uint_IncreaseFirstTierCompileThresholdAt);
2632 // -green 2642 // -green
2633 } else if (match_option(option, "-green", &tail)) { 2643 } else if (match_option(option, "-green", &tail)) {
2634 jio_fprintf(defaultStream::error_stream(), 2644 jio_fprintf(defaultStream::error_stream(),
2635 "Green threads support not available\n"); 2645 "Green threads support not available\n");
2636 return JNI_EINVAL; 2646 return JNI_EINVAL;

mercurial