A concurrent collector may encounter a partially allocated object, e.g. one for which memory has been allocated but it is not yet really an object that the collector can parse or process. Allocation sets the klass to make the object parsable by the collector. This is done last of the low-level object creation initializations, with a release store to ensure that happens after necessary initialization (JDK-8165808).
The collector distinguishes between those states (pre-object allocated blob vs actual object) using klass_or_null(). Uses of that function need to ensure the read of the klass occurs before reading other parts of the object, needing an acquire/loadload barrier matching the release_store of the klass.
We don't want to make klass_or_null() quietly have acquire semantics. We want the acquire semantics to be obvious. Also, not all callers need acquire semantics, and for some it is probably even wrong. For example, many uses are in asserts; it would be undesirable to add an acquire barrier only in debug-mode, potentially making races even harder to debug.
So we need a klass_or_null_acquire() that makes the acquire semantics explicit.