annotate src/share/vm/prims/jvmtiTagMap.cpp @ 8124:5fc51c1ecdeb

Merge.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 05 Mar 2013 23:44:54 +0100
parents db9981fd3124
children 746b070f5022
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
4929
2b150750d53d 7130993: nsk/jdi/ReferenceType/instances/instances004 fails with JFR: assert(ServiceUtil::visible_oop(obj))
sspitsyn
parents: 3816
diff changeset
2 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1142
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1142
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1142
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "classfile/symbolTable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "classfile/vmSymbols.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "jvmtifiles/jvmtiEnv.hpp"
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
30 #include "oops/instanceMirrorKlass.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "oops/objArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "oops/oop.inline2.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "prims/jvmtiEventController.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "prims/jvmtiEventController.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "prims/jvmtiExport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #include "prims/jvmtiImpl.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37 #include "prims/jvmtiTagMap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38 #include "runtime/biasedLocking.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
39 #include "runtime/javaCalls.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
40 #include "runtime/jniHandles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
41 #include "runtime/mutex.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
42 #include "runtime/mutexLocker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
43 #include "runtime/reflectionUtils.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
44 #include "runtime/vframe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
45 #include "runtime/vmThread.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
46 #include "runtime/vm_operations.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
47 #include "services/serviceUtil.hpp"
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 6983
diff changeset
48 #include "utilities/macros.hpp"
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 6983
diff changeset
49 #if INCLUDE_ALL_GCS
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
50 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 6983
diff changeset
51 #endif // INCLUDE_ALL_GCS
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // JvmtiTagHashmapEntry
a61af66fc99e Initial load
duke
parents:
diff changeset
54 //
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
55 // Each entry encapsulates a reference to the tagged object
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // and the tag value. In addition an entry includes a next pointer which
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // is used to chain entries together.
a61af66fc99e Initial load
duke
parents:
diff changeset
58
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
59 class JvmtiTagHashmapEntry : public CHeapObj<mtInternal> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
61 friend class JvmtiTagMap;
a61af66fc99e Initial load
duke
parents:
diff changeset
62
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
63 oop _object; // tagged object
0
a61af66fc99e Initial load
duke
parents:
diff changeset
64 jlong _tag; // the tag
a61af66fc99e Initial load
duke
parents:
diff changeset
65 JvmtiTagHashmapEntry* _next; // next on the list
a61af66fc99e Initial load
duke
parents:
diff changeset
66
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
67 inline void init(oop object, jlong tag) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 _object = object;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 _tag = tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 _next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // constructor
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
74 JvmtiTagHashmapEntry(oop object, jlong tag) { init(object, tag); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // accessor methods
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
79 inline oop object() const { return _object; }
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
80 inline oop* object_addr() { return &_object; }
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
81 inline jlong tag() const { return _tag; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 inline void set_tag(jlong tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 assert(tag != 0, "can't be zero");
a61af66fc99e Initial load
duke
parents:
diff changeset
85 _tag = tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 inline JvmtiTagHashmapEntry* next() const { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 inline void set_next(JvmtiTagHashmapEntry* next) { _next = next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 };
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // JvmtiTagHashmap
a61af66fc99e Initial load
duke
parents:
diff changeset
94 //
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // A hashmap is essentially a table of pointers to entries. Entries
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // are hashed to a location, or position in the table, and then
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // chained from that location. The "key" for hashing is address of
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
98 // the object, or oop. The "value" is the tag value.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99 //
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // A hashmap maintains a count of the number entries in the hashmap
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // and resizes if the number of entries exceeds a given threshold.
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // The threshold is specified as a percentage of the size - for
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // example a threshold of 0.75 will trigger the hashmap to resize
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // if the number of entries is >75% of table size.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 //
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // A hashmap provides functions for adding, removing, and finding
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // entries. It also provides a function to iterate over all entries
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // in the hashmap.
a61af66fc99e Initial load
duke
parents:
diff changeset
109
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
110 class JvmtiTagHashmap : public CHeapObj<mtInternal> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
111 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
112 friend class JvmtiTagMap;
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 small_trace_threshold = 10000, // threshold for tracing
a61af66fc99e Initial load
duke
parents:
diff changeset
116 medium_trace_threshold = 100000,
a61af66fc99e Initial load
duke
parents:
diff changeset
117 large_trace_threshold = 1000000,
a61af66fc99e Initial load
duke
parents:
diff changeset
118 initial_trace_threshold = small_trace_threshold
a61af66fc99e Initial load
duke
parents:
diff changeset
119 };
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 static int _sizes[]; // array of possible hashmap sizes
a61af66fc99e Initial load
duke
parents:
diff changeset
122 int _size; // actual size of the table
a61af66fc99e Initial load
duke
parents:
diff changeset
123 int _size_index; // index into size table
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 int _entry_count; // number of entries in the hashmap
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 float _load_factor; // load factor as a % of the size
a61af66fc99e Initial load
duke
parents:
diff changeset
128 int _resize_threshold; // computed threshold to trigger resizing.
a61af66fc99e Initial load
duke
parents:
diff changeset
129 bool _resizing_enabled; // indicates if hashmap can resize
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 int _trace_threshold; // threshold for trace messages
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 JvmtiTagHashmapEntry** _table; // the table of entries.
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // private accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
136 int resize_threshold() const { return _resize_threshold; }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 int trace_threshold() const { return _trace_threshold; }
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // initialize the hashmap
a61af66fc99e Initial load
duke
parents:
diff changeset
140 void init(int size_index=0, float load_factor=4.0f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 int initial_size = _sizes[size_index];
a61af66fc99e Initial load
duke
parents:
diff changeset
142 _size_index = size_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 _size = initial_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 _entry_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 if (TraceJVMTIObjectTagging) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 _trace_threshold = initial_trace_threshold;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 _trace_threshold = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
150 _load_factor = load_factor;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 _resize_threshold = (int)(_load_factor * _size);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 _resizing_enabled = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 size_t s = initial_size * sizeof(JvmtiTagHashmapEntry*);
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
154 _table = (JvmtiTagHashmapEntry**)os::malloc(s, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
155 if (_table == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 vm_exit_out_of_memory(s, "unable to allocate initial hashtable for jvmti object tags");
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 for (int i=0; i<initial_size; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 _table[i] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // hash a given key (oop) with the specified size
a61af66fc99e Initial load
duke
parents:
diff changeset
164 static unsigned int hash(oop key, int size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // shift right to get better distribution (as these bits will be zero
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // with aligned addresses)
a61af66fc99e Initial load
duke
parents:
diff changeset
167 unsigned int addr = (unsigned int)((intptr_t)key);
a61af66fc99e Initial load
duke
parents:
diff changeset
168 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
169 return (addr >> 3) % size;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
171 return (addr >> 2) % size;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // hash a given key (oop)
a61af66fc99e Initial load
duke
parents:
diff changeset
176 unsigned int hash(oop key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 return hash(key, _size);
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // resize the hashmap - allocates a large table and re-hashes
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // all entries into the new table.
a61af66fc99e Initial load
duke
parents:
diff changeset
182 void resize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 int new_size_index = _size_index+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 int new_size = _sizes[new_size_index];
a61af66fc99e Initial load
duke
parents:
diff changeset
185 if (new_size < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // hashmap already at maximum capacity
a61af66fc99e Initial load
duke
parents:
diff changeset
187 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // allocate new table
a61af66fc99e Initial load
duke
parents:
diff changeset
191 size_t s = new_size * sizeof(JvmtiTagHashmapEntry*);
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
192 JvmtiTagHashmapEntry** new_table = (JvmtiTagHashmapEntry**)os::malloc(s, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
193 if (new_table == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 warning("unable to allocate larger hashtable for jvmti object tags");
a61af66fc99e Initial load
duke
parents:
diff changeset
195 set_resizing_enabled(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // initialize new table
a61af66fc99e Initial load
duke
parents:
diff changeset
200 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
201 for (i=0; i<new_size; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 new_table[i] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // rehash all entries into the new table
a61af66fc99e Initial load
duke
parents:
diff changeset
206 for (i=0; i<_size; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 JvmtiTagHashmapEntry* entry = _table[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
208 while (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
209 JvmtiTagHashmapEntry* next = entry->next();
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
210 oop key = entry->object();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
211 assert(key != NULL, "jni weak reference cleared!!");
a61af66fc99e Initial load
duke
parents:
diff changeset
212 unsigned int h = hash(key, new_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 JvmtiTagHashmapEntry* anchor = new_table[h];
a61af66fc99e Initial load
duke
parents:
diff changeset
214 if (anchor == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 new_table[h] = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 entry->set_next(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 entry->set_next(anchor);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 new_table[h] = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221 entry = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // free old table and update settings.
a61af66fc99e Initial load
duke
parents:
diff changeset
226 os::free((void*)_table);
a61af66fc99e Initial load
duke
parents:
diff changeset
227 _table = new_table;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 _size_index = new_size_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 _size = new_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // compute new resize threshold
a61af66fc99e Initial load
duke
parents:
diff changeset
232 _resize_threshold = (int)(_load_factor * _size);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // internal remove function - remove an entry at a given position in the
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // table.
a61af66fc99e Initial load
duke
parents:
diff changeset
238 inline void remove(JvmtiTagHashmapEntry* prev, int pos, JvmtiTagHashmapEntry* entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 assert(pos >= 0 && pos < _size, "out of range");
a61af66fc99e Initial load
duke
parents:
diff changeset
240 if (prev == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
241 _table[pos] = entry->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
242 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 prev->set_next(entry->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245 assert(_entry_count > 0, "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
246 _entry_count--;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // resizing switch
a61af66fc99e Initial load
duke
parents:
diff changeset
250 bool is_resizing_enabled() const { return _resizing_enabled; }
a61af66fc99e Initial load
duke
parents:
diff changeset
251 void set_resizing_enabled(bool enable) { _resizing_enabled = enable; }
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
254 void print_memory_usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
255 void compute_next_trace_threshold();
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // create a JvmtiTagHashmap of a preferred size and optionally a load factor.
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // The preferred size is rounded down to an actual size.
a61af66fc99e Initial load
duke
parents:
diff changeset
261 JvmtiTagHashmap(int size, float load_factor=0.0f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 int i=0;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 while (_sizes[i] < size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
264 if (_sizes[i] < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 assert(i > 0, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
266 i--;
a61af66fc99e Initial load
duke
parents:
diff changeset
267 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 i++;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // if a load factor is specified then use it, otherwise use default
a61af66fc99e Initial load
duke
parents:
diff changeset
273 if (load_factor > 0.01f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 init(i, load_factor);
a61af66fc99e Initial load
duke
parents:
diff changeset
275 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 init(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // create a JvmtiTagHashmap with default settings
a61af66fc99e Initial load
duke
parents:
diff changeset
281 JvmtiTagHashmap() {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 init();
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // release table when JvmtiTagHashmap destroyed
a61af66fc99e Initial load
duke
parents:
diff changeset
286 ~JvmtiTagHashmap() {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 if (_table != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
288 os::free((void*)_table);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 _table = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
294 int size() const { return _size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
295 JvmtiTagHashmapEntry** table() const { return _table; }
a61af66fc99e Initial load
duke
parents:
diff changeset
296 int entry_count() const { return _entry_count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // find an entry in the hashmap, returns NULL if not found.
a61af66fc99e Initial load
duke
parents:
diff changeset
299 inline JvmtiTagHashmapEntry* find(oop key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 unsigned int h = hash(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
301 JvmtiTagHashmapEntry* entry = _table[h];
a61af66fc99e Initial load
duke
parents:
diff changeset
302 while (entry != NULL) {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
303 if (entry->object() == key) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
304 return entry;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
305 }
a61af66fc99e Initial load
duke
parents:
diff changeset
306 entry = entry->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
307 }
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
308 return NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // add a new entry to hashmap
a61af66fc99e Initial load
duke
parents:
diff changeset
313 inline void add(oop key, JvmtiTagHashmapEntry* entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 assert(key != NULL, "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
315 assert(find(key) == NULL, "duplicate detected");
a61af66fc99e Initial load
duke
parents:
diff changeset
316 unsigned int h = hash(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 JvmtiTagHashmapEntry* anchor = _table[h];
a61af66fc99e Initial load
duke
parents:
diff changeset
318 if (anchor == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
319 _table[h] = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
320 entry->set_next(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
321 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 entry->set_next(anchor);
a61af66fc99e Initial load
duke
parents:
diff changeset
323 _table[h] = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
324 }
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 _entry_count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
327 if (trace_threshold() > 0 && entry_count() >= trace_threshold()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
328 assert(TraceJVMTIObjectTagging, "should only get here when tracing");
a61af66fc99e Initial load
duke
parents:
diff changeset
329 print_memory_usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
330 compute_next_trace_threshold();
a61af66fc99e Initial load
duke
parents:
diff changeset
331 }
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // if the number of entries exceed the threshold then resize
a61af66fc99e Initial load
duke
parents:
diff changeset
334 if (entry_count() > resize_threshold() && is_resizing_enabled()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 resize();
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // remove an entry with the given key.
a61af66fc99e Initial load
duke
parents:
diff changeset
340 inline JvmtiTagHashmapEntry* remove(oop key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 unsigned int h = hash(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
342 JvmtiTagHashmapEntry* entry = _table[h];
a61af66fc99e Initial load
duke
parents:
diff changeset
343 JvmtiTagHashmapEntry* prev = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
344 while (entry != NULL) {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
345 if (key == entry->object()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
346 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
348 prev = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 entry = entry->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351 if (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 remove(prev, h, entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
354 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
356
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // iterate over all entries in the hashmap
a61af66fc99e Initial load
duke
parents:
diff changeset
358 void entry_iterate(JvmtiTagHashmapEntryClosure* closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
359 };
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // possible hashmap sizes - odd primes that roughly double in size.
a61af66fc99e Initial load
duke
parents:
diff changeset
362 // To avoid excessive resizing the odd primes from 4801-76831 and
a61af66fc99e Initial load
duke
parents:
diff changeset
363 // 76831-307261 have been removed. The list must be terminated by -1.
a61af66fc99e Initial load
duke
parents:
diff changeset
364 int JvmtiTagHashmap::_sizes[] = { 4801, 76831, 307261, 614563, 1228891,
a61af66fc99e Initial load
duke
parents:
diff changeset
365 2457733, 4915219, 9830479, 19660831, 39321619, 78643219, -1 };
a61af66fc99e Initial load
duke
parents:
diff changeset
366
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 // A supporting class for iterating over all entries in Hashmap
a61af66fc99e Initial load
duke
parents:
diff changeset
369 class JvmtiTagHashmapEntryClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
370 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
371 virtual void do_entry(JvmtiTagHashmapEntry* entry) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
372 };
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // iterate over all entries in the hashmap
a61af66fc99e Initial load
duke
parents:
diff changeset
376 void JvmtiTagHashmap::entry_iterate(JvmtiTagHashmapEntryClosure* closure) {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 for (int i=0; i<_size; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
378 JvmtiTagHashmapEntry* entry = _table[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
379 JvmtiTagHashmapEntry* prev = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
380 while (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
381 // obtain the next entry before invoking do_entry - this is
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // necessary because do_entry may remove the entry from the
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // hashmap.
a61af66fc99e Initial load
duke
parents:
diff changeset
384 JvmtiTagHashmapEntry* next = entry->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
385 closure->do_entry(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
386 entry = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391 // debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
392 void JvmtiTagHashmap::print_memory_usage() {
a61af66fc99e Initial load
duke
parents:
diff changeset
393 intptr_t p = (intptr_t)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
394 tty->print("[JvmtiTagHashmap @ " INTPTR_FORMAT, p);
a61af66fc99e Initial load
duke
parents:
diff changeset
395
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // table + entries in KB
a61af66fc99e Initial load
duke
parents:
diff changeset
397 int hashmap_usage = (size()*sizeof(JvmtiTagHashmapEntry*) +
a61af66fc99e Initial load
duke
parents:
diff changeset
398 entry_count()*sizeof(JvmtiTagHashmapEntry))/K;
a61af66fc99e Initial load
duke
parents:
diff changeset
399
a61af66fc99e Initial load
duke
parents:
diff changeset
400 int weak_globals_usage = (int)(JNIHandles::weak_global_handle_memory_usage()/K);
a61af66fc99e Initial load
duke
parents:
diff changeset
401 tty->print_cr(", %d entries (%d KB) <JNI weak globals: %d KB>]",
a61af66fc99e Initial load
duke
parents:
diff changeset
402 entry_count(), hashmap_usage, weak_globals_usage);
a61af66fc99e Initial load
duke
parents:
diff changeset
403 }
a61af66fc99e Initial load
duke
parents:
diff changeset
404
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // compute threshold for the next trace message
a61af66fc99e Initial load
duke
parents:
diff changeset
406 void JvmtiTagHashmap::compute_next_trace_threshold() {
a61af66fc99e Initial load
duke
parents:
diff changeset
407 if (trace_threshold() < medium_trace_threshold) {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 _trace_threshold += small_trace_threshold;
a61af66fc99e Initial load
duke
parents:
diff changeset
409 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 if (trace_threshold() < large_trace_threshold) {
a61af66fc99e Initial load
duke
parents:
diff changeset
411 _trace_threshold += medium_trace_threshold;
a61af66fc99e Initial load
duke
parents:
diff changeset
412 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
413 _trace_threshold += large_trace_threshold;
a61af66fc99e Initial load
duke
parents:
diff changeset
414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // create a JvmtiTagMap
a61af66fc99e Initial load
duke
parents:
diff changeset
419 JvmtiTagMap::JvmtiTagMap(JvmtiEnv* env) :
a61af66fc99e Initial load
duke
parents:
diff changeset
420 _env(env),
a61af66fc99e Initial load
duke
parents:
diff changeset
421 _lock(Mutex::nonleaf+2, "JvmtiTagMap._lock", false),
a61af66fc99e Initial load
duke
parents:
diff changeset
422 _free_entries(NULL),
a61af66fc99e Initial load
duke
parents:
diff changeset
423 _free_entries_count(0)
a61af66fc99e Initial load
duke
parents:
diff changeset
424 {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 assert(JvmtiThreadState_lock->is_locked(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
426 assert(((JvmtiEnvBase *)env)->tag_map() == NULL, "tag map already exists for environment");
a61af66fc99e Initial load
duke
parents:
diff changeset
427
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
428 _hashmap = new JvmtiTagHashmap();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // finally add us to the environment
a61af66fc99e Initial load
duke
parents:
diff changeset
431 ((JvmtiEnvBase *)env)->set_tag_map(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
433
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // destroy a JvmtiTagMap
a61af66fc99e Initial load
duke
parents:
diff changeset
436 JvmtiTagMap::~JvmtiTagMap() {
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 // no lock acquired as we assume the enclosing environment is
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // also being destroryed.
a61af66fc99e Initial load
duke
parents:
diff changeset
440 ((JvmtiEnvBase *)_env)->set_tag_map(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
441
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
442 JvmtiTagHashmapEntry** table = _hashmap->table();
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
443 for (int j = 0; j < _hashmap->size(); j++) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
444 JvmtiTagHashmapEntry* entry = table[j];
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
445 while (entry != NULL) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
446 JvmtiTagHashmapEntry* next = entry->next();
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
447 delete entry;
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
448 entry = next;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
452 // finally destroy the hashmap
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
453 delete _hashmap;
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
454 _hashmap = NULL;
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
455
0
a61af66fc99e Initial load
duke
parents:
diff changeset
456 // remove any entries on the free list
a61af66fc99e Initial load
duke
parents:
diff changeset
457 JvmtiTagHashmapEntry* entry = _free_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
458 while (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 JvmtiTagHashmapEntry* next = entry->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
460 delete entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
461 entry = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
463 _free_entries = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
464 }
a61af66fc99e Initial load
duke
parents:
diff changeset
465
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // create a hashmap entry
a61af66fc99e Initial load
duke
parents:
diff changeset
467 // - if there's an entry on the (per-environment) free list then this
a61af66fc99e Initial load
duke
parents:
diff changeset
468 // is returned. Otherwise an new entry is allocated.
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
469 JvmtiTagHashmapEntry* JvmtiTagMap::create_entry(oop ref, jlong tag) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
470 assert(Thread::current()->is_VM_thread() || is_locked(), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
471 JvmtiTagHashmapEntry* entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
472 if (_free_entries == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
473 entry = new JvmtiTagHashmapEntry(ref, tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
474 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
475 assert(_free_entries_count > 0, "mismatched _free_entries_count");
a61af66fc99e Initial load
duke
parents:
diff changeset
476 _free_entries_count--;
a61af66fc99e Initial load
duke
parents:
diff changeset
477 entry = _free_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
478 _free_entries = entry->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
479 entry->init(ref, tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
481 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
482 }
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 // destroy an entry by returning it to the free list
a61af66fc99e Initial load
duke
parents:
diff changeset
485 void JvmtiTagMap::destroy_entry(JvmtiTagHashmapEntry* entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
486 assert(SafepointSynchronize::is_at_safepoint() || is_locked(), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // limit the size of the free list
a61af66fc99e Initial load
duke
parents:
diff changeset
488 if (_free_entries_count >= max_free_entries) {
a61af66fc99e Initial load
duke
parents:
diff changeset
489 delete entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
490 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
491 entry->set_next(_free_entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
492 _free_entries = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
493 _free_entries_count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
494 }
a61af66fc99e Initial load
duke
parents:
diff changeset
495 }
a61af66fc99e Initial load
duke
parents:
diff changeset
496
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // returns the tag map for the given environments. If the tag map
a61af66fc99e Initial load
duke
parents:
diff changeset
498 // doesn't exist then it is created.
a61af66fc99e Initial load
duke
parents:
diff changeset
499 JvmtiTagMap* JvmtiTagMap::tag_map_for(JvmtiEnv* env) {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
500 JvmtiTagMap* tag_map = ((JvmtiEnvBase*)env)->tag_map();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
501 if (tag_map == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
502 MutexLocker mu(JvmtiThreadState_lock);
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
503 tag_map = ((JvmtiEnvBase*)env)->tag_map();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
504 if (tag_map == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
505 tag_map = new JvmtiTagMap(env);
a61af66fc99e Initial load
duke
parents:
diff changeset
506 }
a61af66fc99e Initial load
duke
parents:
diff changeset
507 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
508 CHECK_UNHANDLED_OOPS_ONLY(Thread::current()->clear_unhandled_oops());
a61af66fc99e Initial load
duke
parents:
diff changeset
509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
510 return tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 }
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 // iterate over all entries in the tag map.
a61af66fc99e Initial load
duke
parents:
diff changeset
514 void JvmtiTagMap::entry_iterate(JvmtiTagHashmapEntryClosure* closure) {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
515 hashmap()->entry_iterate(closure);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
516 }
a61af66fc99e Initial load
duke
parents:
diff changeset
517
a61af66fc99e Initial load
duke
parents:
diff changeset
518 // returns true if the hashmaps are empty
a61af66fc99e Initial load
duke
parents:
diff changeset
519 bool JvmtiTagMap::is_empty() {
a61af66fc99e Initial load
duke
parents:
diff changeset
520 assert(SafepointSynchronize::is_at_safepoint() || is_locked(), "checking");
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
521 return hashmap()->entry_count() == 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
522 }
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525 // Return the tag value for an object, or 0 if the object is
a61af66fc99e Initial load
duke
parents:
diff changeset
526 // not tagged
a61af66fc99e Initial load
duke
parents:
diff changeset
527 //
a61af66fc99e Initial load
duke
parents:
diff changeset
528 static inline jlong tag_for(JvmtiTagMap* tag_map, oop o) {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
529 JvmtiTagHashmapEntry* entry = tag_map->hashmap()->find(o);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
530 if (entry == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
531 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
532 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
533 return entry->tag();
a61af66fc99e Initial load
duke
parents:
diff changeset
534 }
a61af66fc99e Initial load
duke
parents:
diff changeset
535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
536
a61af66fc99e Initial load
duke
parents:
diff changeset
537
a61af66fc99e Initial load
duke
parents:
diff changeset
538 // A CallbackWrapper is a support class for querying and tagging an object
a61af66fc99e Initial load
duke
parents:
diff changeset
539 // around a callback to a profiler. The constructor does pre-callback
a61af66fc99e Initial load
duke
parents:
diff changeset
540 // work to get the tag value, klass tag value, ... and the destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
541 // does the post-callback work of tagging or untagging the object.
a61af66fc99e Initial load
duke
parents:
diff changeset
542 //
a61af66fc99e Initial load
duke
parents:
diff changeset
543 // {
a61af66fc99e Initial load
duke
parents:
diff changeset
544 // CallbackWrapper wrapper(tag_map, o);
a61af66fc99e Initial load
duke
parents:
diff changeset
545 //
a61af66fc99e Initial load
duke
parents:
diff changeset
546 // (*callback)(wrapper.klass_tag(), wrapper.obj_size(), wrapper.obj_tag_p(), ...)
a61af66fc99e Initial load
duke
parents:
diff changeset
547 //
a61af66fc99e Initial load
duke
parents:
diff changeset
548 // } // wrapper goes out of scope here which results in the destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
549 // checking to see if the object has been tagged, untagged, or the
a61af66fc99e Initial load
duke
parents:
diff changeset
550 // tag value has changed.
a61af66fc99e Initial load
duke
parents:
diff changeset
551 //
a61af66fc99e Initial load
duke
parents:
diff changeset
552 class CallbackWrapper : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
553 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
554 JvmtiTagMap* _tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
555 JvmtiTagHashmap* _hashmap;
a61af66fc99e Initial load
duke
parents:
diff changeset
556 JvmtiTagHashmapEntry* _entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
557 oop _o;
a61af66fc99e Initial load
duke
parents:
diff changeset
558 jlong _obj_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
559 jlong _obj_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
560 jlong _klass_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
561
a61af66fc99e Initial load
duke
parents:
diff changeset
562 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
563 JvmtiTagMap* tag_map() const { return _tag_map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
564
a61af66fc99e Initial load
duke
parents:
diff changeset
565 // invoked post-callback to tag, untag, or update the tag of an object
a61af66fc99e Initial load
duke
parents:
diff changeset
566 void inline post_callback_tag_update(oop o, JvmtiTagHashmap* hashmap,
a61af66fc99e Initial load
duke
parents:
diff changeset
567 JvmtiTagHashmapEntry* entry, jlong obj_tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
568 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
569 CallbackWrapper(JvmtiTagMap* tag_map, oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
570 assert(Thread::current()->is_VM_thread() || tag_map->is_locked(),
a61af66fc99e Initial load
duke
parents:
diff changeset
571 "MT unsafe or must be VM thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
572
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
573 // object to tag
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
574 _o = o;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
575
a61af66fc99e Initial load
duke
parents:
diff changeset
576 // object size
6171
588f559105c1 7178846: IterateThroughHeap: heap_iteration_callback passes a negative size
sla
parents: 4929
diff changeset
577 _obj_size = (jlong)_o->size() * wordSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
578
a61af66fc99e Initial load
duke
parents:
diff changeset
579 // record the context
a61af66fc99e Initial load
duke
parents:
diff changeset
580 _tag_map = tag_map;
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
581 _hashmap = tag_map->hashmap();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
582 _entry = _hashmap->find(_o);
a61af66fc99e Initial load
duke
parents:
diff changeset
583
a61af66fc99e Initial load
duke
parents:
diff changeset
584 // get object tag
a61af66fc99e Initial load
duke
parents:
diff changeset
585 _obj_tag = (_entry == NULL) ? 0 : _entry->tag();
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587 // get the class and the class's tag value
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
588 assert(SystemDictionary::Class_klass()->oop_is_instanceMirror(), "Is not?");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
589
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
590 _klass_tag = tag_for(tag_map, _o->klass()->java_mirror());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
591 }
a61af66fc99e Initial load
duke
parents:
diff changeset
592
a61af66fc99e Initial load
duke
parents:
diff changeset
593 ~CallbackWrapper() {
a61af66fc99e Initial load
duke
parents:
diff changeset
594 post_callback_tag_update(_o, _hashmap, _entry, _obj_tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
595 }
a61af66fc99e Initial load
duke
parents:
diff changeset
596
a61af66fc99e Initial load
duke
parents:
diff changeset
597 inline jlong* obj_tag_p() { return &_obj_tag; }
a61af66fc99e Initial load
duke
parents:
diff changeset
598 inline jlong obj_size() const { return _obj_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
599 inline jlong obj_tag() const { return _obj_tag; }
a61af66fc99e Initial load
duke
parents:
diff changeset
600 inline jlong klass_tag() const { return _klass_tag; }
a61af66fc99e Initial load
duke
parents:
diff changeset
601 };
a61af66fc99e Initial load
duke
parents:
diff changeset
602
a61af66fc99e Initial load
duke
parents:
diff changeset
603
a61af66fc99e Initial load
duke
parents:
diff changeset
604
a61af66fc99e Initial load
duke
parents:
diff changeset
605 // callback post-callback to tag, untag, or update the tag of an object
a61af66fc99e Initial load
duke
parents:
diff changeset
606 void inline CallbackWrapper::post_callback_tag_update(oop o,
a61af66fc99e Initial load
duke
parents:
diff changeset
607 JvmtiTagHashmap* hashmap,
a61af66fc99e Initial load
duke
parents:
diff changeset
608 JvmtiTagHashmapEntry* entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
609 jlong obj_tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
610 if (entry == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
611 if (obj_tag != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
612 // callback has tagged the object
a61af66fc99e Initial load
duke
parents:
diff changeset
613 assert(Thread::current()->is_VM_thread(), "must be VMThread");
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
614 entry = tag_map()->create_entry(o, obj_tag);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
615 hashmap->add(o, entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
616 }
a61af66fc99e Initial load
duke
parents:
diff changeset
617 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
618 // object was previously tagged - the callback may have untagged
a61af66fc99e Initial load
duke
parents:
diff changeset
619 // the object or changed the tag value
a61af66fc99e Initial load
duke
parents:
diff changeset
620 if (obj_tag == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
621
a61af66fc99e Initial load
duke
parents:
diff changeset
622 JvmtiTagHashmapEntry* entry_removed = hashmap->remove(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
623 assert(entry_removed == entry, "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
624 tag_map()->destroy_entry(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
625
a61af66fc99e Initial load
duke
parents:
diff changeset
626 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
627 if (obj_tag != entry->tag()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
628 entry->set_tag(obj_tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
629 }
a61af66fc99e Initial load
duke
parents:
diff changeset
630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
631 }
a61af66fc99e Initial load
duke
parents:
diff changeset
632 }
a61af66fc99e Initial load
duke
parents:
diff changeset
633
a61af66fc99e Initial load
duke
parents:
diff changeset
634 // An extended CallbackWrapper used when reporting an object reference
a61af66fc99e Initial load
duke
parents:
diff changeset
635 // to the agent.
a61af66fc99e Initial load
duke
parents:
diff changeset
636 //
a61af66fc99e Initial load
duke
parents:
diff changeset
637 // {
a61af66fc99e Initial load
duke
parents:
diff changeset
638 // TwoOopCallbackWrapper wrapper(tag_map, referrer, o);
a61af66fc99e Initial load
duke
parents:
diff changeset
639 //
a61af66fc99e Initial load
duke
parents:
diff changeset
640 // (*callback)(wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
641 // wrapper.obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
642 // wrapper.obj_tag_p()
a61af66fc99e Initial load
duke
parents:
diff changeset
643 // wrapper.referrer_tag_p(), ...)
a61af66fc99e Initial load
duke
parents:
diff changeset
644 //
a61af66fc99e Initial load
duke
parents:
diff changeset
645 // } // wrapper goes out of scope here which results in the destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
646 // checking to see if the referrer object has been tagged, untagged,
a61af66fc99e Initial load
duke
parents:
diff changeset
647 // or the tag value has changed.
a61af66fc99e Initial load
duke
parents:
diff changeset
648 //
a61af66fc99e Initial load
duke
parents:
diff changeset
649 class TwoOopCallbackWrapper : public CallbackWrapper {
a61af66fc99e Initial load
duke
parents:
diff changeset
650 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
651 bool _is_reference_to_self;
a61af66fc99e Initial load
duke
parents:
diff changeset
652 JvmtiTagHashmap* _referrer_hashmap;
a61af66fc99e Initial load
duke
parents:
diff changeset
653 JvmtiTagHashmapEntry* _referrer_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
654 oop _referrer;
a61af66fc99e Initial load
duke
parents:
diff changeset
655 jlong _referrer_obj_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
656 jlong _referrer_klass_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
657 jlong* _referrer_tag_p;
a61af66fc99e Initial load
duke
parents:
diff changeset
658
a61af66fc99e Initial load
duke
parents:
diff changeset
659 bool is_reference_to_self() const { return _is_reference_to_self; }
a61af66fc99e Initial load
duke
parents:
diff changeset
660
a61af66fc99e Initial load
duke
parents:
diff changeset
661 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
662 TwoOopCallbackWrapper(JvmtiTagMap* tag_map, oop referrer, oop o) :
a61af66fc99e Initial load
duke
parents:
diff changeset
663 CallbackWrapper(tag_map, o)
a61af66fc99e Initial load
duke
parents:
diff changeset
664 {
a61af66fc99e Initial load
duke
parents:
diff changeset
665 // self reference needs to be handled in a special way
a61af66fc99e Initial load
duke
parents:
diff changeset
666 _is_reference_to_self = (referrer == o);
a61af66fc99e Initial load
duke
parents:
diff changeset
667
a61af66fc99e Initial load
duke
parents:
diff changeset
668 if (_is_reference_to_self) {
a61af66fc99e Initial load
duke
parents:
diff changeset
669 _referrer_klass_tag = klass_tag();
a61af66fc99e Initial load
duke
parents:
diff changeset
670 _referrer_tag_p = obj_tag_p();
a61af66fc99e Initial load
duke
parents:
diff changeset
671 } else {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
672 _referrer = referrer;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
673 // record the context
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
674 _referrer_hashmap = tag_map->hashmap();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
675 _referrer_entry = _referrer_hashmap->find(_referrer);
a61af66fc99e Initial load
duke
parents:
diff changeset
676
a61af66fc99e Initial load
duke
parents:
diff changeset
677 // get object tag
a61af66fc99e Initial load
duke
parents:
diff changeset
678 _referrer_obj_tag = (_referrer_entry == NULL) ? 0 : _referrer_entry->tag();
a61af66fc99e Initial load
duke
parents:
diff changeset
679 _referrer_tag_p = &_referrer_obj_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
680
a61af66fc99e Initial load
duke
parents:
diff changeset
681 // get referrer class tag.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
682 _referrer_klass_tag = tag_for(tag_map, _referrer->klass()->java_mirror());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
683 }
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 ~TwoOopCallbackWrapper() {
a61af66fc99e Initial load
duke
parents:
diff changeset
687 if (!is_reference_to_self()){
a61af66fc99e Initial load
duke
parents:
diff changeset
688 post_callback_tag_update(_referrer,
a61af66fc99e Initial load
duke
parents:
diff changeset
689 _referrer_hashmap,
a61af66fc99e Initial load
duke
parents:
diff changeset
690 _referrer_entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
691 _referrer_obj_tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
692 }
a61af66fc99e Initial load
duke
parents:
diff changeset
693 }
a61af66fc99e Initial load
duke
parents:
diff changeset
694
a61af66fc99e Initial load
duke
parents:
diff changeset
695 // address of referrer tag
a61af66fc99e Initial load
duke
parents:
diff changeset
696 // (for a self reference this will return the same thing as obj_tag_p())
a61af66fc99e Initial load
duke
parents:
diff changeset
697 inline jlong* referrer_tag_p() { return _referrer_tag_p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
698
a61af66fc99e Initial load
duke
parents:
diff changeset
699 // referrer's class tag
a61af66fc99e Initial load
duke
parents:
diff changeset
700 inline jlong referrer_klass_tag() { return _referrer_klass_tag; }
a61af66fc99e Initial load
duke
parents:
diff changeset
701 };
a61af66fc99e Initial load
duke
parents:
diff changeset
702
a61af66fc99e Initial load
duke
parents:
diff changeset
703 // tag an object
a61af66fc99e Initial load
duke
parents:
diff changeset
704 //
a61af66fc99e Initial load
duke
parents:
diff changeset
705 // This function is performance critical. If many threads attempt to tag objects
a61af66fc99e Initial load
duke
parents:
diff changeset
706 // around the same time then it's possible that the Mutex associated with the
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
707 // tag map will be a hot lock.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
708 void JvmtiTagMap::set_tag(jobject object, jlong tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
709 MutexLocker ml(lock());
a61af66fc99e Initial load
duke
parents:
diff changeset
710
a61af66fc99e Initial load
duke
parents:
diff changeset
711 // resolve the object
a61af66fc99e Initial load
duke
parents:
diff changeset
712 oop o = JNIHandles::resolve_non_null(object);
a61af66fc99e Initial load
duke
parents:
diff changeset
713
a61af66fc99e Initial load
duke
parents:
diff changeset
714 // see if the object is already tagged
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
715 JvmtiTagHashmap* hashmap = _hashmap;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
716 JvmtiTagHashmapEntry* entry = hashmap->find(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
717
a61af66fc99e Initial load
duke
parents:
diff changeset
718 // if the object is not already tagged then we tag it
a61af66fc99e Initial load
duke
parents:
diff changeset
719 if (entry == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
720 if (tag != 0) {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
721 entry = create_entry(o, tag);
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
722 hashmap->add(o, entry);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
723 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
724 // no-op
a61af66fc99e Initial load
duke
parents:
diff changeset
725 }
a61af66fc99e Initial load
duke
parents:
diff changeset
726 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
727 // if the object is already tagged then we either update
a61af66fc99e Initial load
duke
parents:
diff changeset
728 // the tag (if a new tag value has been provided)
a61af66fc99e Initial load
duke
parents:
diff changeset
729 // or remove the object if the new tag value is 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
730 if (tag == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
731 hashmap->remove(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
732 destroy_entry(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
733 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
734 entry->set_tag(tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
735 }
a61af66fc99e Initial load
duke
parents:
diff changeset
736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
737 }
a61af66fc99e Initial load
duke
parents:
diff changeset
738
a61af66fc99e Initial load
duke
parents:
diff changeset
739 // get the tag for an object
a61af66fc99e Initial load
duke
parents:
diff changeset
740 jlong JvmtiTagMap::get_tag(jobject object) {
a61af66fc99e Initial load
duke
parents:
diff changeset
741 MutexLocker ml(lock());
a61af66fc99e Initial load
duke
parents:
diff changeset
742
a61af66fc99e Initial load
duke
parents:
diff changeset
743 // resolve the object
a61af66fc99e Initial load
duke
parents:
diff changeset
744 oop o = JNIHandles::resolve_non_null(object);
a61af66fc99e Initial load
duke
parents:
diff changeset
745
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
746 return tag_for(this, o);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
747 }
a61af66fc99e Initial load
duke
parents:
diff changeset
748
a61af66fc99e Initial load
duke
parents:
diff changeset
749
a61af66fc99e Initial load
duke
parents:
diff changeset
750 // Helper class used to describe the static or instance fields of a class.
a61af66fc99e Initial load
duke
parents:
diff changeset
751 // For each field it holds the field index (as defined by the JVMTI specification),
a61af66fc99e Initial load
duke
parents:
diff changeset
752 // the field type, and the offset.
a61af66fc99e Initial load
duke
parents:
diff changeset
753
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
754 class ClassFieldDescriptor: public CHeapObj<mtInternal> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
755 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
756 int _field_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
757 int _field_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
758 char _field_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
759 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
760 ClassFieldDescriptor(int index, char type, int offset) :
a61af66fc99e Initial load
duke
parents:
diff changeset
761 _field_index(index), _field_type(type), _field_offset(offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
762 }
a61af66fc99e Initial load
duke
parents:
diff changeset
763 int field_index() const { return _field_index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
764 char field_type() const { return _field_type; }
a61af66fc99e Initial load
duke
parents:
diff changeset
765 int field_offset() const { return _field_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
766 };
a61af66fc99e Initial load
duke
parents:
diff changeset
767
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
768 class ClassFieldMap: public CHeapObj<mtInternal> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
769 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
770 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
771 initial_field_count = 5
a61af66fc99e Initial load
duke
parents:
diff changeset
772 };
a61af66fc99e Initial load
duke
parents:
diff changeset
773
a61af66fc99e Initial load
duke
parents:
diff changeset
774 // list of field descriptors
a61af66fc99e Initial load
duke
parents:
diff changeset
775 GrowableArray<ClassFieldDescriptor*>* _fields;
a61af66fc99e Initial load
duke
parents:
diff changeset
776
a61af66fc99e Initial load
duke
parents:
diff changeset
777 // constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
778 ClassFieldMap();
a61af66fc99e Initial load
duke
parents:
diff changeset
779
a61af66fc99e Initial load
duke
parents:
diff changeset
780 // add a field
a61af66fc99e Initial load
duke
parents:
diff changeset
781 void add(int index, char type, int offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
782
a61af66fc99e Initial load
duke
parents:
diff changeset
783 // returns the field count for the given class
a61af66fc99e Initial load
duke
parents:
diff changeset
784 static int compute_field_count(instanceKlassHandle ikh);
a61af66fc99e Initial load
duke
parents:
diff changeset
785
a61af66fc99e Initial load
duke
parents:
diff changeset
786 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
787 ~ClassFieldMap();
a61af66fc99e Initial load
duke
parents:
diff changeset
788
a61af66fc99e Initial load
duke
parents:
diff changeset
789 // access
a61af66fc99e Initial load
duke
parents:
diff changeset
790 int field_count() { return _fields->length(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
791 ClassFieldDescriptor* field_at(int i) { return _fields->at(i); }
a61af66fc99e Initial load
duke
parents:
diff changeset
792
a61af66fc99e Initial load
duke
parents:
diff changeset
793 // functions to create maps of static or instance fields
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
794 static ClassFieldMap* create_map_of_static_fields(Klass* k);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
795 static ClassFieldMap* create_map_of_instance_fields(oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
796 };
a61af66fc99e Initial load
duke
parents:
diff changeset
797
a61af66fc99e Initial load
duke
parents:
diff changeset
798 ClassFieldMap::ClassFieldMap() {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
799 _fields = new (ResourceObj::C_HEAP, mtInternal)
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
800 GrowableArray<ClassFieldDescriptor*>(initial_field_count, true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
801 }
a61af66fc99e Initial load
duke
parents:
diff changeset
802
a61af66fc99e Initial load
duke
parents:
diff changeset
803 ClassFieldMap::~ClassFieldMap() {
a61af66fc99e Initial load
duke
parents:
diff changeset
804 for (int i=0; i<_fields->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
805 delete _fields->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
807 delete _fields;
a61af66fc99e Initial load
duke
parents:
diff changeset
808 }
a61af66fc99e Initial load
duke
parents:
diff changeset
809
a61af66fc99e Initial load
duke
parents:
diff changeset
810 void ClassFieldMap::add(int index, char type, int offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
811 ClassFieldDescriptor* field = new ClassFieldDescriptor(index, type, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
812 _fields->append(field);
a61af66fc99e Initial load
duke
parents:
diff changeset
813 }
a61af66fc99e Initial load
duke
parents:
diff changeset
814
a61af66fc99e Initial load
duke
parents:
diff changeset
815 // Returns a heap allocated ClassFieldMap to describe the static fields
a61af66fc99e Initial load
duke
parents:
diff changeset
816 // of the given class.
a61af66fc99e Initial load
duke
parents:
diff changeset
817 //
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
818 ClassFieldMap* ClassFieldMap::create_map_of_static_fields(Klass* k) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
819 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
820 instanceKlassHandle ikh = instanceKlassHandle(Thread::current(), k);
a61af66fc99e Initial load
duke
parents:
diff changeset
821
a61af66fc99e Initial load
duke
parents:
diff changeset
822 // create the field map
a61af66fc99e Initial load
duke
parents:
diff changeset
823 ClassFieldMap* field_map = new ClassFieldMap();
a61af66fc99e Initial load
duke
parents:
diff changeset
824
a61af66fc99e Initial load
duke
parents:
diff changeset
825 FilteredFieldStream f(ikh, false, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
826 int max_field_index = f.field_count()-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
827
a61af66fc99e Initial load
duke
parents:
diff changeset
828 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
829 for (FilteredFieldStream fld(ikh, true, true); !fld.eos(); fld.next(), index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
830 // ignore instance fields
a61af66fc99e Initial load
duke
parents:
diff changeset
831 if (!fld.access_flags().is_static()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
832 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
833 }
a61af66fc99e Initial load
duke
parents:
diff changeset
834 field_map->add(max_field_index - index, fld.signature()->byte_at(0), fld.offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
835 }
a61af66fc99e Initial load
duke
parents:
diff changeset
836 return field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
837 }
a61af66fc99e Initial load
duke
parents:
diff changeset
838
a61af66fc99e Initial load
duke
parents:
diff changeset
839 // Returns a heap allocated ClassFieldMap to describe the instance fields
a61af66fc99e Initial load
duke
parents:
diff changeset
840 // of the given class. All instance fields are included (this means public
a61af66fc99e Initial load
duke
parents:
diff changeset
841 // and private fields declared in superclasses and superinterfaces too).
a61af66fc99e Initial load
duke
parents:
diff changeset
842 //
a61af66fc99e Initial load
duke
parents:
diff changeset
843 ClassFieldMap* ClassFieldMap::create_map_of_instance_fields(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
844 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
845 instanceKlassHandle ikh = instanceKlassHandle(Thread::current(), obj->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
846
a61af66fc99e Initial load
duke
parents:
diff changeset
847 // create the field map
a61af66fc99e Initial load
duke
parents:
diff changeset
848 ClassFieldMap* field_map = new ClassFieldMap();
a61af66fc99e Initial load
duke
parents:
diff changeset
849
a61af66fc99e Initial load
duke
parents:
diff changeset
850 FilteredFieldStream f(ikh, false, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
851
a61af66fc99e Initial load
duke
parents:
diff changeset
852 int max_field_index = f.field_count()-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
853
a61af66fc99e Initial load
duke
parents:
diff changeset
854 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
855 for (FilteredFieldStream fld(ikh, false, false); !fld.eos(); fld.next(), index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
856 // ignore static fields
a61af66fc99e Initial load
duke
parents:
diff changeset
857 if (fld.access_flags().is_static()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
858 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
859 }
a61af66fc99e Initial load
duke
parents:
diff changeset
860 field_map->add(max_field_index - index, fld.signature()->byte_at(0), fld.offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
861 }
a61af66fc99e Initial load
duke
parents:
diff changeset
862
a61af66fc99e Initial load
duke
parents:
diff changeset
863 return field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
864 }
a61af66fc99e Initial load
duke
parents:
diff changeset
865
a61af66fc99e Initial load
duke
parents:
diff changeset
866 // Helper class used to cache a ClassFileMap for the instance fields of
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
867 // a cache. A JvmtiCachedClassFieldMap can be cached by an InstanceKlass during
0
a61af66fc99e Initial load
duke
parents:
diff changeset
868 // heap iteration and avoid creating a field map for each object in the heap
a61af66fc99e Initial load
duke
parents:
diff changeset
869 // (only need to create the map when the first instance of a class is encountered).
a61af66fc99e Initial load
duke
parents:
diff changeset
870 //
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
871 class JvmtiCachedClassFieldMap : public CHeapObj<mtInternal> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
872 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
873 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
874 initial_class_count = 200
a61af66fc99e Initial load
duke
parents:
diff changeset
875 };
a61af66fc99e Initial load
duke
parents:
diff changeset
876 ClassFieldMap* _field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
877
a61af66fc99e Initial load
duke
parents:
diff changeset
878 ClassFieldMap* field_map() const { return _field_map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
879
a61af66fc99e Initial load
duke
parents:
diff changeset
880 JvmtiCachedClassFieldMap(ClassFieldMap* field_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
881 ~JvmtiCachedClassFieldMap();
a61af66fc99e Initial load
duke
parents:
diff changeset
882
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
883 static GrowableArray<InstanceKlass*>* _class_list;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
884 static void add_to_class_list(InstanceKlass* ik);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
885
a61af66fc99e Initial load
duke
parents:
diff changeset
886 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
887 // returns the field map for a given object (returning map cached
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
888 // by InstanceKlass if possible
0
a61af66fc99e Initial load
duke
parents:
diff changeset
889 static ClassFieldMap* get_map_of_instance_fields(oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
890
a61af66fc99e Initial load
duke
parents:
diff changeset
891 // removes the field map from all instanceKlasses - should be
a61af66fc99e Initial load
duke
parents:
diff changeset
892 // called before VM operation completes
a61af66fc99e Initial load
duke
parents:
diff changeset
893 static void clear_cache();
a61af66fc99e Initial load
duke
parents:
diff changeset
894
a61af66fc99e Initial load
duke
parents:
diff changeset
895 // returns the number of ClassFieldMap cached by instanceKlasses
a61af66fc99e Initial load
duke
parents:
diff changeset
896 static int cached_field_map_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
897 };
a61af66fc99e Initial load
duke
parents:
diff changeset
898
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
899 GrowableArray<InstanceKlass*>* JvmtiCachedClassFieldMap::_class_list;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
900
a61af66fc99e Initial load
duke
parents:
diff changeset
901 JvmtiCachedClassFieldMap::JvmtiCachedClassFieldMap(ClassFieldMap* field_map) {
a61af66fc99e Initial load
duke
parents:
diff changeset
902 _field_map = field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
903 }
a61af66fc99e Initial load
duke
parents:
diff changeset
904
a61af66fc99e Initial load
duke
parents:
diff changeset
905 JvmtiCachedClassFieldMap::~JvmtiCachedClassFieldMap() {
a61af66fc99e Initial load
duke
parents:
diff changeset
906 if (_field_map != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
907 delete _field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
908 }
a61af66fc99e Initial load
duke
parents:
diff changeset
909 }
a61af66fc99e Initial load
duke
parents:
diff changeset
910
a61af66fc99e Initial load
duke
parents:
diff changeset
911 // Marker class to ensure that the class file map cache is only used in a defined
a61af66fc99e Initial load
duke
parents:
diff changeset
912 // scope.
a61af66fc99e Initial load
duke
parents:
diff changeset
913 class ClassFieldMapCacheMark : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
914 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
915 static bool _is_active;
a61af66fc99e Initial load
duke
parents:
diff changeset
916 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
917 ClassFieldMapCacheMark() {
a61af66fc99e Initial load
duke
parents:
diff changeset
918 assert(Thread::current()->is_VM_thread(), "must be VMThread");
a61af66fc99e Initial load
duke
parents:
diff changeset
919 assert(JvmtiCachedClassFieldMap::cached_field_map_count() == 0, "cache not empty");
a61af66fc99e Initial load
duke
parents:
diff changeset
920 assert(!_is_active, "ClassFieldMapCacheMark cannot be nested");
a61af66fc99e Initial load
duke
parents:
diff changeset
921 _is_active = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
922 }
a61af66fc99e Initial load
duke
parents:
diff changeset
923 ~ClassFieldMapCacheMark() {
a61af66fc99e Initial load
duke
parents:
diff changeset
924 JvmtiCachedClassFieldMap::clear_cache();
a61af66fc99e Initial load
duke
parents:
diff changeset
925 _is_active = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
926 }
a61af66fc99e Initial load
duke
parents:
diff changeset
927 static bool is_active() { return _is_active; }
a61af66fc99e Initial load
duke
parents:
diff changeset
928 };
a61af66fc99e Initial load
duke
parents:
diff changeset
929
a61af66fc99e Initial load
duke
parents:
diff changeset
930 bool ClassFieldMapCacheMark::_is_active;
a61af66fc99e Initial load
duke
parents:
diff changeset
931
a61af66fc99e Initial load
duke
parents:
diff changeset
932
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
933 // record that the given InstanceKlass is caching a field map
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
934 void JvmtiCachedClassFieldMap::add_to_class_list(InstanceKlass* ik) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
935 if (_class_list == NULL) {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
936 _class_list = new (ResourceObj::C_HEAP, mtInternal)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
937 GrowableArray<InstanceKlass*>(initial_class_count, true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
938 }
a61af66fc99e Initial load
duke
parents:
diff changeset
939 _class_list->push(ik);
a61af66fc99e Initial load
duke
parents:
diff changeset
940 }
a61af66fc99e Initial load
duke
parents:
diff changeset
941
a61af66fc99e Initial load
duke
parents:
diff changeset
942 // returns the instance field map for the given object
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
943 // (returns field map cached by the InstanceKlass if possible)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
944 ClassFieldMap* JvmtiCachedClassFieldMap::get_map_of_instance_fields(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
945 assert(Thread::current()->is_VM_thread(), "must be VMThread");
a61af66fc99e Initial load
duke
parents:
diff changeset
946 assert(ClassFieldMapCacheMark::is_active(), "ClassFieldMapCacheMark not active");
a61af66fc99e Initial load
duke
parents:
diff changeset
947
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
948 Klass* k = obj->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
949 InstanceKlass* ik = InstanceKlass::cast(k);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
950
a61af66fc99e Initial load
duke
parents:
diff changeset
951 // return cached map if possible
a61af66fc99e Initial load
duke
parents:
diff changeset
952 JvmtiCachedClassFieldMap* cached_map = ik->jvmti_cached_class_field_map();
a61af66fc99e Initial load
duke
parents:
diff changeset
953 if (cached_map != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
954 assert(cached_map->field_map() != NULL, "missing field list");
a61af66fc99e Initial load
duke
parents:
diff changeset
955 return cached_map->field_map();
a61af66fc99e Initial load
duke
parents:
diff changeset
956 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
957 ClassFieldMap* field_map = ClassFieldMap::create_map_of_instance_fields(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
958 cached_map = new JvmtiCachedClassFieldMap(field_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
959 ik->set_jvmti_cached_class_field_map(cached_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
960 add_to_class_list(ik);
a61af66fc99e Initial load
duke
parents:
diff changeset
961 return field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
962 }
a61af66fc99e Initial load
duke
parents:
diff changeset
963 }
a61af66fc99e Initial load
duke
parents:
diff changeset
964
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // remove the fields maps cached from all instanceKlasses
a61af66fc99e Initial load
duke
parents:
diff changeset
966 void JvmtiCachedClassFieldMap::clear_cache() {
a61af66fc99e Initial load
duke
parents:
diff changeset
967 assert(Thread::current()->is_VM_thread(), "must be VMThread");
a61af66fc99e Initial load
duke
parents:
diff changeset
968 if (_class_list != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
969 for (int i = 0; i < _class_list->length(); i++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
970 InstanceKlass* ik = _class_list->at(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
971 JvmtiCachedClassFieldMap* cached_map = ik->jvmti_cached_class_field_map();
a61af66fc99e Initial load
duke
parents:
diff changeset
972 assert(cached_map != NULL, "should not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
973 ik->set_jvmti_cached_class_field_map(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
974 delete cached_map; // deletes the encapsulated field map
a61af66fc99e Initial load
duke
parents:
diff changeset
975 }
a61af66fc99e Initial load
duke
parents:
diff changeset
976 delete _class_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
977 _class_list = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
978 }
a61af66fc99e Initial load
duke
parents:
diff changeset
979 }
a61af66fc99e Initial load
duke
parents:
diff changeset
980
a61af66fc99e Initial load
duke
parents:
diff changeset
981 // returns the number of ClassFieldMap cached by instanceKlasses
a61af66fc99e Initial load
duke
parents:
diff changeset
982 int JvmtiCachedClassFieldMap::cached_field_map_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
983 return (_class_list == NULL) ? 0 : _class_list->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
984 }
a61af66fc99e Initial load
duke
parents:
diff changeset
985
a61af66fc99e Initial load
duke
parents:
diff changeset
986 // helper function to indicate if an object is filtered by its tag or class tag
a61af66fc99e Initial load
duke
parents:
diff changeset
987 static inline bool is_filtered_by_heap_filter(jlong obj_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
988 jlong klass_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
989 int heap_filter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
990 // apply the heap filter
a61af66fc99e Initial load
duke
parents:
diff changeset
991 if (obj_tag != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
992 // filter out tagged objects
a61af66fc99e Initial load
duke
parents:
diff changeset
993 if (heap_filter & JVMTI_HEAP_FILTER_TAGGED) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
994 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
995 // filter out untagged objects
a61af66fc99e Initial load
duke
parents:
diff changeset
996 if (heap_filter & JVMTI_HEAP_FILTER_UNTAGGED) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
997 }
a61af66fc99e Initial load
duke
parents:
diff changeset
998 if (klass_tag != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
999 // filter out objects with tagged classes
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 if (heap_filter & JVMTI_HEAP_FILTER_CLASS_TAGGED) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 // filter out objects with untagged classes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 if (heap_filter & JVMTI_HEAP_FILTER_CLASS_UNTAGGED) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1007
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 // helper function to indicate if an object is filtered by a klass filter
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 static inline bool is_filtered_by_klass_filter(oop obj, KlassHandle klass_filter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 if (!klass_filter.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 if (obj->klass() != klass_filter()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1017
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 // helper function to tell if a field is a primitive field or not
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 static inline bool is_primitive_field_type(char type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 return (type != 'L' && type != '[');
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1022
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 // helper function to copy the value from location addr to jvalue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 static inline void copy_to_jvalue(jvalue *v, address addr, jvmtiPrimitiveType value_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 switch (value_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 case JVMTI_PRIMITIVE_TYPE_BOOLEAN : { v->z = *(jboolean*)addr; break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 case JVMTI_PRIMITIVE_TYPE_BYTE : { v->b = *(jbyte*)addr; break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 case JVMTI_PRIMITIVE_TYPE_CHAR : { v->c = *(jchar*)addr; break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 case JVMTI_PRIMITIVE_TYPE_SHORT : { v->s = *(jshort*)addr; break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 case JVMTI_PRIMITIVE_TYPE_INT : { v->i = *(jint*)addr; break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 case JVMTI_PRIMITIVE_TYPE_LONG : { v->j = *(jlong*)addr; break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 case JVMTI_PRIMITIVE_TYPE_FLOAT : { v->f = *(jfloat*)addr; break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 case JVMTI_PRIMITIVE_TYPE_DOUBLE : { v->d = *(jdouble*)addr; break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1037
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 // helper function to invoke string primitive value callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 // returns visit control flags
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 static jint invoke_string_value_callback(jvmtiStringPrimitiveValueCallback cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 CallbackWrapper* wrapper,
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 oop str,
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 void* user_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 {
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 989
diff changeset
1045 assert(str->klass() == SystemDictionary::String_klass(), "not a string");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1046
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 // get the string value and length
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 // (string value may be offset from the base)
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 int s_len = java_lang_String::length(str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 typeArrayOop s_value = java_lang_String::value(str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 int s_offset = java_lang_String::offset(str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 jchar* value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 if (s_len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 value = s_value->char_at_addr(s_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 value = (jchar*) s_value->base(T_CHAR);
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1058
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 // invoke the callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 return (*cb)(wrapper->klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 wrapper->obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 wrapper->obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 value,
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 (jint)s_len,
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1067
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 // helper function to invoke string primitive value callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 // returns visit control flags
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 static jint invoke_array_primitive_value_callback(jvmtiArrayPrimitiveValueCallback cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 CallbackWrapper* wrapper,
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 oop obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 void* user_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 assert(obj->is_typeArray(), "not a primitive array");
a61af66fc99e Initial load
duke
parents:
diff changeset
1076
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 // get base address of first element
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 typeArrayOop array = typeArrayOop(obj);
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6738
diff changeset
1079 BasicType type = TypeArrayKlass::cast(array->klass())->element_type();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 void* elements = array->base(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1081
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 // jvmtiPrimitiveType is defined so this mapping is always correct
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 jvmtiPrimitiveType elem_type = (jvmtiPrimitiveType)type2char(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1084
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 return (*cb)(wrapper->klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 wrapper->obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 wrapper->obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 (jint)array->length(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 elem_type,
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 elements,
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1093
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 // helper function to invoke the primitive field callback for all static fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 // of a given class
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 static jint invoke_primitive_field_callback_for_static_fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 (CallbackWrapper* wrapper,
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 oop obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 jvmtiPrimitiveFieldCallback cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 void* user_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 // for static fields only the index will be set
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 static jvmtiHeapReferenceInfo reference_info = { 0 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1104
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 989
diff changeset
1105 assert(obj->klass() == SystemDictionary::Class_klass(), "not a class");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 if (java_lang_Class::is_primitive(obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
1109 Klass* klass = java_lang_Class::as_Klass(obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1110
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 // ignore classes for object and type arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 if (!klass->oop_is_instance()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1115
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 // ignore classes which aren't linked yet
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
1117 InstanceKlass* ik = InstanceKlass::cast(klass);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 if (!ik->is_linked()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1121
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 // get the field map
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
1123 ClassFieldMap* field_map = ClassFieldMap::create_map_of_static_fields(klass);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1124
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 // invoke the callback for each static primitive field
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 for (int i=0; i<field_map->field_count(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 ClassFieldDescriptor* field = field_map->field_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1128
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 // ignore non-primitive fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 char type = field->field_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 if (!is_primitive_field_type(type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 // one-to-one mapping
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 jvmtiPrimitiveType value_type = (jvmtiPrimitiveType)type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1136
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 // get offset and field value
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 int offset = field->field_offset();
6871
045cb62046a7 7093328: JVMTI: jvmtiPrimitiveFieldCallback always report 0's for static primitives
rbackman
parents: 6856
diff changeset
1139 address addr = (address)klass->java_mirror() + offset;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 jvalue value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 copy_to_jvalue(&value, addr, value_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1142
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 // field index
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 reference_info.field.index = field->field_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
1145
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 // invoke the callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 jint res = (*cb)(JVMTI_HEAP_REFERENCE_STATIC_FIELD,
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 &reference_info,
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 wrapper->klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 wrapper->obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 value,
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 value_type,
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 if (res & JVMTI_VISIT_ABORT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 delete field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1159
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 delete field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1163
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 // helper function to invoke the primitive field callback for all instance fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 // of a given object
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 static jint invoke_primitive_field_callback_for_instance_fields(
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 CallbackWrapper* wrapper,
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 oop obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 jvmtiPrimitiveFieldCallback cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 void* user_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 // for instance fields only the index will be set
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 static jvmtiHeapReferenceInfo reference_info = { 0 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1174
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 // get the map of the instance fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 ClassFieldMap* fields = JvmtiCachedClassFieldMap::get_map_of_instance_fields(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1177
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 // invoke the callback for each instance primitive field
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 for (int i=0; i<fields->field_count(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 ClassFieldDescriptor* field = fields->field_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1181
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 // ignore non-primitive fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 char type = field->field_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 if (!is_primitive_field_type(type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 // one-to-one mapping
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 jvmtiPrimitiveType value_type = (jvmtiPrimitiveType)type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1189
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 // get offset and field value
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 int offset = field->field_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 address addr = (address)obj + offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 jvalue value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 copy_to_jvalue(&value, addr, value_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1195
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 // field index
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 reference_info.field.index = field->field_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
1198
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 // invoke the callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 jint res = (*cb)(JVMTI_HEAP_REFERENCE_FIELD,
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 &reference_info,
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 wrapper->klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 wrapper->obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 value,
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 value_type,
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 if (res & JVMTI_VISIT_ABORT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1213
a61af66fc99e Initial load
duke
parents:
diff changeset
1214
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 // VM operation to iterate over all objects in the heap (both reachable
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 // and unreachable)
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 class VM_HeapIterateOperation: public VM_Operation {
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 ObjectClosure* _blk;
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 VM_HeapIterateOperation(ObjectClosure* blk) { _blk = blk; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1222
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 VMOp_Type type() const { return VMOp_HeapIterateOperation; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 void doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 // allows class files maps to be cached during iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 ClassFieldMapCacheMark cm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1227
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 // make sure that heap is parsable (fills TLABs with filler objects)
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 Universe::heap()->ensure_parsability(false); // no need to retire TLABs
a61af66fc99e Initial load
duke
parents:
diff changeset
1230
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 // Verify heap before iteration - if the heap gets corrupted then
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 // JVMTI's IterateOverHeap will crash.
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 if (VerifyBeforeIteration) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 Universe::verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1236
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 // do the iteration
517
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 356
diff changeset
1238 // If this operation encounters a bad object when using CMS,
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 356
diff changeset
1239 // consider using safe_object_iterate() which avoids perm gen
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 356
diff changeset
1240 // objects that may contain bad references.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 Universe::heap()->object_iterate(_blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1243
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1245
a61af66fc99e Initial load
duke
parents:
diff changeset
1246
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 // An ObjectClosure used to support the deprecated IterateOverHeap and
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 // IterateOverInstancesOfClass functions
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 class IterateOverHeapObjectClosure: public ObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 JvmtiTagMap* _tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 KlassHandle _klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 jvmtiHeapObjectFilter _object_filter;
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 jvmtiHeapObjectCallback _heap_object_callback;
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 const void* _user_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1256
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 JvmtiTagMap* tag_map() const { return _tag_map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 jvmtiHeapObjectFilter object_filter() const { return _object_filter; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 jvmtiHeapObjectCallback object_callback() const { return _heap_object_callback; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 KlassHandle klass() const { return _klass; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 const void* user_data() const { return _user_data; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1263
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 // indicates if iteration has been aborted
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 bool _iteration_aborted;
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 bool is_iteration_aborted() const { return _iteration_aborted; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 void set_iteration_aborted(bool aborted) { _iteration_aborted = aborted; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1268
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 IterateOverHeapObjectClosure(JvmtiTagMap* tag_map,
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 jvmtiHeapObjectFilter object_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 jvmtiHeapObjectCallback heap_object_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 const void* user_data) :
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 _tag_map(tag_map),
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 _klass(klass),
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 _object_filter(object_filter),
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 _heap_object_callback(heap_object_callback),
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 _user_data(user_data),
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 _iteration_aborted(false)
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1283
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 void do_object(oop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1286
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 // invoked for each object in the heap
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 void IterateOverHeapObjectClosure::do_object(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 // check if iteration has been halted
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 if (is_iteration_aborted()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1291
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 // ignore any objects that aren't visible to profiler
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 if (!ServiceUtil::visible_oop(o)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1294
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 // instanceof check when filtering by klass
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 if (!klass().is_null() && !o->is_a(klass()())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 // prepare for the calllback
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 CallbackWrapper wrapper(tag_map(), o);
a61af66fc99e Initial load
duke
parents:
diff changeset
1301
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 // if the object is tagged and we're only interested in untagged objects
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 // then don't invoke the callback. Similiarly, if the object is untagged
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 // and we're only interested in tagged objects we skip the callback.
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 if (wrapper.obj_tag() != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 if (object_filter() == JVMTI_HEAP_OBJECT_UNTAGGED) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 if (object_filter() == JVMTI_HEAP_OBJECT_TAGGED) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1310
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 // invoke the agent's callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 jvmtiIterationControl control = (*object_callback())(wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 wrapper.obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 wrapper.obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 if (control == JVMTI_ITERATION_ABORT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 set_iteration_aborted(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1320
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 // An ObjectClosure used to support the IterateThroughHeap function
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 class IterateThroughHeapObjectClosure: public ObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 JvmtiTagMap* _tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 KlassHandle _klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 int _heap_filter;
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 const jvmtiHeapCallbacks* _callbacks;
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 const void* _user_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1329
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 // accessor functions
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 JvmtiTagMap* tag_map() const { return _tag_map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 int heap_filter() const { return _heap_filter; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 const jvmtiHeapCallbacks* callbacks() const { return _callbacks; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 KlassHandle klass() const { return _klass; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 const void* user_data() const { return _user_data; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1336
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 // indicates if the iteration has been aborted
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 bool _iteration_aborted;
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 bool is_iteration_aborted() const { return _iteration_aborted; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1340
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 // used to check the visit control flags. If the abort flag is set
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 // then we set the iteration aborted flag so that the iteration completes
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 // without processing any further objects
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 bool check_flags_for_abort(jint flags) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 bool is_abort = (flags & JVMTI_VISIT_ABORT) != 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 if (is_abort) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 _iteration_aborted = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 return is_abort;
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1351
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 IterateThroughHeapObjectClosure(JvmtiTagMap* tag_map,
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 int heap_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 const jvmtiHeapCallbacks* heap_callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 const void* user_data) :
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 _tag_map(tag_map),
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 _klass(klass),
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 _heap_filter(heap_filter),
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 _callbacks(heap_callbacks),
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 _user_data(user_data),
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 _iteration_aborted(false)
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1366
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 void do_object(oop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1369
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 // invoked for each object in the heap
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 void IterateThroughHeapObjectClosure::do_object(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 // check if iteration has been halted
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 if (is_iteration_aborted()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1374
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 // ignore any objects that aren't visible to profiler
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 if (!ServiceUtil::visible_oop(obj)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1377
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 // apply class filter
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 if (is_filtered_by_klass_filter(obj, klass())) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1380
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 // prepare for callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 CallbackWrapper wrapper(tag_map(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1383
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 // check if filtered by the heap filter
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 if (is_filtered_by_heap_filter(wrapper.obj_tag(), wrapper.klass_tag(), heap_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1388
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 // for arrays we need the length, otherwise -1
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 bool is_array = obj->is_array();
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 int len = is_array ? arrayOop(obj)->length() : -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1392
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 // invoke the object callback (if callback is provided)
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 if (callbacks()->heap_iteration_callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 jvmtiHeapIterationCallback cb = callbacks()->heap_iteration_callback;
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 jint res = (*cb)(wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 wrapper.obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 wrapper.obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 (jint)len,
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 if (check_flags_for_abort(res)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1403
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 // for objects and classes we report primitive fields if callback provided
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 if (callbacks()->primitive_field_callback != NULL && obj->is_instance()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 jint res;
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 jvmtiPrimitiveFieldCallback cb = callbacks()->primitive_field_callback;
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 989
diff changeset
1408 if (obj->klass() == SystemDictionary::Class_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 res = invoke_primitive_field_callback_for_static_fields(&wrapper,
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 res = invoke_primitive_field_callback_for_instance_fields(&wrapper,
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 if (check_flags_for_abort(res)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1421
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 // string callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 if (!is_array &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 callbacks()->string_primitive_value_callback != NULL &&
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 989
diff changeset
1425 obj->klass() == SystemDictionary::String_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 jint res = invoke_string_value_callback(
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 callbacks()->string_primitive_value_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 &wrapper,
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 (void*)user_data() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 if (check_flags_for_abort(res)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1433
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 // array callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 if (is_array &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 callbacks()->array_primitive_value_callback != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 obj->is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 jint res = invoke_array_primitive_value_callback(
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 callbacks()->array_primitive_value_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 &wrapper,
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 (void*)user_data() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 if (check_flags_for_abort(res)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1446
a61af66fc99e Initial load
duke
parents:
diff changeset
1447
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 // Deprecated function to iterate over all objects in the heap
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 void JvmtiTagMap::iterate_over_heap(jvmtiHeapObjectFilter object_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 jvmtiHeapObjectCallback heap_object_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 const void* user_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 MutexLocker ml(Heap_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 IterateOverHeapObjectClosure blk(this,
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 object_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 heap_object_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 VM_HeapIterateOperation op(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 VMThread::execute(&op);
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1463
a61af66fc99e Initial load
duke
parents:
diff changeset
1464
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 // Iterates over all objects in the heap
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 void JvmtiTagMap::iterate_through_heap(jint heap_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 const jvmtiHeapCallbacks* callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 const void* user_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 MutexLocker ml(Heap_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 IterateThroughHeapObjectClosure blk(this,
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 heap_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 VM_HeapIterateOperation op(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 VMThread::execute(&op);
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1480
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 // support class for get_objects_with_tags
a61af66fc99e Initial load
duke
parents:
diff changeset
1482
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 class TagObjectCollector : public JvmtiTagHashmapEntryClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 JvmtiEnv* _env;
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 jlong* _tags;
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 jint _tag_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
1488
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 GrowableArray<jobject>* _object_results; // collected objects (JNI weak refs)
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 GrowableArray<uint64_t>* _tag_results; // collected tags
a61af66fc99e Initial load
duke
parents:
diff changeset
1491
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 TagObjectCollector(JvmtiEnv* env, const jlong* tags, jint tag_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 _env = env;
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 _tags = (jlong*)tags;
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 _tag_count = tag_count;
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
1497 _object_results = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<jobject>(1,true);
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
1498 _tag_results = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<uint64_t>(1,true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1500
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 ~TagObjectCollector() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 delete _object_results;
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 delete _tag_results;
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1505
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 // for each tagged object check if the tag value matches
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 // - if it matches then we create a JNI local reference to the object
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 // and record the reference and tag value.
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 void do_entry(JvmtiTagHashmapEntry* entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 for (int i=0; i<_tag_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 if (_tags[i] == entry->tag()) {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
1513 oop o = entry->object();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
1514 assert(o != NULL && Universe::heap()->is_in_reserved(o), "sanity check");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 jobject ref = JNIHandles::make_local(JavaThread::current(), o);
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 _object_results->append(ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 _tag_results->append((uint64_t)entry->tag());
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1521
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 // return the results from the collection
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 jvmtiError result(jint* count_ptr, jobject** object_result_ptr, jlong** tag_result_ptr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 jvmtiError error;
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 int count = _object_results->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 assert(count >= 0, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
1528
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 // if object_result_ptr is not NULL then allocate the result and copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 // in the object references.
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 if (object_result_ptr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 error = _env->Allocate(count * sizeof(jobject), (unsigned char**)object_result_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 if (error != JVMTI_ERROR_NONE) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 return error;
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 for (int i=0; i<count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 (*object_result_ptr)[i] = _object_results->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1540
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 // if tag_result_ptr is not NULL then allocate the result and copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 // in the tag values.
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 if (tag_result_ptr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1544 error = _env->Allocate(count * sizeof(jlong), (unsigned char**)tag_result_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 if (error != JVMTI_ERROR_NONE) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 if (object_result_ptr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 _env->Deallocate((unsigned char*)object_result_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 return error;
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 for (int i=0; i<count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 (*tag_result_ptr)[i] = (jlong)_tag_results->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1555
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 *count_ptr = count;
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 return JVMTI_ERROR_NONE;
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1560
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 // return the list of objects with the specified tags
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 jvmtiError JvmtiTagMap::get_objects_with_tags(const jlong* tags,
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 jint count, jint* count_ptr, jobject** object_result_ptr, jlong** tag_result_ptr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1564
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 TagObjectCollector collector(env(), tags, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 // iterate over all tagged objects
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 MutexLocker ml(lock());
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 entry_iterate(&collector);
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 return collector.result(count_ptr, object_result_ptr, tag_result_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1573
a61af66fc99e Initial load
duke
parents:
diff changeset
1574
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 // ObjectMarker is used to support the marking objects when walking the
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 // heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 // This implementation uses the existing mark bits in an object for
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 // marking. Objects that are marked must later have their headers restored.
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 // As most objects are unlocked and don't have their identity hash computed
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 // we don't have to save their headers. Instead we save the headers that
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 // are "interesting". Later when the headers are restored this implementation
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 // restores all headers to their initial value and then restores the few
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 // objects that had interesting headers.
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 // Future work: This implementation currently uses growable arrays to save
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 // the oop and header of interesting objects. As an optimization we could
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 // use the same technique as the GC and make use of the unused area
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 // between top() and end().
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1591
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 // An ObjectClosure used to restore the mark bits of an object
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 class RestoreMarksClosure : public ObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 void do_object(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 if (o != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 markOop mark = o->mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 if (mark->is_marked()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 o->init_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1604
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 // ObjectMarker provides the mark and visited functions
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 class ObjectMarker : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 // saved headers
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 static GrowableArray<oop>* _saved_oop_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 static GrowableArray<markOop>* _saved_mark_stack;
3815
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1611 static bool _needs_reset; // do we need to reset mark bits?
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1612
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 static void init(); // initialize
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 static void done(); // clean-up
a61af66fc99e Initial load
duke
parents:
diff changeset
1616
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 static inline void mark(oop o); // mark an object
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 static inline bool visited(oop o); // check if object has been visited
3815
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1619
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1620 static inline bool needs_reset() { return _needs_reset; }
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1621 static inline void set_needs_reset(bool v) { _needs_reset = v; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1623
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 GrowableArray<oop>* ObjectMarker::_saved_oop_stack = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 GrowableArray<markOop>* ObjectMarker::_saved_mark_stack = NULL;
3815
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1626 bool ObjectMarker::_needs_reset = true; // need to reset mark bits by default
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1627
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 // initialize ObjectMarker - prepares for object marking
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 void ObjectMarker::init() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 assert(Thread::current()->is_VM_thread(), "must be VMThread");
a61af66fc99e Initial load
duke
parents:
diff changeset
1631
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 // prepare heap for iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 Universe::heap()->ensure_parsability(false); // no need to retire TLABs
a61af66fc99e Initial load
duke
parents:
diff changeset
1634
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 // create stacks for interesting headers
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
1636 _saved_mark_stack = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<markOop>(4000, true);
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
1637 _saved_oop_stack = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<oop>(4000, true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1638
a61af66fc99e Initial load
duke
parents:
diff changeset
1639 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 BiasedLocking::preserve_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1643
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 // Object marking is done so restore object headers
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 void ObjectMarker::done() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 // iterate over all objects and restore the mark bits to
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 // their initial value
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 RestoreMarksClosure blk;
3815
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1649 if (needs_reset()) {
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1650 Universe::heap()->object_iterate(&blk);
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1651 } else {
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1652 // We don't need to reset mark bits on this call, but reset the
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1653 // flag to the default for the next call.
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1654 set_needs_reset(true);
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
1655 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1656
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 // now restore the interesting headers
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 for (int i = 0; i < _saved_oop_stack->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 oop o = _saved_oop_stack->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 markOop mark = _saved_mark_stack->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1661 o->set_mark(mark);
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1663
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 BiasedLocking::restore_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1667
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 // free the stacks
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 delete _saved_oop_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 delete _saved_mark_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1672
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 // mark an object
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 inline void ObjectMarker::mark(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 assert(Universe::heap()->is_in(o), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 assert(!o->mark()->is_marked(), "should only mark an object once");
a61af66fc99e Initial load
duke
parents:
diff changeset
1677
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 // object's mark word
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 markOop mark = o->mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
1680
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 if (mark->must_be_preserved(o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 _saved_mark_stack->push(mark);
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 _saved_oop_stack->push(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1685
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 // mark the object
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 o->set_mark(markOopDesc::prototype()->set_marked());
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1689
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 // return true if object is marked
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 inline bool ObjectMarker::visited(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 return o->mark()->is_marked();
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1694
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 // Stack allocated class to help ensure that ObjectMarker is used
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 // correctly. Constructor initializes ObjectMarker, destructor calls
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 // ObjectMarker's done() function to restore object headers.
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 class ObjectMarkerController : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1700 ObjectMarkerController() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 ObjectMarker::init();
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 ~ObjectMarkerController() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 ObjectMarker::done();
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1706 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1707
a61af66fc99e Initial load
duke
parents:
diff changeset
1708
a61af66fc99e Initial load
duke
parents:
diff changeset
1709 // helper to map a jvmtiHeapReferenceKind to an old style jvmtiHeapRootKind
a61af66fc99e Initial load
duke
parents:
diff changeset
1710 // (not performance critical as only used for roots)
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 static jvmtiHeapRootKind toJvmtiHeapRootKind(jvmtiHeapReferenceKind kind) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1712 switch (kind) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 case JVMTI_HEAP_REFERENCE_JNI_GLOBAL: return JVMTI_HEAP_ROOT_JNI_GLOBAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 case JVMTI_HEAP_REFERENCE_SYSTEM_CLASS: return JVMTI_HEAP_ROOT_SYSTEM_CLASS;
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 case JVMTI_HEAP_REFERENCE_MONITOR: return JVMTI_HEAP_ROOT_MONITOR;
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 case JVMTI_HEAP_REFERENCE_STACK_LOCAL: return JVMTI_HEAP_ROOT_STACK_LOCAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 case JVMTI_HEAP_REFERENCE_JNI_LOCAL: return JVMTI_HEAP_ROOT_JNI_LOCAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 case JVMTI_HEAP_REFERENCE_THREAD: return JVMTI_HEAP_ROOT_THREAD;
a61af66fc99e Initial load
duke
parents:
diff changeset
1719 case JVMTI_HEAP_REFERENCE_OTHER: return JVMTI_HEAP_ROOT_OTHER;
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 default: ShouldNotReachHere(); return JVMTI_HEAP_ROOT_OTHER;
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1723
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 // Base class for all heap walk contexts. The base class maintains a flag
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 // to indicate if the context is valid or not.
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 class HeapWalkContext VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
1727 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 bool _valid;
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1730 HeapWalkContext(bool valid) { _valid = valid; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1731 void invalidate() { _valid = false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1732 bool is_valid() const { return _valid; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1733 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1734
a61af66fc99e Initial load
duke
parents:
diff changeset
1735 // A basic heap walk context for the deprecated heap walking functions.
a61af66fc99e Initial load
duke
parents:
diff changeset
1736 // The context for a basic heap walk are the callbacks and fields used by
a61af66fc99e Initial load
duke
parents:
diff changeset
1737 // the referrer caching scheme.
a61af66fc99e Initial load
duke
parents:
diff changeset
1738 class BasicHeapWalkContext: public HeapWalkContext {
a61af66fc99e Initial load
duke
parents:
diff changeset
1739 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 jvmtiHeapRootCallback _heap_root_callback;
a61af66fc99e Initial load
duke
parents:
diff changeset
1741 jvmtiStackReferenceCallback _stack_ref_callback;
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 jvmtiObjectReferenceCallback _object_ref_callback;
a61af66fc99e Initial load
duke
parents:
diff changeset
1743
a61af66fc99e Initial load
duke
parents:
diff changeset
1744 // used for caching
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 oop _last_referrer;
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 jlong _last_referrer_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
1747
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 BasicHeapWalkContext() : HeapWalkContext(false) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
1750
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 BasicHeapWalkContext(jvmtiHeapRootCallback heap_root_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 jvmtiStackReferenceCallback stack_ref_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 jvmtiObjectReferenceCallback object_ref_callback) :
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 HeapWalkContext(true),
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 _heap_root_callback(heap_root_callback),
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 _stack_ref_callback(stack_ref_callback),
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 _object_ref_callback(object_ref_callback),
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 _last_referrer(NULL),
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 _last_referrer_tag(0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1761
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 jvmtiHeapRootCallback heap_root_callback() const { return _heap_root_callback; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1764 jvmtiStackReferenceCallback stack_ref_callback() const { return _stack_ref_callback; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 jvmtiObjectReferenceCallback object_ref_callback() const { return _object_ref_callback; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1766
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 oop last_referrer() const { return _last_referrer; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 void set_last_referrer(oop referrer) { _last_referrer = referrer; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 jlong last_referrer_tag() const { return _last_referrer_tag; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 void set_last_referrer_tag(jlong value) { _last_referrer_tag = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1772
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 // The advanced heap walk context for the FollowReferences functions.
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 // The context is the callbacks, and the fields used for filtering.
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 class AdvancedHeapWalkContext: public HeapWalkContext {
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 jint _heap_filter;
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 KlassHandle _klass_filter;
a61af66fc99e Initial load
duke
parents:
diff changeset
1779 const jvmtiHeapCallbacks* _heap_callbacks;
a61af66fc99e Initial load
duke
parents:
diff changeset
1780
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 AdvancedHeapWalkContext() : HeapWalkContext(false) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
1783
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 AdvancedHeapWalkContext(jint heap_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 KlassHandle klass_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 const jvmtiHeapCallbacks* heap_callbacks) :
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 HeapWalkContext(true),
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 _heap_filter(heap_filter),
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 _klass_filter(klass_filter),
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 _heap_callbacks(heap_callbacks) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1792
a61af66fc99e Initial load
duke
parents:
diff changeset
1793 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 jint heap_filter() const { return _heap_filter; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 KlassHandle klass_filter() const { return _klass_filter; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1796
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 const jvmtiHeapReferenceCallback heap_reference_callback() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 return _heap_callbacks->heap_reference_callback;
a61af66fc99e Initial load
duke
parents:
diff changeset
1799 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 const jvmtiPrimitiveFieldCallback primitive_field_callback() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 return _heap_callbacks->primitive_field_callback;
a61af66fc99e Initial load
duke
parents:
diff changeset
1802 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 const jvmtiArrayPrimitiveValueCallback array_primitive_value_callback() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 return _heap_callbacks->array_primitive_value_callback;
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 const jvmtiStringPrimitiveValueCallback string_primitive_value_callback() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 return _heap_callbacks->string_primitive_value_callback;
a61af66fc99e Initial load
duke
parents:
diff changeset
1808 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1809 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1810
a61af66fc99e Initial load
duke
parents:
diff changeset
1811 // The CallbackInvoker is a class with static functions that the heap walk can call
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 // into to invoke callbacks. It works in one of two modes. The "basic" mode is
a61af66fc99e Initial load
duke
parents:
diff changeset
1813 // used for the deprecated IterateOverReachableObjects functions. The "advanced"
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 // mode is for the newer FollowReferences function which supports a lot of
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 // additional callbacks.
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 class CallbackInvoker : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 // heap walk styles
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 enum { basic, advanced };
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 static int _heap_walk_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 static bool is_basic_heap_walk() { return _heap_walk_type == basic; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 static bool is_advanced_heap_walk() { return _heap_walk_type == advanced; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1823
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 // context for basic style heap walk
a61af66fc99e Initial load
duke
parents:
diff changeset
1825 static BasicHeapWalkContext _basic_context;
a61af66fc99e Initial load
duke
parents:
diff changeset
1826 static BasicHeapWalkContext* basic_context() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 assert(_basic_context.is_valid(), "invalid");
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 return &_basic_context;
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1830
a61af66fc99e Initial load
duke
parents:
diff changeset
1831 // context for advanced style heap walk
a61af66fc99e Initial load
duke
parents:
diff changeset
1832 static AdvancedHeapWalkContext _advanced_context;
a61af66fc99e Initial load
duke
parents:
diff changeset
1833 static AdvancedHeapWalkContext* advanced_context() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 assert(_advanced_context.is_valid(), "invalid");
a61af66fc99e Initial load
duke
parents:
diff changeset
1835 return &_advanced_context;
a61af66fc99e Initial load
duke
parents:
diff changeset
1836 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1837
a61af66fc99e Initial load
duke
parents:
diff changeset
1838 // context needed for all heap walks
a61af66fc99e Initial load
duke
parents:
diff changeset
1839 static JvmtiTagMap* _tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
1840 static const void* _user_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1841 static GrowableArray<oop>* _visit_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
1842
a61af66fc99e Initial load
duke
parents:
diff changeset
1843 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
1844 static JvmtiTagMap* tag_map() { return _tag_map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1845 static const void* user_data() { return _user_data; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1846 static GrowableArray<oop>* visit_stack() { return _visit_stack; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1847
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 // if the object hasn't been visited then push it onto the visit stack
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 // so that it will be visited later
a61af66fc99e Initial load
duke
parents:
diff changeset
1850 static inline bool check_for_visit(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1851 if (!ObjectMarker::visited(obj)) visit_stack()->push(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1852 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1854
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 // invoke basic style callbacks
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 static inline bool invoke_basic_heap_root_callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1857 (jvmtiHeapRootKind root_kind, oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 static inline bool invoke_basic_stack_ref_callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 (jvmtiHeapRootKind root_kind, jlong thread_tag, jint depth, jmethodID method,
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 int slot, oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 static inline bool invoke_basic_object_reference_callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 (jvmtiObjectReferenceKind ref_kind, oop referrer, oop referree, jint index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1863
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 // invoke advanced style callbacks
a61af66fc99e Initial load
duke
parents:
diff changeset
1865 static inline bool invoke_advanced_heap_root_callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1866 (jvmtiHeapReferenceKind ref_kind, oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1867 static inline bool invoke_advanced_stack_ref_callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 (jvmtiHeapReferenceKind ref_kind, jlong thread_tag, jlong tid, int depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 jmethodID method, jlocation bci, jint slot, oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 static inline bool invoke_advanced_object_reference_callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 (jvmtiHeapReferenceKind ref_kind, oop referrer, oop referree, jint index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1872
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 // used to report the value of primitive fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 static inline bool report_primitive_field
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 (jvmtiHeapReferenceKind ref_kind, oop obj, jint index, address addr, char type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1876
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1878 // initialize for basic mode
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 static void initialize_for_basic_heap_walk(JvmtiTagMap* tag_map,
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 GrowableArray<oop>* visit_stack,
a61af66fc99e Initial load
duke
parents:
diff changeset
1881 const void* user_data,
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 BasicHeapWalkContext context);
a61af66fc99e Initial load
duke
parents:
diff changeset
1883
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 // initialize for advanced mode
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 static void initialize_for_advanced_heap_walk(JvmtiTagMap* tag_map,
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 GrowableArray<oop>* visit_stack,
a61af66fc99e Initial load
duke
parents:
diff changeset
1887 const void* user_data,
a61af66fc99e Initial load
duke
parents:
diff changeset
1888 AdvancedHeapWalkContext context);
a61af66fc99e Initial load
duke
parents:
diff changeset
1889
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 // functions to report roots
a61af66fc99e Initial load
duke
parents:
diff changeset
1891 static inline bool report_simple_root(jvmtiHeapReferenceKind kind, oop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
1892 static inline bool report_jni_local_root(jlong thread_tag, jlong tid, jint depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 jmethodID m, oop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 static inline bool report_stack_ref_root(jlong thread_tag, jlong tid, jint depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 jmethodID method, jlocation bci, jint slot, oop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
1896
a61af66fc99e Initial load
duke
parents:
diff changeset
1897 // functions to report references
a61af66fc99e Initial load
duke
parents:
diff changeset
1898 static inline bool report_array_element_reference(oop referrer, oop referree, jint index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 static inline bool report_class_reference(oop referrer, oop referree);
a61af66fc99e Initial load
duke
parents:
diff changeset
1900 static inline bool report_class_loader_reference(oop referrer, oop referree);
a61af66fc99e Initial load
duke
parents:
diff changeset
1901 static inline bool report_signers_reference(oop referrer, oop referree);
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 static inline bool report_protection_domain_reference(oop referrer, oop referree);
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 static inline bool report_superclass_reference(oop referrer, oop referree);
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 static inline bool report_interface_reference(oop referrer, oop referree);
a61af66fc99e Initial load
duke
parents:
diff changeset
1905 static inline bool report_static_field_reference(oop referrer, oop referree, jint slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 static inline bool report_field_reference(oop referrer, oop referree, jint slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 static inline bool report_constant_pool_reference(oop referrer, oop referree, jint index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 static inline bool report_primitive_array_values(oop array);
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 static inline bool report_string_value(oop str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 static inline bool report_primitive_instance_field(oop o, jint index, address value, char type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1911 static inline bool report_primitive_static_field(oop o, jint index, address value, char type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1912 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1913
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 // statics
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 int CallbackInvoker::_heap_walk_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 BasicHeapWalkContext CallbackInvoker::_basic_context;
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 AdvancedHeapWalkContext CallbackInvoker::_advanced_context;
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 JvmtiTagMap* CallbackInvoker::_tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 const void* CallbackInvoker::_user_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 GrowableArray<oop>* CallbackInvoker::_visit_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
1921
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 // initialize for basic heap walk (IterateOverReachableObjects et al)
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 void CallbackInvoker::initialize_for_basic_heap_walk(JvmtiTagMap* tag_map,
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 GrowableArray<oop>* visit_stack,
a61af66fc99e Initial load
duke
parents:
diff changeset
1925 const void* user_data,
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 BasicHeapWalkContext context) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 _tag_map = tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 _visit_stack = visit_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
1929 _user_data = user_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 _basic_context = context;
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 _advanced_context.invalidate(); // will trigger assertion if used
a61af66fc99e Initial load
duke
parents:
diff changeset
1932 _heap_walk_type = basic;
a61af66fc99e Initial load
duke
parents:
diff changeset
1933 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1934
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 // initialize for advanced heap walk (FollowReferences)
a61af66fc99e Initial load
duke
parents:
diff changeset
1936 void CallbackInvoker::initialize_for_advanced_heap_walk(JvmtiTagMap* tag_map,
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 GrowableArray<oop>* visit_stack,
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 const void* user_data,
a61af66fc99e Initial load
duke
parents:
diff changeset
1939 AdvancedHeapWalkContext context) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 _tag_map = tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
1941 _visit_stack = visit_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
1942 _user_data = user_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 _advanced_context = context;
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 _basic_context.invalidate(); // will trigger assertion if used
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 _heap_walk_type = advanced;
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1947
a61af66fc99e Initial load
duke
parents:
diff changeset
1948
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 // invoke basic style heap root callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 inline bool CallbackInvoker::invoke_basic_heap_root_callback(jvmtiHeapRootKind root_kind, oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 assert(ServiceUtil::visible_oop(obj), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1952
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 // if we heap roots should be reported
a61af66fc99e Initial load
duke
parents:
diff changeset
1954 jvmtiHeapRootCallback cb = basic_context()->heap_root_callback();
a61af66fc99e Initial load
duke
parents:
diff changeset
1955 if (cb == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1957 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1958
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 CallbackWrapper wrapper(tag_map(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 jvmtiIterationControl control = (*cb)(root_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 wrapper.obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 wrapper.obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 // push root to visit stack when following references
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 if (control == JVMTI_ITERATION_CONTINUE &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 basic_context()->object_ref_callback() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 visit_stack()->push(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 return control != JVMTI_ITERATION_ABORT;
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1972
a61af66fc99e Initial load
duke
parents:
diff changeset
1973 // invoke basic style stack ref callback
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 inline bool CallbackInvoker::invoke_basic_stack_ref_callback(jvmtiHeapRootKind root_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 jlong thread_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 jint depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 jmethodID method,
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 jint slot,
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 assert(ServiceUtil::visible_oop(obj), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1981
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 // if we stack refs should be reported
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 jvmtiStackReferenceCallback cb = basic_context()->stack_ref_callback();
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 if (cb == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1987
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 CallbackWrapper wrapper(tag_map(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 jvmtiIterationControl control = (*cb)(root_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 wrapper.obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 wrapper.obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 thread_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 method,
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 slot,
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 // push root to visit stack when following references
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 if (control == JVMTI_ITERATION_CONTINUE &&
a61af66fc99e Initial load
duke
parents:
diff changeset
2000 basic_context()->object_ref_callback() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2001 visit_stack()->push(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2002 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2003 return control != JVMTI_ITERATION_ABORT;
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2005
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 // invoke basic style object reference callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 inline bool CallbackInvoker::invoke_basic_object_reference_callback(jvmtiObjectReferenceKind ref_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 oop referrer,
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 oop referree,
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 jint index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2011
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 assert(ServiceUtil::visible_oop(referrer), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 assert(ServiceUtil::visible_oop(referree), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
2014
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 BasicHeapWalkContext* context = basic_context();
a61af66fc99e Initial load
duke
parents:
diff changeset
2016
a61af66fc99e Initial load
duke
parents:
diff changeset
2017 // callback requires the referrer's tag. If it's the same referrer
a61af66fc99e Initial load
duke
parents:
diff changeset
2018 // as the last call then we use the cached value.
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 jlong referrer_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 if (referrer == context->last_referrer()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 referrer_tag = context->last_referrer_tag();
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 } else {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2023 referrer_tag = tag_for(tag_map(), referrer);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2025
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 // do the callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 CallbackWrapper wrapper(tag_map(), referree);
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 jvmtiObjectReferenceCallback cb = context->object_ref_callback();
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 jvmtiIterationControl control = (*cb)(ref_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 wrapper.obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 wrapper.obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 referrer_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 index,
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
2036
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 // record referrer and referrer tag. For self-references record the
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 // tag value from the callback as this might differ from referrer_tag.
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 context->set_last_referrer(referrer);
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 if (referrer == referree) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2041 context->set_last_referrer_tag(*wrapper.obj_tag_p());
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 context->set_last_referrer_tag(referrer_tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2045
a61af66fc99e Initial load
duke
parents:
diff changeset
2046 if (control == JVMTI_ITERATION_CONTINUE) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 return check_for_visit(referree);
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2049 return control != JVMTI_ITERATION_ABORT;
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2052
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 // invoke advanced style heap root callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2054 inline bool CallbackInvoker::invoke_advanced_heap_root_callback(jvmtiHeapReferenceKind ref_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
2055 oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2056 assert(ServiceUtil::visible_oop(obj), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
2057
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 AdvancedHeapWalkContext* context = advanced_context();
a61af66fc99e Initial load
duke
parents:
diff changeset
2059
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 // check that callback is provided
a61af66fc99e Initial load
duke
parents:
diff changeset
2061 jvmtiHeapReferenceCallback cb = context->heap_reference_callback();
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 if (cb == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2065
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 // apply class filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 if (is_filtered_by_klass_filter(obj, context->klass_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2070
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 // setup the callback wrapper
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 CallbackWrapper wrapper(tag_map(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2073
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 // apply tag filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 if (is_filtered_by_heap_filter(wrapper.obj_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 context->heap_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2080
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 // for arrays we need the length, otherwise -1
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 jint len = (jint)(obj->is_array() ? arrayOop(obj)->length() : -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2083
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 // invoke the callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 jint res = (*cb)(ref_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 NULL, // referrer info
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 0, // referrer_class_tag is 0 for heap root
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 wrapper.obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 wrapper.obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 NULL, // referrer_tag_p
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 len,
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 if (res & JVMTI_VISIT_ABORT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 return false;// referrer class tag
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 if (res & JVMTI_VISIT_OBJECTS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2100 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2102
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 // report a reference from a thread stack to an object
a61af66fc99e Initial load
duke
parents:
diff changeset
2104 inline bool CallbackInvoker::invoke_advanced_stack_ref_callback(jvmtiHeapReferenceKind ref_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
2105 jlong thread_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 jlong tid,
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 int depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 jmethodID method,
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 jlocation bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
2110 jint slot,
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2112 assert(ServiceUtil::visible_oop(obj), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
2113
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 AdvancedHeapWalkContext* context = advanced_context();
a61af66fc99e Initial load
duke
parents:
diff changeset
2115
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 // check that callback is provider
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 jvmtiHeapReferenceCallback cb = context->heap_reference_callback();
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 if (cb == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2121
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 // apply class filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 if (is_filtered_by_klass_filter(obj, context->klass_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2126
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 // setup the callback wrapper
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 CallbackWrapper wrapper(tag_map(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2129
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 // apply tag filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 if (is_filtered_by_heap_filter(wrapper.obj_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 context->heap_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2136
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 // setup the referrer info
a61af66fc99e Initial load
duke
parents:
diff changeset
2138 jvmtiHeapReferenceInfo reference_info;
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 reference_info.stack_local.thread_tag = thread_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 reference_info.stack_local.thread_id = tid;
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 reference_info.stack_local.depth = depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
2142 reference_info.stack_local.method = method;
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 reference_info.stack_local.location = bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 reference_info.stack_local.slot = slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
2145
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 // for arrays we need the length, otherwise -1
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 jint len = (jint)(obj->is_array() ? arrayOop(obj)->length() : -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2148
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 // call into the agent
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 int res = (*cb)(ref_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 &reference_info,
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 0, // referrer_class_tag is 0 for heap root (stack)
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 wrapper.obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2155 wrapper.obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 NULL, // referrer_tag is 0 for root
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 len,
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
2159
a61af66fc99e Initial load
duke
parents:
diff changeset
2160 if (res & JVMTI_VISIT_ABORT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 if (res & JVMTI_VISIT_OBJECTS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2168
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 // This mask is used to pass reference_info to a jvmtiHeapReferenceCallback
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 // only for ref_kinds defined by the JVM TI spec. Otherwise, NULL is passed.
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 #define REF_INFO_MASK ((1 << JVMTI_HEAP_REFERENCE_FIELD) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 | (1 << JVMTI_HEAP_REFERENCE_STATIC_FIELD) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 | (1 << JVMTI_HEAP_REFERENCE_ARRAY_ELEMENT) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2174 | (1 << JVMTI_HEAP_REFERENCE_CONSTANT_POOL) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 | (1 << JVMTI_HEAP_REFERENCE_STACK_LOCAL) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 | (1 << JVMTI_HEAP_REFERENCE_JNI_LOCAL))
a61af66fc99e Initial load
duke
parents:
diff changeset
2177
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 // invoke the object reference callback to report a reference
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 inline bool CallbackInvoker::invoke_advanced_object_reference_callback(jvmtiHeapReferenceKind ref_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 oop referrer,
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 oop obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 jint index)
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 // field index is only valid field in reference_info
a61af66fc99e Initial load
duke
parents:
diff changeset
2185 static jvmtiHeapReferenceInfo reference_info = { 0 };
a61af66fc99e Initial load
duke
parents:
diff changeset
2186
a61af66fc99e Initial load
duke
parents:
diff changeset
2187 assert(ServiceUtil::visible_oop(referrer), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 assert(ServiceUtil::visible_oop(obj), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
2189
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 AdvancedHeapWalkContext* context = advanced_context();
a61af66fc99e Initial load
duke
parents:
diff changeset
2191
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 // check that callback is provider
a61af66fc99e Initial load
duke
parents:
diff changeset
2193 jvmtiHeapReferenceCallback cb = context->heap_reference_callback();
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 if (cb == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2195 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2197
a61af66fc99e Initial load
duke
parents:
diff changeset
2198 // apply class filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2199 if (is_filtered_by_klass_filter(obj, context->klass_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2202
a61af66fc99e Initial load
duke
parents:
diff changeset
2203 // setup the callback wrapper
a61af66fc99e Initial load
duke
parents:
diff changeset
2204 TwoOopCallbackWrapper wrapper(tag_map(), referrer, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2205
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 // apply tag filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2207 if (is_filtered_by_heap_filter(wrapper.obj_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2208 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 context->heap_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2210 return check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2212
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 // field index is only valid field in reference_info
a61af66fc99e Initial load
duke
parents:
diff changeset
2214 reference_info.field.index = index;
a61af66fc99e Initial load
duke
parents:
diff changeset
2215
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 // for arrays we need the length, otherwise -1
a61af66fc99e Initial load
duke
parents:
diff changeset
2217 jint len = (jint)(obj->is_array() ? arrayOop(obj)->length() : -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2218
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 // invoke the callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 int res = (*cb)(ref_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 (REF_INFO_MASK & (1 << ref_kind)) ? &reference_info : NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 wrapper.referrer_klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2224 wrapper.obj_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2225 wrapper.obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 wrapper.referrer_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 len,
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
2229
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 if (res & JVMTI_VISIT_ABORT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 if (res & JVMTI_VISIT_OBJECTS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 check_for_visit(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2236 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2238
a61af66fc99e Initial load
duke
parents:
diff changeset
2239 // report a "simple root"
a61af66fc99e Initial load
duke
parents:
diff changeset
2240 inline bool CallbackInvoker::report_simple_root(jvmtiHeapReferenceKind kind, oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2241 assert(kind != JVMTI_HEAP_REFERENCE_STACK_LOCAL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
2242 kind != JVMTI_HEAP_REFERENCE_JNI_LOCAL, "not a simple root");
a61af66fc99e Initial load
duke
parents:
diff changeset
2243 assert(ServiceUtil::visible_oop(obj), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
2244
a61af66fc99e Initial load
duke
parents:
diff changeset
2245 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2246 // map to old style root kind
a61af66fc99e Initial load
duke
parents:
diff changeset
2247 jvmtiHeapRootKind root_kind = toJvmtiHeapRootKind(kind);
a61af66fc99e Initial load
duke
parents:
diff changeset
2248 return invoke_basic_heap_root_callback(root_kind, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2249 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2250 assert(is_advanced_heap_walk(), "wrong heap walk type");
a61af66fc99e Initial load
duke
parents:
diff changeset
2251 return invoke_advanced_heap_root_callback(kind, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2254
a61af66fc99e Initial load
duke
parents:
diff changeset
2255
a61af66fc99e Initial load
duke
parents:
diff changeset
2256 // invoke the primitive array values
a61af66fc99e Initial load
duke
parents:
diff changeset
2257 inline bool CallbackInvoker::report_primitive_array_values(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2258 assert(obj->is_typeArray(), "not a primitive array");
a61af66fc99e Initial load
duke
parents:
diff changeset
2259
a61af66fc99e Initial load
duke
parents:
diff changeset
2260 AdvancedHeapWalkContext* context = advanced_context();
a61af66fc99e Initial load
duke
parents:
diff changeset
2261 assert(context->array_primitive_value_callback() != NULL, "no callback");
a61af66fc99e Initial load
duke
parents:
diff changeset
2262
a61af66fc99e Initial load
duke
parents:
diff changeset
2263 // apply class filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2264 if (is_filtered_by_klass_filter(obj, context->klass_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2265 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2267
a61af66fc99e Initial load
duke
parents:
diff changeset
2268 CallbackWrapper wrapper(tag_map(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2269
a61af66fc99e Initial load
duke
parents:
diff changeset
2270 // apply tag filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2271 if (is_filtered_by_heap_filter(wrapper.obj_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 context->heap_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2276
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 // invoke the callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2278 int res = invoke_array_primitive_value_callback(context->array_primitive_value_callback(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2279 &wrapper,
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
2281 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 return (!(res & JVMTI_VISIT_ABORT));
a61af66fc99e Initial load
duke
parents:
diff changeset
2283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2284
a61af66fc99e Initial load
duke
parents:
diff changeset
2285 // invoke the string value callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2286 inline bool CallbackInvoker::report_string_value(oop str) {
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 989
diff changeset
2287 assert(str->klass() == SystemDictionary::String_klass(), "not a string");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2288
a61af66fc99e Initial load
duke
parents:
diff changeset
2289 AdvancedHeapWalkContext* context = advanced_context();
a61af66fc99e Initial load
duke
parents:
diff changeset
2290 assert(context->string_primitive_value_callback() != NULL, "no callback");
a61af66fc99e Initial load
duke
parents:
diff changeset
2291
a61af66fc99e Initial load
duke
parents:
diff changeset
2292 // apply class filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2293 if (is_filtered_by_klass_filter(str, context->klass_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2296
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 CallbackWrapper wrapper(tag_map(), str);
a61af66fc99e Initial load
duke
parents:
diff changeset
2298
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 // apply tag filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 if (is_filtered_by_heap_filter(wrapper.obj_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 context->heap_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2305
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 // invoke the callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 int res = invoke_string_value_callback(context->string_primitive_value_callback(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2308 &wrapper,
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 str,
a61af66fc99e Initial load
duke
parents:
diff changeset
2310 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
2311 return (!(res & JVMTI_VISIT_ABORT));
a61af66fc99e Initial load
duke
parents:
diff changeset
2312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2313
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 // invoke the primitive field callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2315 inline bool CallbackInvoker::report_primitive_field(jvmtiHeapReferenceKind ref_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 oop obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 jint index,
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 address addr,
a61af66fc99e Initial load
duke
parents:
diff changeset
2319 char type)
a61af66fc99e Initial load
duke
parents:
diff changeset
2320 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 // for primitive fields only the index will be set
a61af66fc99e Initial load
duke
parents:
diff changeset
2322 static jvmtiHeapReferenceInfo reference_info = { 0 };
a61af66fc99e Initial load
duke
parents:
diff changeset
2323
a61af66fc99e Initial load
duke
parents:
diff changeset
2324 AdvancedHeapWalkContext* context = advanced_context();
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 assert(context->primitive_field_callback() != NULL, "no callback");
a61af66fc99e Initial load
duke
parents:
diff changeset
2326
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 // apply class filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2328 if (is_filtered_by_klass_filter(obj, context->klass_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2329 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2331
a61af66fc99e Initial load
duke
parents:
diff changeset
2332 CallbackWrapper wrapper(tag_map(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2333
a61af66fc99e Initial load
duke
parents:
diff changeset
2334 // apply tag filter
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 if (is_filtered_by_heap_filter(wrapper.obj_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 context->heap_filter())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2340
a61af66fc99e Initial load
duke
parents:
diff changeset
2341 // the field index in the referrer
a61af66fc99e Initial load
duke
parents:
diff changeset
2342 reference_info.field.index = index;
a61af66fc99e Initial load
duke
parents:
diff changeset
2343
a61af66fc99e Initial load
duke
parents:
diff changeset
2344 // map the type
a61af66fc99e Initial load
duke
parents:
diff changeset
2345 jvmtiPrimitiveType value_type = (jvmtiPrimitiveType)type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2346
a61af66fc99e Initial load
duke
parents:
diff changeset
2347 // setup the jvalue
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 jvalue value;
a61af66fc99e Initial load
duke
parents:
diff changeset
2349 copy_to_jvalue(&value, addr, value_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2350
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 jvmtiPrimitiveFieldCallback cb = context->primitive_field_callback();
a61af66fc99e Initial load
duke
parents:
diff changeset
2352 int res = (*cb)(ref_kind,
a61af66fc99e Initial load
duke
parents:
diff changeset
2353 &reference_info,
a61af66fc99e Initial load
duke
parents:
diff changeset
2354 wrapper.klass_tag(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2355 wrapper.obj_tag_p(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2356 value,
a61af66fc99e Initial load
duke
parents:
diff changeset
2357 value_type,
a61af66fc99e Initial load
duke
parents:
diff changeset
2358 (void*)user_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
2359 return (!(res & JVMTI_VISIT_ABORT));
a61af66fc99e Initial load
duke
parents:
diff changeset
2360 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2361
a61af66fc99e Initial load
duke
parents:
diff changeset
2362
a61af66fc99e Initial load
duke
parents:
diff changeset
2363 // instance field
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 inline bool CallbackInvoker::report_primitive_instance_field(oop obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
2365 jint index,
a61af66fc99e Initial load
duke
parents:
diff changeset
2366 address value,
a61af66fc99e Initial load
duke
parents:
diff changeset
2367 char type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2368 return report_primitive_field(JVMTI_HEAP_REFERENCE_FIELD,
a61af66fc99e Initial load
duke
parents:
diff changeset
2369 obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
2370 index,
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 value,
a61af66fc99e Initial load
duke
parents:
diff changeset
2372 type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2374
a61af66fc99e Initial load
duke
parents:
diff changeset
2375 // static field
a61af66fc99e Initial load
duke
parents:
diff changeset
2376 inline bool CallbackInvoker::report_primitive_static_field(oop obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
2377 jint index,
a61af66fc99e Initial load
duke
parents:
diff changeset
2378 address value,
a61af66fc99e Initial load
duke
parents:
diff changeset
2379 char type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2380 return report_primitive_field(JVMTI_HEAP_REFERENCE_STATIC_FIELD,
a61af66fc99e Initial load
duke
parents:
diff changeset
2381 obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
2382 index,
a61af66fc99e Initial load
duke
parents:
diff changeset
2383 value,
a61af66fc99e Initial load
duke
parents:
diff changeset
2384 type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2386
a61af66fc99e Initial load
duke
parents:
diff changeset
2387 // report a JNI local (root object) to the profiler
a61af66fc99e Initial load
duke
parents:
diff changeset
2388 inline bool CallbackInvoker::report_jni_local_root(jlong thread_tag, jlong tid, jint depth, jmethodID m, oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2389 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2390 return invoke_basic_stack_ref_callback(JVMTI_HEAP_ROOT_JNI_LOCAL,
a61af66fc99e Initial load
duke
parents:
diff changeset
2391 thread_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
2392 depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
2393 m,
a61af66fc99e Initial load
duke
parents:
diff changeset
2394 -1,
a61af66fc99e Initial load
duke
parents:
diff changeset
2395 obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2396 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2397 return invoke_advanced_stack_ref_callback(JVMTI_HEAP_REFERENCE_JNI_LOCAL,
a61af66fc99e Initial load
duke
parents:
diff changeset
2398 thread_tag, tid,
a61af66fc99e Initial load
duke
parents:
diff changeset
2399 depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
2400 m,
a61af66fc99e Initial load
duke
parents:
diff changeset
2401 (jlocation)-1,
a61af66fc99e Initial load
duke
parents:
diff changeset
2402 -1,
a61af66fc99e Initial load
duke
parents:
diff changeset
2403 obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2404 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2405 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2406
a61af66fc99e Initial load
duke
parents:
diff changeset
2407
a61af66fc99e Initial load
duke
parents:
diff changeset
2408 // report a local (stack reference, root object)
a61af66fc99e Initial load
duke
parents:
diff changeset
2409 inline bool CallbackInvoker::report_stack_ref_root(jlong thread_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
2410 jlong tid,
a61af66fc99e Initial load
duke
parents:
diff changeset
2411 jint depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
2412 jmethodID method,
a61af66fc99e Initial load
duke
parents:
diff changeset
2413 jlocation bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
2414 jint slot,
a61af66fc99e Initial load
duke
parents:
diff changeset
2415 oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2416 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2417 return invoke_basic_stack_ref_callback(JVMTI_HEAP_ROOT_STACK_LOCAL,
a61af66fc99e Initial load
duke
parents:
diff changeset
2418 thread_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
2419 depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
2420 method,
a61af66fc99e Initial load
duke
parents:
diff changeset
2421 slot,
a61af66fc99e Initial load
duke
parents:
diff changeset
2422 obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2423 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2424 return invoke_advanced_stack_ref_callback(JVMTI_HEAP_REFERENCE_STACK_LOCAL,
a61af66fc99e Initial load
duke
parents:
diff changeset
2425 thread_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
2426 tid,
a61af66fc99e Initial load
duke
parents:
diff changeset
2427 depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
2428 method,
a61af66fc99e Initial load
duke
parents:
diff changeset
2429 bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
2430 slot,
a61af66fc99e Initial load
duke
parents:
diff changeset
2431 obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2433 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2434
a61af66fc99e Initial load
duke
parents:
diff changeset
2435 // report an object referencing a class.
a61af66fc99e Initial load
duke
parents:
diff changeset
2436 inline bool CallbackInvoker::report_class_reference(oop referrer, oop referree) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2437 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2438 return invoke_basic_object_reference_callback(JVMTI_REFERENCE_CLASS, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2439 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2440 return invoke_advanced_object_reference_callback(JVMTI_HEAP_REFERENCE_CLASS, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2441 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2443
a61af66fc99e Initial load
duke
parents:
diff changeset
2444 // report a class referencing its class loader.
a61af66fc99e Initial load
duke
parents:
diff changeset
2445 inline bool CallbackInvoker::report_class_loader_reference(oop referrer, oop referree) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2446 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2447 return invoke_basic_object_reference_callback(JVMTI_REFERENCE_CLASS_LOADER, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2448 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2449 return invoke_advanced_object_reference_callback(JVMTI_HEAP_REFERENCE_CLASS_LOADER, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2451 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2452
a61af66fc99e Initial load
duke
parents:
diff changeset
2453 // report a class referencing its signers.
a61af66fc99e Initial load
duke
parents:
diff changeset
2454 inline bool CallbackInvoker::report_signers_reference(oop referrer, oop referree) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2455 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2456 return invoke_basic_object_reference_callback(JVMTI_REFERENCE_SIGNERS, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2457 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2458 return invoke_advanced_object_reference_callback(JVMTI_HEAP_REFERENCE_SIGNERS, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2459 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2460 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2461
a61af66fc99e Initial load
duke
parents:
diff changeset
2462 // report a class referencing its protection domain..
a61af66fc99e Initial load
duke
parents:
diff changeset
2463 inline bool CallbackInvoker::report_protection_domain_reference(oop referrer, oop referree) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2464 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2465 return invoke_basic_object_reference_callback(JVMTI_REFERENCE_PROTECTION_DOMAIN, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2466 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2467 return invoke_advanced_object_reference_callback(JVMTI_HEAP_REFERENCE_PROTECTION_DOMAIN, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2470
a61af66fc99e Initial load
duke
parents:
diff changeset
2471 // report a class referencing its superclass.
a61af66fc99e Initial load
duke
parents:
diff changeset
2472 inline bool CallbackInvoker::report_superclass_reference(oop referrer, oop referree) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2473 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2474 // Send this to be consistent with past implementation
a61af66fc99e Initial load
duke
parents:
diff changeset
2475 return invoke_basic_object_reference_callback(JVMTI_REFERENCE_CLASS, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2476 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2477 return invoke_advanced_object_reference_callback(JVMTI_HEAP_REFERENCE_SUPERCLASS, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2478 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2480
a61af66fc99e Initial load
duke
parents:
diff changeset
2481 // report a class referencing one of its interfaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
2482 inline bool CallbackInvoker::report_interface_reference(oop referrer, oop referree) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2483 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2484 return invoke_basic_object_reference_callback(JVMTI_REFERENCE_INTERFACE, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2485 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2486 return invoke_advanced_object_reference_callback(JVMTI_HEAP_REFERENCE_INTERFACE, referrer, referree, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2487 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2488 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2489
a61af66fc99e Initial load
duke
parents:
diff changeset
2490 // report a class referencing one of its static fields.
a61af66fc99e Initial load
duke
parents:
diff changeset
2491 inline bool CallbackInvoker::report_static_field_reference(oop referrer, oop referree, jint slot) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2492 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2493 return invoke_basic_object_reference_callback(JVMTI_REFERENCE_STATIC_FIELD, referrer, referree, slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
2494 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2495 return invoke_advanced_object_reference_callback(JVMTI_HEAP_REFERENCE_STATIC_FIELD, referrer, referree, slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
2496 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2497 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2498
a61af66fc99e Initial load
duke
parents:
diff changeset
2499 // report an array referencing an element object
a61af66fc99e Initial load
duke
parents:
diff changeset
2500 inline bool CallbackInvoker::report_array_element_reference(oop referrer, oop referree, jint index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2501 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2502 return invoke_basic_object_reference_callback(JVMTI_REFERENCE_ARRAY_ELEMENT, referrer, referree, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2503 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2504 return invoke_advanced_object_reference_callback(JVMTI_HEAP_REFERENCE_ARRAY_ELEMENT, referrer, referree, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2505 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2506 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2507
a61af66fc99e Initial load
duke
parents:
diff changeset
2508 // report an object referencing an instance field object
a61af66fc99e Initial load
duke
parents:
diff changeset
2509 inline bool CallbackInvoker::report_field_reference(oop referrer, oop referree, jint slot) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2510 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2511 return invoke_basic_object_reference_callback(JVMTI_REFERENCE_FIELD, referrer, referree, slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
2512 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2513 return invoke_advanced_object_reference_callback(JVMTI_HEAP_REFERENCE_FIELD, referrer, referree, slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
2514 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2516
a61af66fc99e Initial load
duke
parents:
diff changeset
2517 // report an array referencing an element object
a61af66fc99e Initial load
duke
parents:
diff changeset
2518 inline bool CallbackInvoker::report_constant_pool_reference(oop referrer, oop referree, jint index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2519 if (is_basic_heap_walk()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2520 return invoke_basic_object_reference_callback(JVMTI_REFERENCE_CONSTANT_POOL, referrer, referree, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2521 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2522 return invoke_advanced_object_reference_callback(JVMTI_HEAP_REFERENCE_CONSTANT_POOL, referrer, referree, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2525
a61af66fc99e Initial load
duke
parents:
diff changeset
2526 // A supporting closure used to process simple roots
a61af66fc99e Initial load
duke
parents:
diff changeset
2527 class SimpleRootsClosure : public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
2528 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
2529 jvmtiHeapReferenceKind _kind;
a61af66fc99e Initial load
duke
parents:
diff changeset
2530 bool _continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
2531
a61af66fc99e Initial load
duke
parents:
diff changeset
2532 jvmtiHeapReferenceKind root_kind() { return _kind; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2533
a61af66fc99e Initial load
duke
parents:
diff changeset
2534 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
2535 void set_kind(jvmtiHeapReferenceKind kind) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2536 _kind = kind;
a61af66fc99e Initial load
duke
parents:
diff changeset
2537 _continue = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2539
a61af66fc99e Initial load
duke
parents:
diff changeset
2540 inline bool stopped() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2541 return !_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
2542 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2543
a61af66fc99e Initial load
duke
parents:
diff changeset
2544 void do_oop(oop* obj_p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2545 // iteration has terminated
a61af66fc99e Initial load
duke
parents:
diff changeset
2546 if (stopped()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2547 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2548 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2549
a61af66fc99e Initial load
duke
parents:
diff changeset
2550 // ignore null or deleted handles
a61af66fc99e Initial load
duke
parents:
diff changeset
2551 oop o = *obj_p;
a61af66fc99e Initial load
duke
parents:
diff changeset
2552 if (o == NULL || o == JNIHandles::deleted_handle()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2553 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2554 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2555
6738
ec98e58952b2 7197350: NPG: jvmtiHeapReferenceCallback receives incorrect reference_kind for system class roots
stefank
parents: 6735
diff changeset
2556 assert(Universe::heap()->is_in_reserved(o), "should be impossible");
ec98e58952b2 7197350: NPG: jvmtiHeapReferenceCallback receives incorrect reference_kind for system class roots
stefank
parents: 6735
diff changeset
2557
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2558 jvmtiHeapReferenceKind kind = root_kind();
6738
ec98e58952b2 7197350: NPG: jvmtiHeapReferenceCallback receives incorrect reference_kind for system class roots
stefank
parents: 6735
diff changeset
2559 if (kind == JVMTI_HEAP_REFERENCE_SYSTEM_CLASS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2560 // SystemDictionary::always_strong_oops_do reports the application
a61af66fc99e Initial load
duke
parents:
diff changeset
2561 // class loader as a root. We want this root to be reported as
a61af66fc99e Initial load
duke
parents:
diff changeset
2562 // a root kind of "OTHER" rather than "SYSTEM_CLASS".
6738
ec98e58952b2 7197350: NPG: jvmtiHeapReferenceCallback receives incorrect reference_kind for system class roots
stefank
parents: 6735
diff changeset
2563 if (!o->is_instanceMirror()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2564 kind = JVMTI_HEAP_REFERENCE_OTHER;
a61af66fc99e Initial load
duke
parents:
diff changeset
2565 }
6738
ec98e58952b2 7197350: NPG: jvmtiHeapReferenceCallback receives incorrect reference_kind for system class roots
stefank
parents: 6735
diff changeset
2566 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2567
a61af66fc99e Initial load
duke
parents:
diff changeset
2568 // some objects are ignored - in the case of simple
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2145
diff changeset
2569 // roots it's mostly Symbol*s that we are skipping
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2570 // here.
a61af66fc99e Initial load
duke
parents:
diff changeset
2571 if (!ServiceUtil::visible_oop(o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2572 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2573 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2574
a61af66fc99e Initial load
duke
parents:
diff changeset
2575 // invoke the callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2576 _continue = CallbackInvoker::report_simple_root(kind, o);
a61af66fc99e Initial load
duke
parents:
diff changeset
2577
a61af66fc99e Initial load
duke
parents:
diff changeset
2578 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
2579 virtual void do_oop(narrowOop* obj_p) { ShouldNotReachHere(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2580 };
a61af66fc99e Initial load
duke
parents:
diff changeset
2581
a61af66fc99e Initial load
duke
parents:
diff changeset
2582 // A supporting closure used to process JNI locals
a61af66fc99e Initial load
duke
parents:
diff changeset
2583 class JNILocalRootsClosure : public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
2584 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
2585 jlong _thread_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
2586 jlong _tid;
a61af66fc99e Initial load
duke
parents:
diff changeset
2587 jint _depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
2588 jmethodID _method;
a61af66fc99e Initial load
duke
parents:
diff changeset
2589 bool _continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
2590 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
2591 void set_context(jlong thread_tag, jlong tid, jint depth, jmethodID method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2592 _thread_tag = thread_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
2593 _tid = tid;
a61af66fc99e Initial load
duke
parents:
diff changeset
2594 _depth = depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
2595 _method = method;
a61af66fc99e Initial load
duke
parents:
diff changeset
2596 _continue = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2597 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2598
a61af66fc99e Initial load
duke
parents:
diff changeset
2599 inline bool stopped() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2600 return !_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
2601 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2602
a61af66fc99e Initial load
duke
parents:
diff changeset
2603 void do_oop(oop* obj_p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2604 // iteration has terminated
a61af66fc99e Initial load
duke
parents:
diff changeset
2605 if (stopped()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2606 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2607 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2608
a61af66fc99e Initial load
duke
parents:
diff changeset
2609 // ignore null or deleted handles
a61af66fc99e Initial load
duke
parents:
diff changeset
2610 oop o = *obj_p;
a61af66fc99e Initial load
duke
parents:
diff changeset
2611 if (o == NULL || o == JNIHandles::deleted_handle()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2612 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2613 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2614
a61af66fc99e Initial load
duke
parents:
diff changeset
2615 if (!ServiceUtil::visible_oop(o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2616 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2617 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2618
a61af66fc99e Initial load
duke
parents:
diff changeset
2619 // invoke the callback
a61af66fc99e Initial load
duke
parents:
diff changeset
2620 _continue = CallbackInvoker::report_jni_local_root(_thread_tag, _tid, _depth, _method, o);
a61af66fc99e Initial load
duke
parents:
diff changeset
2621 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
2622 virtual void do_oop(narrowOop* obj_p) { ShouldNotReachHere(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2623 };
a61af66fc99e Initial load
duke
parents:
diff changeset
2624
a61af66fc99e Initial load
duke
parents:
diff changeset
2625
a61af66fc99e Initial load
duke
parents:
diff changeset
2626 // A VM operation to iterate over objects that are reachable from
a61af66fc99e Initial load
duke
parents:
diff changeset
2627 // a set of roots or an initial object.
a61af66fc99e Initial load
duke
parents:
diff changeset
2628 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2629 // For VM_HeapWalkOperation the set of roots used is :-
a61af66fc99e Initial load
duke
parents:
diff changeset
2630 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2631 // - All JNI global references
a61af66fc99e Initial load
duke
parents:
diff changeset
2632 // - All inflated monitors
a61af66fc99e Initial load
duke
parents:
diff changeset
2633 // - All classes loaded by the boot class loader (or all classes
a61af66fc99e Initial load
duke
parents:
diff changeset
2634 // in the event that class unloading is disabled)
a61af66fc99e Initial load
duke
parents:
diff changeset
2635 // - All java threads
a61af66fc99e Initial load
duke
parents:
diff changeset
2636 // - For each java thread then all locals and JNI local references
a61af66fc99e Initial load
duke
parents:
diff changeset
2637 // on the thread's execution stack
a61af66fc99e Initial load
duke
parents:
diff changeset
2638 // - All visible/explainable objects from Universes::oops_do
a61af66fc99e Initial load
duke
parents:
diff changeset
2639 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2640 class VM_HeapWalkOperation: public VM_Operation {
a61af66fc99e Initial load
duke
parents:
diff changeset
2641 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
2642 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
2643 initial_visit_stack_size = 4000
a61af66fc99e Initial load
duke
parents:
diff changeset
2644 };
a61af66fc99e Initial load
duke
parents:
diff changeset
2645
a61af66fc99e Initial load
duke
parents:
diff changeset
2646 bool _is_advanced_heap_walk; // indicates FollowReferences
a61af66fc99e Initial load
duke
parents:
diff changeset
2647 JvmtiTagMap* _tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
2648 Handle _initial_object;
a61af66fc99e Initial load
duke
parents:
diff changeset
2649 GrowableArray<oop>* _visit_stack; // the visit stack
a61af66fc99e Initial load
duke
parents:
diff changeset
2650
a61af66fc99e Initial load
duke
parents:
diff changeset
2651 bool _collecting_heap_roots; // are we collecting roots
a61af66fc99e Initial load
duke
parents:
diff changeset
2652 bool _following_object_refs; // are we following object references
a61af66fc99e Initial load
duke
parents:
diff changeset
2653
a61af66fc99e Initial load
duke
parents:
diff changeset
2654 bool _reporting_primitive_fields; // optional reporting
a61af66fc99e Initial load
duke
parents:
diff changeset
2655 bool _reporting_primitive_array_values;
a61af66fc99e Initial load
duke
parents:
diff changeset
2656 bool _reporting_string_values;
a61af66fc99e Initial load
duke
parents:
diff changeset
2657
a61af66fc99e Initial load
duke
parents:
diff changeset
2658 GrowableArray<oop>* create_visit_stack() {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6171
diff changeset
2659 return new (ResourceObj::C_HEAP, mtInternal) GrowableArray<oop>(initial_visit_stack_size, true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2660 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2661
a61af66fc99e Initial load
duke
parents:
diff changeset
2662 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
2663 bool is_advanced_heap_walk() const { return _is_advanced_heap_walk; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2664 JvmtiTagMap* tag_map() const { return _tag_map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2665 Handle initial_object() const { return _initial_object; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2666
a61af66fc99e Initial load
duke
parents:
diff changeset
2667 bool is_following_references() const { return _following_object_refs; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2668
a61af66fc99e Initial load
duke
parents:
diff changeset
2669 bool is_reporting_primitive_fields() const { return _reporting_primitive_fields; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2670 bool is_reporting_primitive_array_values() const { return _reporting_primitive_array_values; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2671 bool is_reporting_string_values() const { return _reporting_string_values; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2672
a61af66fc99e Initial load
duke
parents:
diff changeset
2673 GrowableArray<oop>* visit_stack() const { return _visit_stack; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2674
a61af66fc99e Initial load
duke
parents:
diff changeset
2675 // iterate over the various object types
a61af66fc99e Initial load
duke
parents:
diff changeset
2676 inline bool iterate_over_array(oop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
2677 inline bool iterate_over_type_array(oop o);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2678 inline bool iterate_over_class(oop o);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2679 inline bool iterate_over_object(oop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
2680
a61af66fc99e Initial load
duke
parents:
diff changeset
2681 // root collection
a61af66fc99e Initial load
duke
parents:
diff changeset
2682 inline bool collect_simple_roots();
a61af66fc99e Initial load
duke
parents:
diff changeset
2683 inline bool collect_stack_roots();
a61af66fc99e Initial load
duke
parents:
diff changeset
2684 inline bool collect_stack_roots(JavaThread* java_thread, JNILocalRootsClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
2685
a61af66fc99e Initial load
duke
parents:
diff changeset
2686 // visit an object
a61af66fc99e Initial load
duke
parents:
diff changeset
2687 inline bool visit(oop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
2688
a61af66fc99e Initial load
duke
parents:
diff changeset
2689 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
2690 VM_HeapWalkOperation(JvmtiTagMap* tag_map,
a61af66fc99e Initial load
duke
parents:
diff changeset
2691 Handle initial_object,
a61af66fc99e Initial load
duke
parents:
diff changeset
2692 BasicHeapWalkContext callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
2693 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
2694
a61af66fc99e Initial load
duke
parents:
diff changeset
2695 VM_HeapWalkOperation(JvmtiTagMap* tag_map,
a61af66fc99e Initial load
duke
parents:
diff changeset
2696 Handle initial_object,
a61af66fc99e Initial load
duke
parents:
diff changeset
2697 AdvancedHeapWalkContext callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
2698 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
2699
a61af66fc99e Initial load
duke
parents:
diff changeset
2700 ~VM_HeapWalkOperation();
a61af66fc99e Initial load
duke
parents:
diff changeset
2701
a61af66fc99e Initial load
duke
parents:
diff changeset
2702 VMOp_Type type() const { return VMOp_HeapWalkOperation; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2703 void doit();
a61af66fc99e Initial load
duke
parents:
diff changeset
2704 };
a61af66fc99e Initial load
duke
parents:
diff changeset
2705
a61af66fc99e Initial load
duke
parents:
diff changeset
2706
a61af66fc99e Initial load
duke
parents:
diff changeset
2707 VM_HeapWalkOperation::VM_HeapWalkOperation(JvmtiTagMap* tag_map,
a61af66fc99e Initial load
duke
parents:
diff changeset
2708 Handle initial_object,
a61af66fc99e Initial load
duke
parents:
diff changeset
2709 BasicHeapWalkContext callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
2710 const void* user_data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2711 _is_advanced_heap_walk = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2712 _tag_map = tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
2713 _initial_object = initial_object;
a61af66fc99e Initial load
duke
parents:
diff changeset
2714 _following_object_refs = (callbacks.object_ref_callback() != NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2715 _reporting_primitive_fields = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2716 _reporting_primitive_array_values = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2717 _reporting_string_values = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2718 _visit_stack = create_visit_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
2719
a61af66fc99e Initial load
duke
parents:
diff changeset
2720
a61af66fc99e Initial load
duke
parents:
diff changeset
2721 CallbackInvoker::initialize_for_basic_heap_walk(tag_map, _visit_stack, user_data, callbacks);
a61af66fc99e Initial load
duke
parents:
diff changeset
2722 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2723
a61af66fc99e Initial load
duke
parents:
diff changeset
2724 VM_HeapWalkOperation::VM_HeapWalkOperation(JvmtiTagMap* tag_map,
a61af66fc99e Initial load
duke
parents:
diff changeset
2725 Handle initial_object,
a61af66fc99e Initial load
duke
parents:
diff changeset
2726 AdvancedHeapWalkContext callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
2727 const void* user_data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2728 _is_advanced_heap_walk = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2729 _tag_map = tag_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
2730 _initial_object = initial_object;
a61af66fc99e Initial load
duke
parents:
diff changeset
2731 _following_object_refs = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2732 _reporting_primitive_fields = (callbacks.primitive_field_callback() != NULL);;
a61af66fc99e Initial load
duke
parents:
diff changeset
2733 _reporting_primitive_array_values = (callbacks.array_primitive_value_callback() != NULL);;
a61af66fc99e Initial load
duke
parents:
diff changeset
2734 _reporting_string_values = (callbacks.string_primitive_value_callback() != NULL);;
a61af66fc99e Initial load
duke
parents:
diff changeset
2735 _visit_stack = create_visit_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
2736
a61af66fc99e Initial load
duke
parents:
diff changeset
2737 CallbackInvoker::initialize_for_advanced_heap_walk(tag_map, _visit_stack, user_data, callbacks);
a61af66fc99e Initial load
duke
parents:
diff changeset
2738 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2739
a61af66fc99e Initial load
duke
parents:
diff changeset
2740 VM_HeapWalkOperation::~VM_HeapWalkOperation() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2741 if (_following_object_refs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2742 assert(_visit_stack != NULL, "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
2743 delete _visit_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
2744 _visit_stack = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2745 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2746 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2747
a61af66fc99e Initial load
duke
parents:
diff changeset
2748 // an array references its class and has a reference to
a61af66fc99e Initial load
duke
parents:
diff changeset
2749 // each element in the array
a61af66fc99e Initial load
duke
parents:
diff changeset
2750 inline bool VM_HeapWalkOperation::iterate_over_array(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2751 objArrayOop array = objArrayOop(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
2752
a61af66fc99e Initial load
duke
parents:
diff changeset
2753 // array reference to its class
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6738
diff changeset
2754 oop mirror = ObjArrayKlass::cast(array->klass())->java_mirror();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2755 if (!CallbackInvoker::report_class_reference(o, mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2756 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2757 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2758
a61af66fc99e Initial load
duke
parents:
diff changeset
2759 // iterate over the array and report each reference to a
a61af66fc99e Initial load
duke
parents:
diff changeset
2760 // non-null element
a61af66fc99e Initial load
duke
parents:
diff changeset
2761 for (int index=0; index<array->length(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2762 oop elem = array->obj_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2763 if (elem == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2764 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
2765 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2766
a61af66fc99e Initial load
duke
parents:
diff changeset
2767 // report the array reference o[index] = elem
a61af66fc99e Initial load
duke
parents:
diff changeset
2768 if (!CallbackInvoker::report_array_element_reference(o, elem, index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2769 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2770 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2771 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2772 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2773 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2774
a61af66fc99e Initial load
duke
parents:
diff changeset
2775 // a type array references its class
a61af66fc99e Initial load
duke
parents:
diff changeset
2776 inline bool VM_HeapWalkOperation::iterate_over_type_array(oop o) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2777 Klass* k = o->klass();
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6871
diff changeset
2778 oop mirror = k->java_mirror();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2779 if (!CallbackInvoker::report_class_reference(o, mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2780 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2781 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2782
a61af66fc99e Initial load
duke
parents:
diff changeset
2783 // report the array contents if required
a61af66fc99e Initial load
duke
parents:
diff changeset
2784 if (is_reporting_primitive_array_values()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2785 if (!CallbackInvoker::report_primitive_array_values(o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2786 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2787 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2788 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2789 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2791
a61af66fc99e Initial load
duke
parents:
diff changeset
2792 // verify that a static oop field is in range
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2793 static inline bool verify_static_oop(InstanceKlass* ik,
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
2794 oop mirror, int offset) {
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
2795 address obj_p = (address)mirror + offset;
6735
aed758eda82a 7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass
coleenp
parents: 6725
diff changeset
2796 address start = (address)InstanceMirrorKlass::start_of_static_fields(mirror);
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
2797 address end = start + (java_lang_Class::static_oop_field_count(mirror) * heapOopSize);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2798 assert(end >= start, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
2799
a61af66fc99e Initial load
duke
parents:
diff changeset
2800 if (obj_p >= start && obj_p < end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2801 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2802 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2803 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2804 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2806
a61af66fc99e Initial load
duke
parents:
diff changeset
2807 // a class references its super class, interfaces, class loader, ...
a61af66fc99e Initial load
duke
parents:
diff changeset
2808 // and finally its static fields
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2809 inline bool VM_HeapWalkOperation::iterate_over_class(oop java_class) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2810 int i;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2811 Klass* klass = java_lang_Class::as_Klass(java_class);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2812
a61af66fc99e Initial load
duke
parents:
diff changeset
2813 if (klass->oop_is_instance()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2814 InstanceKlass* ik = InstanceKlass::cast(klass);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2815
a61af66fc99e Initial load
duke
parents:
diff changeset
2816 // ignore the class if it's has been initialized yet
a61af66fc99e Initial load
duke
parents:
diff changeset
2817 if (!ik->is_linked()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2818 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2819 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2820
a61af66fc99e Initial load
duke
parents:
diff changeset
2821 // get the java mirror
a61af66fc99e Initial load
duke
parents:
diff changeset
2822 oop mirror = klass->java_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
2823
a61af66fc99e Initial load
duke
parents:
diff changeset
2824 // super (only if something more interesting than java.lang.Object)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2825 Klass* java_super = ik->java_super();
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 989
diff changeset
2826 if (java_super != NULL && java_super != SystemDictionary::Object_klass()) {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6871
diff changeset
2827 oop super = java_super->java_mirror();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2828 if (!CallbackInvoker::report_superclass_reference(mirror, super)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2829 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2830 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2831 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2832
a61af66fc99e Initial load
duke
parents:
diff changeset
2833 // class loader
a61af66fc99e Initial load
duke
parents:
diff changeset
2834 oop cl = ik->class_loader();
a61af66fc99e Initial load
duke
parents:
diff changeset
2835 if (cl != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2836 if (!CallbackInvoker::report_class_loader_reference(mirror, cl)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2837 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2838 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2839 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2840
a61af66fc99e Initial load
duke
parents:
diff changeset
2841 // protection domain
a61af66fc99e Initial load
duke
parents:
diff changeset
2842 oop pd = ik->protection_domain();
a61af66fc99e Initial load
duke
parents:
diff changeset
2843 if (pd != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2844 if (!CallbackInvoker::report_protection_domain_reference(mirror, pd)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2845 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2846 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2847 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2848
a61af66fc99e Initial load
duke
parents:
diff changeset
2849 // signers
a61af66fc99e Initial load
duke
parents:
diff changeset
2850 oop signers = ik->signers();
a61af66fc99e Initial load
duke
parents:
diff changeset
2851 if (signers != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2852 if (!CallbackInvoker::report_signers_reference(mirror, signers)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2853 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2854 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2855 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2856
a61af66fc99e Initial load
duke
parents:
diff changeset
2857 // references from the constant pool
a61af66fc99e Initial load
duke
parents:
diff changeset
2858 {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2859 ConstantPool* const pool = ik->constants();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2860 for (int i = 1; i < pool->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2861 constantTag tag = pool->tag_at(i).value();
a61af66fc99e Initial load
duke
parents:
diff changeset
2862 if (tag.is_string() || tag.is_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2863 oop entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
2864 if (tag.is_string()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2865 entry = pool->resolved_string_at(i);
6855
bbeecede56dd 8000459: assert(java_lang_String::is_instance(entry)) failure with various mlvm tests.
jiangli
parents: 6738
diff changeset
2866 // If the entry is non-null it is resolved.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2867 if (entry == NULL) continue;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2868 } else {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6871
diff changeset
2869 entry = pool->resolved_klass_at(i)->java_mirror();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2870 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2871 if (!CallbackInvoker::report_constant_pool_reference(mirror, entry, (jint)i)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2872 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2873 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2874 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2875 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2876 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2877
a61af66fc99e Initial load
duke
parents:
diff changeset
2878 // interfaces
a61af66fc99e Initial load
duke
parents:
diff changeset
2879 // (These will already have been reported as references from the constant pool
a61af66fc99e Initial load
duke
parents:
diff changeset
2880 // but are specified by IterateOverReachableObjects and must be reported).
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2881 Array<Klass*>* interfaces = ik->local_interfaces();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2882 for (i = 0; i < interfaces->length(); i++) {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6871
diff changeset
2883 oop interf = ((Klass*)interfaces->at(i))->java_mirror();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2884 if (interf == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2885 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
2886 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2887 if (!CallbackInvoker::report_interface_reference(mirror, interf)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2888 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2889 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2890 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2891
a61af66fc99e Initial load
duke
parents:
diff changeset
2892 // iterate over the static fields
a61af66fc99e Initial load
duke
parents:
diff changeset
2893
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2894 ClassFieldMap* field_map = ClassFieldMap::create_map_of_static_fields(klass);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2895 for (i=0; i<field_map->field_count(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2896 ClassFieldDescriptor* field = field_map->field_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2897 char type = field->field_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
2898 if (!is_primitive_field_type(type)) {
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
2899 oop fld_o = mirror->obj_field(field->field_offset());
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
2900 assert(verify_static_oop(ik, mirror, field->field_offset()), "sanity check");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2901 if (fld_o != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2902 int slot = field->field_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
2903 if (!CallbackInvoker::report_static_field_reference(mirror, fld_o, slot)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2904 delete field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
2905 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2906 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2907 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2908 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2909 if (is_reporting_primitive_fields()) {
2377
57552dca1708 7029509: nightly failures after static fields in Class
never
parents: 2376
diff changeset
2910 address addr = (address)mirror + field->field_offset();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2911 int slot = field->field_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
2912 if (!CallbackInvoker::report_primitive_static_field(mirror, slot, addr, type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2913 delete field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
2914 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2915 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2916 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2917 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2918 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2919 delete field_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
2920
a61af66fc99e Initial load
duke
parents:
diff changeset
2921 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2922 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2923
a61af66fc99e Initial load
duke
parents:
diff changeset
2924 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2925 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2926
a61af66fc99e Initial load
duke
parents:
diff changeset
2927 // an object references a class and its instance fields
a61af66fc99e Initial load
duke
parents:
diff changeset
2928 // (static fields are ignored here as we report these as
a61af66fc99e Initial load
duke
parents:
diff changeset
2929 // references from the class).
a61af66fc99e Initial load
duke
parents:
diff changeset
2930 inline bool VM_HeapWalkOperation::iterate_over_object(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2931 // reference to the class
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6871
diff changeset
2932 if (!CallbackInvoker::report_class_reference(o, o->klass()->java_mirror())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2933 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2934 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2935
a61af66fc99e Initial load
duke
parents:
diff changeset
2936 // iterate over instance fields
a61af66fc99e Initial load
duke
parents:
diff changeset
2937 ClassFieldMap* field_map = JvmtiCachedClassFieldMap::get_map_of_instance_fields(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
2938 for (int i=0; i<field_map->field_count(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2939 ClassFieldDescriptor* field = field_map->field_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2940 char type = field->field_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
2941 if (!is_primitive_field_type(type)) {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
2942 oop fld_o = o->obj_field(field->field_offset());
4929
2b150750d53d 7130993: nsk/jdi/ReferenceType/instances/instances004 fails with JFR: assert(ServiceUtil::visible_oop(obj))
sspitsyn
parents: 3816
diff changeset
2943 // ignore any objects that aren't visible to profiler
2b150750d53d 7130993: nsk/jdi/ReferenceType/instances/instances004 fails with JFR: assert(ServiceUtil::visible_oop(obj))
sspitsyn
parents: 3816
diff changeset
2944 if (fld_o != NULL && ServiceUtil::visible_oop(fld_o)) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2945 assert(Universe::heap()->is_in_reserved(fld_o), "unsafe code should not "
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2946 "have references to Klass* anymore");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2947 int slot = field->field_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
2948 if (!CallbackInvoker::report_field_reference(o, fld_o, slot)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2949 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2950 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2951 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2952 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2953 if (is_reporting_primitive_fields()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2954 // primitive instance field
a61af66fc99e Initial load
duke
parents:
diff changeset
2955 address addr = (address)o + field->field_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
2956 int slot = field->field_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
2957 if (!CallbackInvoker::report_primitive_instance_field(o, slot, addr, type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2958 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2959 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2960 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2961 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2962 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2963
a61af66fc99e Initial load
duke
parents:
diff changeset
2964 // if the object is a java.lang.String
a61af66fc99e Initial load
duke
parents:
diff changeset
2965 if (is_reporting_string_values() &&
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 989
diff changeset
2966 o->klass() == SystemDictionary::String_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2967 if (!CallbackInvoker::report_string_value(o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2968 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2969 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2970 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2971 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2972 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2973
a61af66fc99e Initial load
duke
parents:
diff changeset
2974
3816
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
2975 // Collects all simple (non-stack) roots except for threads;
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
2976 // threads are handled in collect_stack_roots() as an optimization.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2977 // if there's a heap root callback provided then the callback is
a61af66fc99e Initial load
duke
parents:
diff changeset
2978 // invoked for each simple root.
a61af66fc99e Initial load
duke
parents:
diff changeset
2979 // if an object reference callback is provided then all simple
a61af66fc99e Initial load
duke
parents:
diff changeset
2980 // roots are pushed onto the marking stack so that they can be
a61af66fc99e Initial load
duke
parents:
diff changeset
2981 // processed later
a61af66fc99e Initial load
duke
parents:
diff changeset
2982 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2983 inline bool VM_HeapWalkOperation::collect_simple_roots() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2984 SimpleRootsClosure blk;
a61af66fc99e Initial load
duke
parents:
diff changeset
2985
a61af66fc99e Initial load
duke
parents:
diff changeset
2986 // JNI globals
a61af66fc99e Initial load
duke
parents:
diff changeset
2987 blk.set_kind(JVMTI_HEAP_REFERENCE_JNI_GLOBAL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2988 JNIHandles::oops_do(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
2989 if (blk.stopped()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2990 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2991 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2992
a61af66fc99e Initial load
duke
parents:
diff changeset
2993 // Preloaded classes and loader from the system dictionary
a61af66fc99e Initial load
duke
parents:
diff changeset
2994 blk.set_kind(JVMTI_HEAP_REFERENCE_SYSTEM_CLASS);
a61af66fc99e Initial load
duke
parents:
diff changeset
2995 SystemDictionary::always_strong_oops_do(&blk);
6738
ec98e58952b2 7197350: NPG: jvmtiHeapReferenceCallback receives incorrect reference_kind for system class roots
stefank
parents: 6735
diff changeset
2996 KlassToOopClosure klass_blk(&blk);
ec98e58952b2 7197350: NPG: jvmtiHeapReferenceCallback receives incorrect reference_kind for system class roots
stefank
parents: 6735
diff changeset
2997 ClassLoaderDataGraph::always_strong_oops_do(&blk, &klass_blk, false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2998 if (blk.stopped()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2999 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3000 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3001
a61af66fc99e Initial load
duke
parents:
diff changeset
3002 // Inflated monitors
a61af66fc99e Initial load
duke
parents:
diff changeset
3003 blk.set_kind(JVMTI_HEAP_REFERENCE_MONITOR);
a61af66fc99e Initial load
duke
parents:
diff changeset
3004 ObjectSynchronizer::oops_do(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
3005 if (blk.stopped()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3006 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3007 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3008
3816
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3009 // threads are now handled in collect_stack_roots()
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3010
a61af66fc99e Initial load
duke
parents:
diff changeset
3011 // Other kinds of roots maintained by HotSpot
a61af66fc99e Initial load
duke
parents:
diff changeset
3012 // Many of these won't be visible but others (such as instances of important
a61af66fc99e Initial load
duke
parents:
diff changeset
3013 // exceptions) will be visible.
a61af66fc99e Initial load
duke
parents:
diff changeset
3014 blk.set_kind(JVMTI_HEAP_REFERENCE_OTHER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3015 Universe::oops_do(&blk);
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
3016
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
3017 // If there are any non-perm roots in the code cache, visit them.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
3018 blk.set_kind(JVMTI_HEAP_REFERENCE_OTHER);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
3019 CodeBlobToOopClosure look_in_blobs(&blk, false);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
3020 CodeCache::scavenge_root_nmethods_do(&look_in_blobs);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
3021
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3022 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3023 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3024
a61af66fc99e Initial load
duke
parents:
diff changeset
3025 // Walk the stack of a given thread and find all references (locals
a61af66fc99e Initial load
duke
parents:
diff changeset
3026 // and JNI calls) and report these as stack references
a61af66fc99e Initial load
duke
parents:
diff changeset
3027 inline bool VM_HeapWalkOperation::collect_stack_roots(JavaThread* java_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
3028 JNILocalRootsClosure* blk)
a61af66fc99e Initial load
duke
parents:
diff changeset
3029 {
a61af66fc99e Initial load
duke
parents:
diff changeset
3030 oop threadObj = java_thread->threadObj();
a61af66fc99e Initial load
duke
parents:
diff changeset
3031 assert(threadObj != NULL, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
3032
a61af66fc99e Initial load
duke
parents:
diff changeset
3033 // only need to get the thread's tag once per thread
a61af66fc99e Initial load
duke
parents:
diff changeset
3034 jlong thread_tag = tag_for(_tag_map, threadObj);
a61af66fc99e Initial load
duke
parents:
diff changeset
3035
a61af66fc99e Initial load
duke
parents:
diff changeset
3036 // also need the thread id
a61af66fc99e Initial load
duke
parents:
diff changeset
3037 jlong tid = java_lang_Thread::thread_id(threadObj);
a61af66fc99e Initial load
duke
parents:
diff changeset
3038
a61af66fc99e Initial load
duke
parents:
diff changeset
3039
a61af66fc99e Initial load
duke
parents:
diff changeset
3040 if (java_thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3041
a61af66fc99e Initial load
duke
parents:
diff changeset
3042 // vframes are resource allocated
a61af66fc99e Initial load
duke
parents:
diff changeset
3043 Thread* current_thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
3044 ResourceMark rm(current_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
3045 HandleMark hm(current_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
3046
a61af66fc99e Initial load
duke
parents:
diff changeset
3047 RegisterMap reg_map(java_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
3048 frame f = java_thread->last_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
3049 vframe* vf = vframe::new_vframe(&f, &reg_map, java_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
3050
a61af66fc99e Initial load
duke
parents:
diff changeset
3051 bool is_top_frame = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3052 int depth = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3053 frame* last_entry_frame = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3054
a61af66fc99e Initial load
duke
parents:
diff changeset
3055 while (vf != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3056 if (vf->is_java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3057
a61af66fc99e Initial load
duke
parents:
diff changeset
3058 // java frame (interpreted, compiled, ...)
a61af66fc99e Initial load
duke
parents:
diff changeset
3059 javaVFrame *jvf = javaVFrame::cast(vf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3060
a61af66fc99e Initial load
duke
parents:
diff changeset
3061 // the jmethodID
a61af66fc99e Initial load
duke
parents:
diff changeset
3062 jmethodID method = jvf->method()->jmethod_id();
a61af66fc99e Initial load
duke
parents:
diff changeset
3063
a61af66fc99e Initial load
duke
parents:
diff changeset
3064 if (!(jvf->method()->is_native())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3065 jlocation bci = (jlocation)jvf->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
3066 StackValueCollection* locals = jvf->locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
3067 for (int slot=0; slot<locals->size(); slot++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3068 if (locals->at(slot)->type() == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3069 oop o = locals->obj_at(slot)();
a61af66fc99e Initial load
duke
parents:
diff changeset
3070 if (o == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3071 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
3072 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3073
a61af66fc99e Initial load
duke
parents:
diff changeset
3074 // stack reference
a61af66fc99e Initial load
duke
parents:
diff changeset
3075 if (!CallbackInvoker::report_stack_ref_root(thread_tag, tid, depth, method,
a61af66fc99e Initial load
duke
parents:
diff changeset
3076 bci, slot, o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3077 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3078 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3079 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3080 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3081 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3082 blk->set_context(thread_tag, tid, depth, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
3083 if (is_top_frame) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3084 // JNI locals for the top frame.
a61af66fc99e Initial load
duke
parents:
diff changeset
3085 java_thread->active_handles()->oops_do(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
3086 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3087 if (last_entry_frame != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3088 // JNI locals for the entry frame
a61af66fc99e Initial load
duke
parents:
diff changeset
3089 assert(last_entry_frame->is_entry_frame(), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
3090 last_entry_frame->entry_frame_call_wrapper()->handles()->oops_do(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
3091 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3092 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3093 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3094 last_entry_frame = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3095 depth++;
a61af66fc99e Initial load
duke
parents:
diff changeset
3096 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3097 // externalVFrame - for an entry frame then we report the JNI locals
a61af66fc99e Initial load
duke
parents:
diff changeset
3098 // when we find the corresponding javaVFrame
a61af66fc99e Initial load
duke
parents:
diff changeset
3099 frame* fr = vf->frame_pointer();
a61af66fc99e Initial load
duke
parents:
diff changeset
3100 assert(fr != NULL, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
3101 if (fr->is_entry_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3102 last_entry_frame = fr;
a61af66fc99e Initial load
duke
parents:
diff changeset
3103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3105
a61af66fc99e Initial load
duke
parents:
diff changeset
3106 vf = vf->sender();
a61af66fc99e Initial load
duke
parents:
diff changeset
3107 is_top_frame = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3109 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3110 // no last java frame but there may be JNI locals
a61af66fc99e Initial load
duke
parents:
diff changeset
3111 blk->set_context(thread_tag, tid, 0, (jmethodID)NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3112 java_thread->active_handles()->oops_do(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
3113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3114 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3116
a61af66fc99e Initial load
duke
parents:
diff changeset
3117
3816
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3118 // Collects the simple roots for all threads and collects all
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3119 // stack roots - for each thread it walks the execution
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3120 // stack to find all references and local JNI refs.
a61af66fc99e Initial load
duke
parents:
diff changeset
3121 inline bool VM_HeapWalkOperation::collect_stack_roots() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3122 JNILocalRootsClosure blk;
a61af66fc99e Initial load
duke
parents:
diff changeset
3123 for (JavaThread* thread = Threads::first(); thread != NULL ; thread = thread->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3124 oop threadObj = thread->threadObj();
a61af66fc99e Initial load
duke
parents:
diff changeset
3125 if (threadObj != NULL && !thread->is_exiting() && !thread->is_hidden_from_external_view()) {
3816
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3126 // Collect the simple root for this thread before we
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3127 // collect its stack roots
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3128 if (!CallbackInvoker::report_simple_root(JVMTI_HEAP_REFERENCE_THREAD,
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3129 threadObj)) {
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3130 return false;
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3131 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3132 if (!collect_stack_roots(thread, &blk)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3133 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3137 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3139
a61af66fc99e Initial load
duke
parents:
diff changeset
3140 // visit an object
a61af66fc99e Initial load
duke
parents:
diff changeset
3141 // first mark the object as visited
a61af66fc99e Initial load
duke
parents:
diff changeset
3142 // second get all the outbound references from this object (in other words, all
a61af66fc99e Initial load
duke
parents:
diff changeset
3143 // the objects referenced by this object).
a61af66fc99e Initial load
duke
parents:
diff changeset
3144 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3145 bool VM_HeapWalkOperation::visit(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3146 // mark object as visited
a61af66fc99e Initial load
duke
parents:
diff changeset
3147 assert(!ObjectMarker::visited(o), "can't visit same object more than once");
a61af66fc99e Initial load
duke
parents:
diff changeset
3148 ObjectMarker::mark(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
3149
a61af66fc99e Initial load
duke
parents:
diff changeset
3150 // instance
a61af66fc99e Initial load
duke
parents:
diff changeset
3151 if (o->is_instance()) {
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 989
diff changeset
3152 if (o->klass() == SystemDictionary::Class_klass()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
3153 if (!java_lang_Class::is_primitive(o)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3154 // a java.lang.Class
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
3155 return iterate_over_class(o);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3157 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3158 return iterate_over_object(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
3159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3161
a61af66fc99e Initial load
duke
parents:
diff changeset
3162 // object array
a61af66fc99e Initial load
duke
parents:
diff changeset
3163 if (o->is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3164 return iterate_over_array(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
3165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3166
a61af66fc99e Initial load
duke
parents:
diff changeset
3167 // type array
a61af66fc99e Initial load
duke
parents:
diff changeset
3168 if (o->is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3169 return iterate_over_type_array(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
3170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3171
a61af66fc99e Initial load
duke
parents:
diff changeset
3172 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3174
a61af66fc99e Initial load
duke
parents:
diff changeset
3175 void VM_HeapWalkOperation::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3176 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
3177 ObjectMarkerController marker;
a61af66fc99e Initial load
duke
parents:
diff changeset
3178 ClassFieldMapCacheMark cm;
a61af66fc99e Initial load
duke
parents:
diff changeset
3179
a61af66fc99e Initial load
duke
parents:
diff changeset
3180 assert(visit_stack()->is_empty(), "visit stack must be empty");
a61af66fc99e Initial load
duke
parents:
diff changeset
3181
a61af66fc99e Initial load
duke
parents:
diff changeset
3182 // the heap walk starts with an initial object or the heap roots
a61af66fc99e Initial load
duke
parents:
diff changeset
3183 if (initial_object().is_null()) {
3815
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
3184 // If either collect_stack_roots() or collect_simple_roots()
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
3185 // returns false at this point, then there are no mark bits
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
3186 // to reset.
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
3187 ObjectMarker::set_needs_reset(false);
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
3188
3816
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3189 // Calling collect_stack_roots() before collect_simple_roots()
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3190 // can result in a big performance boost for an agent that is
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3191 // focused on analyzing references in the thread stacks.
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3192 if (!collect_stack_roots()) return;
88dce6a60ac8 6951623: 3/3 possible performance problems in FollowReferences() and GetObjectsWithTags()
dcubed
parents: 3815
diff changeset
3193
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3194 if (!collect_simple_roots()) return;
3815
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
3195
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
3196 // no early return so enable heap traversal to reset the mark bits
d425748f2203 7043987: 3/3 JVMTI FollowReferences is slow
dcubed
parents: 3363
diff changeset
3197 ObjectMarker::set_needs_reset(true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3198 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3199 visit_stack()->push(initial_object()());
a61af66fc99e Initial load
duke
parents:
diff changeset
3200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3201
a61af66fc99e Initial load
duke
parents:
diff changeset
3202 // object references required
a61af66fc99e Initial load
duke
parents:
diff changeset
3203 if (is_following_references()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3204
a61af66fc99e Initial load
duke
parents:
diff changeset
3205 // visit each object until all reachable objects have been
a61af66fc99e Initial load
duke
parents:
diff changeset
3206 // visited or the callback asked to terminate the iteration.
a61af66fc99e Initial load
duke
parents:
diff changeset
3207 while (!visit_stack()->is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3208 oop o = visit_stack()->pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3209 if (!ObjectMarker::visited(o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3210 if (!visit(o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3211 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
3212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3217
a61af66fc99e Initial load
duke
parents:
diff changeset
3218 // iterate over all objects that are reachable from a set of roots
a61af66fc99e Initial load
duke
parents:
diff changeset
3219 void JvmtiTagMap::iterate_over_reachable_objects(jvmtiHeapRootCallback heap_root_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
3220 jvmtiStackReferenceCallback stack_ref_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
3221 jvmtiObjectReferenceCallback object_ref_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
3222 const void* user_data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3223 MutexLocker ml(Heap_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
3224 BasicHeapWalkContext context(heap_root_callback, stack_ref_callback, object_ref_callback);
a61af66fc99e Initial load
duke
parents:
diff changeset
3225 VM_HeapWalkOperation op(this, Handle(), context, user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
3226 VMThread::execute(&op);
a61af66fc99e Initial load
duke
parents:
diff changeset
3227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3228
a61af66fc99e Initial load
duke
parents:
diff changeset
3229 // iterate over all objects that are reachable from a given object
a61af66fc99e Initial load
duke
parents:
diff changeset
3230 void JvmtiTagMap::iterate_over_objects_reachable_from_object(jobject object,
a61af66fc99e Initial load
duke
parents:
diff changeset
3231 jvmtiObjectReferenceCallback object_ref_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
3232 const void* user_data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3233 oop obj = JNIHandles::resolve(object);
a61af66fc99e Initial load
duke
parents:
diff changeset
3234 Handle initial_object(Thread::current(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
3235
a61af66fc99e Initial load
duke
parents:
diff changeset
3236 MutexLocker ml(Heap_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
3237 BasicHeapWalkContext context(NULL, NULL, object_ref_callback);
a61af66fc99e Initial load
duke
parents:
diff changeset
3238 VM_HeapWalkOperation op(this, initial_object, context, user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
3239 VMThread::execute(&op);
a61af66fc99e Initial load
duke
parents:
diff changeset
3240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3241
a61af66fc99e Initial load
duke
parents:
diff changeset
3242 // follow references from an initial object or the GC roots
a61af66fc99e Initial load
duke
parents:
diff changeset
3243 void JvmtiTagMap::follow_references(jint heap_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
3244 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
3245 jobject object,
a61af66fc99e Initial load
duke
parents:
diff changeset
3246 const jvmtiHeapCallbacks* callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
3247 const void* user_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
3248 {
a61af66fc99e Initial load
duke
parents:
diff changeset
3249 oop obj = JNIHandles::resolve(object);
a61af66fc99e Initial load
duke
parents:
diff changeset
3250 Handle initial_object(Thread::current(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
3251
a61af66fc99e Initial load
duke
parents:
diff changeset
3252 MutexLocker ml(Heap_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
3253 AdvancedHeapWalkContext context(heap_filter, klass, callbacks);
a61af66fc99e Initial load
duke
parents:
diff changeset
3254 VM_HeapWalkOperation op(this, initial_object, context, user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
3255 VMThread::execute(&op);
a61af66fc99e Initial load
duke
parents:
diff changeset
3256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3257
a61af66fc99e Initial load
duke
parents:
diff changeset
3258
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3259 void JvmtiTagMap::weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f) {
2145
c1a0ede55d6f 7012493: 2/2 6849574/Test.java fails with Internal Error (src/share/vm/prims/jvmtiTagMap.cpp:3294)
dcubed
parents: 2125
diff changeset
3260 // No locks during VM bring-up (0 threads) and no safepoints after main
c1a0ede55d6f 7012493: 2/2 6849574/Test.java fails with Internal Error (src/share/vm/prims/jvmtiTagMap.cpp:3294)
dcubed
parents: 2125
diff changeset
3261 // thread creation and before VMThread creation (1 thread); initial GC
c1a0ede55d6f 7012493: 2/2 6849574/Test.java fails with Internal Error (src/share/vm/prims/jvmtiTagMap.cpp:3294)
dcubed
parents: 2125
diff changeset
3262 // verification can happen in that window which gets to here.
c1a0ede55d6f 7012493: 2/2 6849574/Test.java fails with Internal Error (src/share/vm/prims/jvmtiTagMap.cpp:3294)
dcubed
parents: 2125
diff changeset
3263 assert(Threads::number_of_threads() <= 1 ||
c1a0ede55d6f 7012493: 2/2 6849574/Test.java fails with Internal Error (src/share/vm/prims/jvmtiTagMap.cpp:3294)
dcubed
parents: 2125
diff changeset
3264 SafepointSynchronize::is_at_safepoint(),
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3265 "must be executed at a safepoint");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3266 if (JvmtiEnv::environments_might_exist()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3267 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
3268 for (JvmtiEnvBase* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3269 JvmtiTagMap* tag_map = env->tag_map();
a61af66fc99e Initial load
duke
parents:
diff changeset
3270 if (tag_map != NULL && !tag_map->is_empty()) {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3271 tag_map->do_weak_oops(is_alive, f);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3272 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3273 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3276
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3277 void JvmtiTagMap::do_weak_oops(BoolObjectClosure* is_alive, OopClosure* f) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3278
a61af66fc99e Initial load
duke
parents:
diff changeset
3279 // does this environment have the OBJECT_FREE event enabled
a61af66fc99e Initial load
duke
parents:
diff changeset
3280 bool post_object_free = env()->is_enabled(JVMTI_EVENT_OBJECT_FREE);
a61af66fc99e Initial load
duke
parents:
diff changeset
3281
a61af66fc99e Initial load
duke
parents:
diff changeset
3282 // counters used for trace message
a61af66fc99e Initial load
duke
parents:
diff changeset
3283 int freed = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3284 int moved = 0;
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3285
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3286 JvmtiTagHashmap* hashmap = this->hashmap();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3287
a61af66fc99e Initial load
duke
parents:
diff changeset
3288 // reenable sizing (if disabled)
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3289 hashmap->set_resizing_enabled(true);
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3290
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3291 // if the hashmap is empty then we can skip it
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3292 if (hashmap->_entry_count == 0) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3293 return;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3295
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3296 // now iterate through each entry in the table
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3297
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3298 JvmtiTagHashmapEntry** table = hashmap->table();
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3299 int size = hashmap->size();
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3300
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3301 JvmtiTagHashmapEntry* delayed_add = NULL;
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3302
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3303 for (int pos = 0; pos < size; ++pos) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3304 JvmtiTagHashmapEntry* entry = table[pos];
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3305 JvmtiTagHashmapEntry* prev = NULL;
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3306
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3307 while (entry != NULL) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3308 JvmtiTagHashmapEntry* next = entry->next();
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3309
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3310 oop* obj = entry->object_addr();
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3311
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3312 // has object been GC'ed
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3313 if (!is_alive->do_object_b(entry->object())) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3314 // grab the tag
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3315 jlong tag = entry->tag();
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3316 guarantee(tag != 0, "checking");
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3317
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3318 // remove GC'ed entry from hashmap and return the
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3319 // entry to the free list
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3320 hashmap->remove(prev, pos, entry);
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3321 destroy_entry(entry);
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3322
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3323 // post the event to the profiler
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3324 if (post_object_free) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3325 JvmtiExport::post_object_free(env(), tag);
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3326 }
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3327
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3328 ++freed;
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3329 } else {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3330 f->do_oop(entry->object_addr());
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3331 oop new_oop = entry->object();
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3332
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3333 // if the object has moved then re-hash it and move its
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3334 // entry to its new location.
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3335 unsigned int new_pos = JvmtiTagHashmap::hash(new_oop, size);
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3336 if (new_pos != (unsigned int)pos) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3337 if (prev == NULL) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3338 table[pos] = next;
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3339 } else {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3340 prev->set_next(next);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3341 }
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3342 if (new_pos < (unsigned int)pos) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3343 entry->set_next(table[new_pos]);
a61af66fc99e Initial load
duke
parents:
diff changeset
3344 table[new_pos] = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
3345 } else {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3346 // Delay adding this entry to it's new position as we'd end up
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3347 // hitting it again during this iteration.
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3348 entry->set_next(delayed_add);
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3349 delayed_add = entry;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3350 }
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3351 moved++;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3352 } else {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3353 // object didn't move
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3354 prev = entry;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3356 }
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3357
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3358 entry = next;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3359 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3360 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3361
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3362 // Re-add all the entries which were kept aside
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3363 while (delayed_add != NULL) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3364 JvmtiTagHashmapEntry* next = delayed_add->next();
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3365 unsigned int pos = JvmtiTagHashmap::hash(delayed_add->object(), size);
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3366 delayed_add->set_next(table[pos]);
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3367 table[pos] = delayed_add;
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3368 delayed_add = next;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3370
a61af66fc99e Initial load
duke
parents:
diff changeset
3371 // stats
a61af66fc99e Initial load
duke
parents:
diff changeset
3372 if (TraceJVMTIObjectTagging) {
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3373 int post_total = hashmap->_entry_count;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3374 int pre_total = post_total + freed;
a61af66fc99e Initial load
duke
parents:
diff changeset
3375
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3376 tty->print_cr("(%d->%d, %d freed, %d total moves)",
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
3377 pre_total, post_total, freed, moved);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3378 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3379 }