--- old/src/hotspot/share/utilities/hashtable.inline.hpp 2017-10-13 18:30:19.455864402 -0400 +++ new/src/hotspot/share/utilities/hashtable.inline.hpp 2017-10-13 18:30:19.087614929 -0400 @@ -78,7 +78,7 @@ // SystemDictionary are read without locks. The new entry must be // complete before other threads can be allowed to see it // via a store to _buckets[index]. - OrderAccess::release_store_ptr(&_entry, l); + OrderAccess::release_store(&_entry, l); } @@ -87,7 +87,7 @@ // SystemDictionary are read without locks. The new entry must be // complete before other threads can be allowed to see it // via a store to _buckets[index]. - return (BasicHashtableEntry*) OrderAccess::load_ptr_acquire(&_entry); + return OrderAccess::load_acquire(&_entry); }