6928081: G1: rename parameters common with CMS

Rename marking stack sizing flags to be common between G1 and CMS

Reviewed-by: ysr, tonyp
This commit is contained in:
Jon Masamitsu 2010-02-24 07:00:33 -08:00
parent 77b2dfce1d
commit f254745228
9 changed files with 108 additions and 34 deletions

View file

@ -343,6 +343,12 @@ class Arguments : AllStatic {
static ArgsRange check_memory_size(julong size, julong min_size);
static ArgsRange parse_memory_size(const char* s, julong* long_arg,
julong min_size);
// Parse a string for a unsigned integer. Returns true if value
// is an unsigned integer greater than or equal to the minimum
// parameter passed and returns the value in uintx_arg. Returns
// false otherwise, with uintx_arg undefined.
static bool parse_uintx(const char* value, uintx* uintx_arg,
uintx min_size);
// methods to build strings from individual args
static void build_jvm_args(const char* arg);