mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-09 18:08:31 +00:00
8223227: Rename acquire_tag_map() to tag_map_acquire() in jvmtiEnvBase
Reviewed-by: dholmes, jcbeyler
This commit is contained in:
parent
70ea5ab6e1
commit
f05dc2fa2f
@ -254,7 +254,7 @@ class JvmtiEnvBase : public CHeapObj<mtInternal> {
|
||||
return _tag_map;
|
||||
}
|
||||
|
||||
JvmtiTagMap* acquire_tag_map() {
|
||||
JvmtiTagMap* tag_map_acquire() {
|
||||
return OrderAccess::load_acquire(&_tag_map);
|
||||
}
|
||||
|
||||
|
||||
@ -514,7 +514,7 @@ void JvmtiTagMap::destroy_entry(JvmtiTagHashmapEntry* entry) {
|
||||
// returns the tag map for the given environments. If the tag map
|
||||
// doesn't exist then it is created.
|
||||
JvmtiTagMap* JvmtiTagMap::tag_map_for(JvmtiEnv* env) {
|
||||
JvmtiTagMap* tag_map = ((JvmtiEnvBase*)env)->acquire_tag_map();
|
||||
JvmtiTagMap* tag_map = ((JvmtiEnvBase*)env)->tag_map_acquire();
|
||||
if (tag_map == NULL) {
|
||||
MutexLocker mu(JvmtiThreadState_lock);
|
||||
tag_map = ((JvmtiEnvBase*)env)->tag_map();
|
||||
@ -3318,7 +3318,7 @@ void JvmtiTagMap::weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f) {
|
||||
if (JvmtiEnv::environments_might_exist()) {
|
||||
JvmtiEnvIterator it;
|
||||
for (JvmtiEnvBase* env = it.first(); env != NULL; env = it.next(env)) {
|
||||
JvmtiTagMap* tag_map = env->acquire_tag_map();
|
||||
JvmtiTagMap* tag_map = env->tag_map_acquire();
|
||||
if (tag_map != NULL && !tag_map->is_empty()) {
|
||||
tag_map->do_weak_oops(is_alive, f);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user