--- old/src/share/vm/compiler/oopMap.cpp 2017-06-30 11:28:08.463897050 +0200 +++ new/src/share/vm/compiler/oopMap.cpp 2017-06-30 11:28:08.271891050 +0200 @@ -612,16 +612,16 @@ } int ImmutableOopMapBuilder::size_for(const OopMap* map) const { - return align_size_up((int)sizeof(ImmutableOopMap) + map->data_size(), 8); + return align_up((int)sizeof(ImmutableOopMap) + map->data_size(), 8); } int ImmutableOopMapBuilder::heap_size() { int base = sizeof(ImmutableOopMapSet); - base = align_size_up(base, 8); + base = align_up(base, 8); // all of ours pc / offset pairs int pairs = _set->size() * sizeof(ImmutableOopMapPair); - pairs = align_size_up(pairs, 8); + pairs = align_up(pairs, 8); for (int i = 0; i < _set->size(); ++i) { int size = 0;