Skip to content

Commit 57b792c

Browse files
committedJun 26, 2020
8248216: JFR: Unify handling of all OopStorage instances in LeakProfiler root processing
Reviewed-by: mgronlun, stefank
1 parent 18cddad commit 57b792c

File tree

4 files changed

+124
-78
lines changed

4 files changed

+124
-78
lines changed
 

‎src/hotspot/share/jfr/leakprofiler/chains/rootSetClosure.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include "classfile/classLoaderDataGraph.hpp"
2828
#include "classfile/stringTable.hpp"
2929
#include "gc/shared/oopStorage.inline.hpp"
30-
#include "gc/shared/oopStorageSet.hpp"
30+
#include "gc/shared/oopStorageSet.inline.hpp"
3131
#include "gc/shared/strongRootsScope.hpp"
3232
#include "jfr/leakprofiler/chains/bfsClosure.hpp"
3333
#include "jfr/leakprofiler/chains/dfsClosure.hpp"
@@ -38,7 +38,6 @@
3838
#include "oops/access.inline.hpp"
3939
#include "oops/oop.inline.hpp"
4040
#include "prims/jvmtiExport.hpp"
41-
#include "runtime/jniHandles.inline.hpp"
4241
#include "runtime/synchronizer.hpp"
4342
#include "runtime/thread.hpp"
4443
#include "services/management.hpp"
@@ -76,9 +75,8 @@ void RootSetClosure<Delegate>::process() {
7675
Threads::oops_do(this, NULL);
7776
ObjectSynchronizer::oops_do(this);
7877
Universe::oops_do(this);
79-
JNIHandles::oops_do(this);
8078
JvmtiExport::oops_do(this);
81-
OopStorageSet::vm_global()->oops_do(this);
79+
OopStorageSet::strong_oops_do(this);
8280
Management::oops_do(this);
8381
AOTLoader::oops_do(this);
8482
}

‎src/hotspot/share/jfr/leakprofiler/checkpoint/rootResolver.cpp

