--- old/src/share/vm/oops/methodData.cpp 2017-06-30 11:28:27.964506531 +0200 +++ new/src/share/vm/oops/methodData.cpp 2017-06-30 11:28:27.760500155 +0200 @@ -937,7 +937,7 @@ // profiling information about a given method. Size is in words int MethodData::compute_allocation_size_in_words(const methodHandle& method) { int byte_size = compute_allocation_size_in_bytes(method); - int word_size = align_size_up(byte_size, BytesPerWord) / BytesPerWord; + int word_size = align_up(byte_size, BytesPerWord) / BytesPerWord; return align_metadata_size(word_size); }