--- old/src/share/vm/runtime/arguments.cpp 2016-03-30 22:57:38.588641657 +0900 +++ new/src/share/vm/runtime/arguments.cpp 2016-03-30 22:57:38.410641787 +0900 @@ -786,7 +786,7 @@ } // Parses a memory size specification string. -static bool atomull(const char *s, julong* result) { +bool Arguments::atomull(const char *s, julong* result) { julong n = 0; int args_read = 0; bool is_hex = false; @@ -900,7 +900,7 @@ value++; is_neg = true; } - if (!atomull(value, &v)) { + if (!Arguments::atomull(value, &v)) { return false; } if (result->is_int()) { @@ -2640,7 +2640,7 @@ if (value_is_positive) { julong n; - bool good_return = atomull(value, &n); + bool good_return = Arguments::atomull(value, &n); if (good_return) { bool above_minimum = n >= min_size; bool value_is_too_large = n > max_uintx; @@ -2657,7 +2657,7 @@ Arguments::ArgsRange Arguments::parse_memory_size(const char* s, julong* long_arg, julong min_size) { - if (!atomull(s, long_arg)) return arg_unreadable; + if (!Arguments::atomull(s, long_arg)) return arg_unreadable; return check_memory_size(*long_arg, min_size); }