+18-20
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,8 @@ class ReferenceToRootClosure : public StackObj {
9898
bool do_cldg_roots();
9999
bool do_object_synchronizer_roots();
100100
bool do_universe_roots();
101-
bool do_jni_handle_roots();
101+
bool do_oop_storage_roots();
102102
bool do_jvmti_roots();
103-
bool do_vm_global_roots();
104103
bool do_management_roots();
105104
bool do_string_table_roots();
106105
bool do_aot_loader_roots();
@@ -148,11 +147,22 @@ bool ReferenceToRootClosure::do_universe_roots() {
148147
return rlc.complete();
149148
}
150149

151-
bool ReferenceToRootClosure::do_jni_handle_roots() {
152-
assert(!complete(), "invariant");
153-
ReferenceLocateClosure rlc(_callback, OldObjectRoot::_global_jni_handles, OldObjectRoot::_global_jni_handle, NULL);
154-
JNIHandles::oops_do(&rlc);
155-
return rlc.complete();
150+
bool ReferenceToRootClosure::do_oop_storage_roots() {
151+
int i = 0;
152+
for (OopStorageSet::Iterator it = OopStorageSet::strong_iterator(); !it.is_end(); ++it, ++i) {
153+
assert(!complete(), "invariant");
154+
OopStorage* oop_storage = *it;
155+
OldObjectRoot::Type type = oop_storage == OopStorageSet::jni_global() ?
156+
OldObjectRoot::_global_jni_handle :
157+
OldObjectRoot::_global_oop_handle;
158+
OldObjectRoot::System system = OldObjectRoot::System(OldObjectRoot::_strong_oop_storage_set_first + i);
159+
ReferenceLocateClosure rlc(_callback, system, type, NULL);
160+
oop_storage->oops_do(&rlc);
161+
if (rlc.complete()) {
162+
return true;
163+
}
164+
}
165+
return false;
156166
}
157167

158168
bool ReferenceToRootClosure::do_jvmti_roots() {
@@ -162,13 +172,6 @@ bool ReferenceToRootClosure::do_jvmti_roots() {
162172
return rlc.complete();
163173
}
164174

165-
bool ReferenceToRootClosure::do_vm_global_roots() {
166-
assert(!complete(), "invariant");
167-
ReferenceLocateClosure rlc(_callback, OldObjectRoot::_vm_global, OldObjectRoot::_type_undetermined, NULL);
168-
OopStorageSet::vm_global()->oops_do(&rlc);
169-
return rlc.complete();
170-
}
171-
172175
bool ReferenceToRootClosure::do_management_roots() {
173176
assert(!complete(), "invariant");
174177
ReferenceLocateClosure rlc(_callback, OldObjectRoot::_management, OldObjectRoot::_type_undetermined, NULL);
@@ -203,7 +206,7 @@ bool ReferenceToRootClosure::do_roots() {
203206
return true;
204207
}
205208

206-
if (do_jni_handle_roots()) {
209+
if (do_oop_storage_roots()) {
207210
_complete = true;
208211
return true;
209212
}
@@ -213,11 +216,6 @@ bool ReferenceToRootClosure::do_roots() {
213216
return true;
214217
}
215218

216-
if (do_vm_global_roots()) {
217-
_complete = true;
218-
return true;
219-
}
220-
221219
if (do_management_roots()) {
222220
_complete = true;
223221
return true;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
/*
2+
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*
23+
*/
24+
25+
#include "precompiled.hpp"
26+
#include "gc/shared/oopStorage.hpp"
27+
#include "gc/shared/oopStorageSet.hpp"
28+
#include "jfr/leakprofiler/utilities/rootType.hpp"
29+
#include "utilities/debug.hpp"
30+
31+
OopStorage* OldObjectRoot::system_oop_storage(System system) {
32+
int val = int(system);
33+
if (val >= _strong_oop_storage_set_first && val <= _strong_oop_storage_set_last) {
34+
int index = val - _strong_oop_storage_set_first;
35+
int i = 0;
36+
for (OopStorageSet::Iterator it = OopStorageSet::strong_iterator(); !it.is_end(); ++it, ++i) {
37+
if (i == index) {
38+
return *it;
39+
}
40+
}
41+
}
42+
return NULL;
43+
}
44+
45+
const char* OldObjectRoot::system_description(System system) {
46+
OopStorage* oop_storage = system_oop_storage(system);
47+
if (oop_storage != NULL) {
48+
return oop_storage->name();
49+
}
50+
switch (system) {
51+
case _system_undetermined:
52+
return "<unknown>";
53+
case _universe:
54+
return "Universe";
55+
case _threads:
56+
return "Threads";
57+
case _object_synchronizer:
58+
return "Object Monitor";
59+
case _class_loader_data:
60+
return "Class Loader Data";
61+
case _management:
62+
return "Management";
63+
case _jvmti:
64+
return "JVMTI";
65+
case _code_cache:
66+
return "Code Cache";
67+
case _aot:
68+
return "AOT";
69+
#if INCLUDE_JVMCI
70+
case _jvmci:
71+
return "JVMCI";
72+
#endif
73+
default:
74+
ShouldNotReachHere();
75+
}
76+
return NULL;
77+
}
78+
79+
const char* OldObjectRoot::type_description(Type type) {
80+
switch (type) {
81+
case _type_undetermined:
82+
return "<unknown>";
83+
case _stack_variable:
84+
return "Stack Variable";
85+
case _local_jni_handle:
86+
return "Local JNI Handle";
87+
case _global_jni_handle:
88+
return "Global JNI Handle";
89+
case _global_oop_handle:
90+
return "Global Object Handle";
91+
case _handle_area:
92+
return "Handle Area";
93+
default:
94+
ShouldNotReachHere();
95+
}
96+
return NULL;
97+
}

‎src/hotspot/share/jfr/leakprofiler/utilities/rootType.hpp

+7-54
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@
2525
#ifndef SHARE_JFR_LEAKPROFILER_UTILITIES_ROOTTYPE_HPP
2626
#define SHARE_JFR_LEAKPROFILER_UTILITIES_ROOTTYPE_HPP
2727

28+
#include "gc/shared/oopStorageSet.hpp"
2829
#include "memory/allocation.hpp"
29-
#include "utilities/debug.hpp"
3030

3131
class OldObjectRoot : public AllStatic {
3232
public:
3333
enum System {
3434
_system_undetermined,
3535
_universe,
36-
_global_jni_handles,
3736
_threads,
37+
_strong_oop_storage_set_first,
38+
_strong_oop_storage_set_last = _strong_oop_storage_set_first + OopStorageSet::strong_count - 1,
3839
_object_synchronizer,
39-
_vm_global,
4040
_class_loader_data,
4141
_management,
4242
_jvmti,
@@ -51,61 +51,14 @@ class OldObjectRoot : public AllStatic {
5151
_stack_variable,
5252
_local_jni_handle,
5353
_global_jni_handle,
54+
_global_oop_handle,
5455
_handle_area,
5556
_number_of_types
5657
};
5758

58-
static const char* system_description(System system) {
59-
switch (system) {
60-
case _system_undetermined:
61-
return "<unknown>";
62-
case _universe:
63-
return "Universe";
64-
case _global_jni_handles:
65-
return "Global JNI Handles";
66-
case _threads:
67-
return "Threads";
68-
case _object_synchronizer:
69-
return "Object Monitor";
70-
case _vm_global:
71-
return "VM Global";
72-
case _class_loader_data:
73-
return "Class Loader Data";
74-
case _management:
75-
return "Management";
76-
case _jvmti:
77-
return "JVMTI";
78-
case _code_cache:
79-
return "Code Cache";
80-
case _aot:
81-
return "AOT";
82-
#if INCLUDE_JVMCI
83-
case _jvmci:
84-
return "JVMCI";
85-
#endif
86-
default:
87-
ShouldNotReachHere();
88-
}
89-
return NULL;
90-
}
91-
92-
static const char* type_description(Type type) {
93-
switch (type) {
94-
case _type_undetermined:
95-
return "<unknown>";
96-
case _stack_variable:
97-
return "Stack Variable";
98-
case _local_jni_handle:
99-
return "Local JNI Handle";
100-
case _global_jni_handle:
101-
return "Global JNI Handle";
102-
case _handle_area:
103-
return "Handle Area";
104-
default:
105-
ShouldNotReachHere();
106-
}
107-
return NULL;
108-
}
59+
static OopStorage* system_oop_storage(System system);
60+
static const char* system_description(System system);
61+
static const char* type_description(Type type);
10962
};
11063

11164
#endif // SHARE_JFR_LEAKPROFILER_UTILITIES_ROOTTYPE_HPP

0 commit comments

Comments
 (0)
Please sign in to comment.