--- old/src/share/vm/utilities/bitMap.cpp 2017-06-14 14:52:26.631504876 +0200 +++ new/src/share/vm/utilities/bitMap.cpp 2017-06-14 14:52:26.508501123 +0200 @@ -48,10 +48,10 @@ class CHeapBitMapAllocator : StackObj { public: bm_word_t* allocate(size_t size_in_words) const { - return ArrayAllocator::allocate(size_in_words); + return ArrayAllocator::allocate(size_in_words, mtInternal); } void free(bm_word_t* map, idx_t size_in_words) const { - ArrayAllocator::free(map, size_in_words); + ArrayAllocator::free(map, size_in_words); } };