annotate src/share/vm/runtime/fieldDescriptor.cpp @ 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 71afdabfd05b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1997, 2010, 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: 665
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 665
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: 665
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/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "classfile/vmSymbols.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "memory/universe.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "runtime/fieldDescriptor.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/signature.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 oop fieldDescriptor::loader() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 return instanceKlass::cast(_cp->pool_holder())->class_loader();
a61af66fc99e Initial load
duke
parents:
diff changeset
38 }
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 typeArrayOop fieldDescriptor::annotations() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 instanceKlass* ik = instanceKlass::cast(field_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
42 objArrayOop md = ik->fields_annotations();
a61af66fc99e Initial load
duke
parents:
diff changeset
43 if (md == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
44 return NULL;
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
45 return typeArrayOop(md->obj_at(index()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
46 }
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 constantTag fieldDescriptor::initial_value_tag() const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
49 return constants()->tag_at(initial_value_index());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50 }
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 jint fieldDescriptor::int_initial_value() const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
53 return constants()->int_at(initial_value_index());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54 }
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 jlong fieldDescriptor::long_initial_value() const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
57 return constants()->long_at(initial_value_index());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 }
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 jfloat fieldDescriptor::float_initial_value() const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
61 return constants()->float_at(initial_value_index());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 jdouble fieldDescriptor::double_initial_value() const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
65 return constants()->double_at(initial_value_index());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 oop fieldDescriptor::string_initial_value(TRAPS) const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
69 return constants()->string_at(initial_value_index(), CHECK_0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 void fieldDescriptor::initialize(klassOop k, int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 instanceKlass* ik = instanceKlass::cast(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 _cp = ik->constants();
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
75 FieldInfo* f = ik->field(index);
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
76 assert(!f->is_internal(), "regular Java fields only");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
78 _access_flags = accessFlags_from(f->access_flags());
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
79 guarantee(f->name_index() != 0 && f->signature_index() != 0, "bad constant pool index for fieldDescriptor");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _index = index;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 void fieldDescriptor::print_on(outputStream* st) const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
86 access_flags().print_on(st);
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
87 name()->print_value_on(st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
88 st->print(" ");
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
89 signature()->print_value_on(st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
90 st->print(" @%d ", offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
91 if (WizardMode && has_initial_value()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 st->print("(initval ");
a61af66fc99e Initial load
duke
parents:
diff changeset
93 constantTag t = initial_value_tag();
a61af66fc99e Initial load
duke
parents:
diff changeset
94 if (t.is_int()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 st->print("int %d)", int_initial_value());
a61af66fc99e Initial load
duke
parents:
diff changeset
96 } else if (t.is_long()){
a61af66fc99e Initial load
duke
parents:
diff changeset
97 st->print_jlong(long_initial_value());
a61af66fc99e Initial load
duke
parents:
diff changeset
98 } else if (t.is_float()){
a61af66fc99e Initial load
duke
parents:
diff changeset
99 st->print("float %f)", float_initial_value());
a61af66fc99e Initial load
duke
parents:
diff changeset
100 } else if (t.is_double()){
a61af66fc99e Initial load
duke
parents:
diff changeset
101 st->print("double %lf)", double_initial_value());
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void fieldDescriptor::print_on_for(outputStream* st, oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 BasicType ft = field_type();
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
109 jint as_int = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 switch (ft) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
112 as_int = (jint)obj->byte_field(offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
113 st->print(" %d", obj->byte_field(offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
114 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 case T_CHAR:
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
116 as_int = (jint)obj->char_field(offset());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
117 {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 jchar c = obj->char_field(offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
119 as_int = c;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 st->print(" %c %d", isprint(c) ? c : ' ', c);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 case T_DOUBLE:
a61af66fc99e Initial load
duke
parents:
diff changeset
124 st->print(" %lf", obj->double_field(offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
125 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
127 as_int = obj->int_field(offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
128 st->print(" %f", obj->float_field(offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
129 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 case T_INT:
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
131 as_int = obj->int_field(offset());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
132 st->print(" %d", obj->int_field(offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
133 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
135 st->print(" ");
a61af66fc99e Initial load
duke
parents:
diff changeset
136 st->print_jlong(obj->long_field(offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
137 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
138 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
139 as_int = obj->short_field(offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
140 st->print(" %d", obj->short_field(offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
141 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
143 as_int = obj->bool_field(offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
144 st->print(" %s", obj->bool_field(offset()) ? "true" : "false");
a61af66fc99e Initial load
duke
parents:
diff changeset
145 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 case T_ARRAY:
a61af66fc99e Initial load
duke
parents:
diff changeset
147 st->print(" ");
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
148 NOT_LP64(as_int = obj->int_field(offset()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
149 obj->obj_field(offset())->print_value_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 case T_OBJECT:
a61af66fc99e Initial load
duke
parents:
diff changeset
152 st->print(" ");
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
153 NOT_LP64(as_int = obj->int_field(offset()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
154 obj->obj_field(offset())->print_value_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
157 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
158 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // Print a hint as to the underlying integer representation. This can be wrong for
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // pointers on an LP64 machine
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
162 if (ft == T_LONG || ft == T_DOUBLE LP64_ONLY(|| !is_java_primitive(ft)) ) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
163 st->print(" (%x %x)", obj->int_field(offset()), obj->int_field(offset()+sizeof(jint)));
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
164 } else if (as_int < 0 || as_int > 9) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
165 st->print(" (%x)", as_int);
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 #endif /* PRODUCT */