8204939: Change Access nomenclature: root to native

Rename RootAccess => NativeAccess, IN_ROOT => IN_NATIVE, and related cleanups.

Reviewed-by: pliden, stefank, coleenp
This commit is contained in:
Kim Barrett 2018-06-15 16:53:58 -04:00
parent 1a4997b484
commit 05b5a78903
29 changed files with 101 additions and 101 deletions

View file

@ -815,7 +815,7 @@ void ClassLoaderData::remove_handle(OopHandle h) {
assert(_handles.owner_of(ptr), "Got unexpected handle " PTR_FORMAT, p2i(ptr));
// This root is not walked in safepoints, and hence requires an appropriate
// decorator that e.g. maintains the SATB invariant in SATB collectors.
RootAccess<IN_CONCURRENT_ROOT>::oop_store(ptr, oop(NULL));
NativeAccess<IN_CONCURRENT_ROOT>::oop_store(ptr, oop(NULL));
}
}