--- old/src/share/vm/oops/method.cpp 2017-06-30 11:28:27.056478148 +0200 +++ new/src/share/vm/oops/method.cpp 2017-06-30 11:28:26.884472772 +0200 @@ -293,7 +293,7 @@ int Method::size(bool is_native) { // If native, then include pointers for native_function and signature_handler int extra_bytes = (is_native) ? 2*sizeof(address*) : 0; - int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord; + int extra_words = align_up(extra_bytes, BytesPerWord) / BytesPerWord; return align_metadata_size(header_size() + extra_words); }