annotate src/share/vm/runtime/reflectionUtils.hpp @ 3979:4dfb2df418f2

6484982: G1: process references during evacuation pauses Summary: G1 now uses two reference processors - one is used by concurrent marking and the other is used by STW GCs (both full and incremental evacuation pauses). In an evacuation pause, the reference processor is embedded into the closures used to scan objects. Doing so causes causes reference objects to be 'discovered' by the reference processor. At the end of the evacuation pause, these discovered reference objects are processed - preserving (and copying) referent objects (and their reachable graphs) as appropriate. Reviewed-by: ysr, jwilhelm, brutisso, stefank, tonyp
author johnc
date Thu, 22 Sep 2011 10:57:37 -0700
parents e6b1331a51d2
children da91efe96a93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2177
diff changeset
2 * Copyright (c) 1999, 2011, 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: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
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: 0
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 #ifndef SHARE_VM_RUNTIME_REFLECTIONUTILS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_RUNTIME_REFLECTIONUTILS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "oops/objArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "oops/oopsHierarchy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "runtime/reflection.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "utilities/accessFlags.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "utilities/globalDefinitions.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36
0
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // A KlassStream is an abstract stream for streaming over self, superclasses
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // and (super)interfaces. Streaming is done in reverse order (subclasses first,
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // interfaces last).
a61af66fc99e Initial load
duke
parents:
diff changeset
40 //
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // for (KlassStream st(k, false, false); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // klassOop k = st.klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // ...
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 class KlassStream VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
48 instanceKlassHandle _klass; // current klass/interface iterated over
a61af66fc99e Initial load
duke
parents:
diff changeset
49 objArrayHandle _interfaces; // transitive interfaces for initial class
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int _interface_index; // current interface being processed
a61af66fc99e Initial load
duke
parents:
diff changeset
51 bool _local_only; // process initial class/interface only
a61af66fc99e Initial load
duke
parents:
diff changeset
52 bool _classes_only; // process classes only (no interfaces)
a61af66fc99e Initial load
duke
parents:
diff changeset
53 int _index;
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 virtual int length() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
59 KlassStream(instanceKlassHandle klass, bool local_only, bool classes_only);
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // testing
a61af66fc99e Initial load
duke
parents:
diff changeset
62 bool eos();
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // iterating
a61af66fc99e Initial load
duke
parents:
diff changeset
65 virtual void next() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
68 instanceKlassHandle klass() const { return _klass; }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 int index() const { return _index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 };
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // A MethodStream streams over all methods in a class, superclasses and (super)interfaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Streaming is done in reverse order (subclasses first, methods in reverse order)
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // Usage:
a61af66fc99e Initial load
duke
parents:
diff changeset
76 //
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // for (MethodStream st(k, false, false); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // methodOop m = st.method();
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // ...
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 class MethodStream : public KlassStream {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
84 int length() const { return methods()->length(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 objArrayOop methods() const { return _klass->methods(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
87 MethodStream(instanceKlassHandle klass, bool local_only, bool classes_only)
a61af66fc99e Initial load
duke
parents:
diff changeset
88 : KlassStream(klass, local_only, classes_only) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 _index = length();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 next();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 void next() { _index--; }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 methodOop method() const { return methodOop(methods()->obj_at(index())); }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 };
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // A FieldStream streams over all fields in a class, superclasses and (super)interfaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // Streaming is done in reverse order (subclasses first, fields in reverse order)
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // Usage:
a61af66fc99e Initial load
duke
parents:
diff changeset
101 //
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // for (FieldStream st(k, false, false); !st.eos(); st.next()) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
103 // Symbol* field_name = st.name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // ...
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 class FieldStream : public KlassStream {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 private:
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 2426
diff changeset
110 int length() const { return _klass->java_fields_count(); }
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 2426
diff changeset
111
0
a61af66fc99e Initial load
duke
parents:
diff changeset
112 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
113 FieldStream(instanceKlassHandle klass, bool local_only, bool classes_only)
a61af66fc99e Initial load
duke
parents:
diff changeset
114 : KlassStream(klass, local_only, classes_only) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 _index = length();
a61af66fc99e Initial load
duke
parents:
diff changeset
116 next();
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 2426
diff changeset
119 void next() { _index -= 1; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Accessors for current field
a61af66fc99e Initial load
duke
parents:
diff changeset
122 AccessFlags access_flags() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 AccessFlags flags;
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 2426
diff changeset
124 flags.set_flags(_klass->field_access_flags(_index));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
127 Symbol* name() const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 2426
diff changeset
128 return _klass->field_name(_index);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
130 Symbol* signature() const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 2426
diff changeset
131 return _klass->field_signature(_index);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // missing: initval()
a61af66fc99e Initial load
duke
parents:
diff changeset
134 int offset() const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 2426
diff changeset
135 return _klass->field_offset( index() );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 };
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 class FilteredField {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
141 klassOop _klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 int _field_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
145 FilteredField(klassOop klass, int field_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 _klass = klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 _field_offset = field_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149 klassOop klass() { return _klass; }
a61af66fc99e Initial load
duke
parents:
diff changeset
150 oop* klass_addr() { return (oop*) &_klass; }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 int field_offset() { return _field_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 };
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 class FilteredFieldsMap : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
156 static GrowableArray<FilteredField *> *_filtered_fields;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
158 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
159 static bool is_filtered_field(klassOop klass, int field_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 for (int i=0; i < _filtered_fields->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 if (klass == _filtered_fields->at(i)->klass() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
162 field_offset == _filtered_fields->at(i)->field_offset()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 static int filtered_fields_count(klassOop klass, bool local_only) {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 int nflds = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 for (int i=0; i < _filtered_fields->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 if (local_only && klass == _filtered_fields->at(i)->klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 nflds++;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 } else if (klass->klass_part()->is_subtype_of(_filtered_fields->at(i)->klass())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 nflds++;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 return nflds;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // GC support.
a61af66fc99e Initial load
duke
parents:
diff changeset
180 static void klasses_oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 for (int i = 0; i < _filtered_fields->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 f->do_oop((oop*)_filtered_fields->at(i)->klass_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 };
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // A FilteredFieldStream streams over all fields in a class, superclasses and
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // (super)interfaces. Streaming is done in reverse order (subclasses first,
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // fields in reverse order)
a61af66fc99e Initial load
duke
parents:
diff changeset
191 //
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // Usage:
a61af66fc99e Initial load
duke
parents:
diff changeset
193 //
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // for (FilteredFieldStream st(k, false, false); !st.eos(); st.next()) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
195 // Symbol* field_name = st.name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // ...
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 class FilteredFieldStream : public FieldStream {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
201 int _filtered_fields_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 bool has_filtered_field() { return (_filtered_fields_count > 0); }
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
205 FilteredFieldStream(instanceKlassHandle klass, bool local_only, bool classes_only)
a61af66fc99e Initial load
duke
parents:
diff changeset
206 : FieldStream(klass, local_only, classes_only) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 _filtered_fields_count = FilteredFieldsMap::filtered_fields_count((klassOop)klass(), local_only);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209 int field_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
210 void next() {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 2426
diff changeset
211 _index -= 1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
212 if (has_filtered_field()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 while (_index >=0 && FilteredFieldsMap::is_filtered_field((klassOop)_klass(), offset())) {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 2426
diff changeset
214 _index -= 1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
218 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
219
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
220 #endif // SHARE_VM_RUNTIME_REFLECTIONUTILS_HPP