annotate src/share/vm/oops/cpCacheOop.cpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents ba764ed4b6f2
children be93aad57795
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 113
diff changeset
2 * Copyright 1998-2008 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_cpCacheOop.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Implememtation of ConstantPoolCacheEntry
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 void ConstantPoolCacheEntry::set_initial_state(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 assert(0 <= index && index < 0x10000, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
33 _indices = index;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 }
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 int ConstantPoolCacheEntry::as_flags(TosState state, bool is_final,
a61af66fc99e Initial load
duke
parents:
diff changeset
38 bool is_vfinal, bool is_volatile,
a61af66fc99e Initial load
duke
parents:
diff changeset
39 bool is_method_interface, bool is_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 int f = state;
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 assert( state < number_of_states, "Invalid state in as_flags");
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 f <<= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 if (is_final) f |= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 f <<= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 if (is_vfinal) f |= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 f <<= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 if (is_volatile) f |= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 f <<= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 if (is_method_interface) f |= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 f <<= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 if (is_method) f |= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 f <<= ConstantPoolCacheEntry::hotSwapBit;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Preserve existing flag bit values
a61af66fc99e Initial load
duke
parents:
diff changeset
56 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
57 int old_state = ((_flags >> tosBits) & 0x0F);
a61af66fc99e Initial load
duke
parents:
diff changeset
58 assert(old_state == 0 || old_state == state,
a61af66fc99e Initial load
duke
parents:
diff changeset
59 "inconsistent cpCache flags state");
a61af66fc99e Initial load
duke
parents:
diff changeset
60 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
61 return (_flags | f) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 void ConstantPoolCacheEntry::set_bytecode_1(Bytecodes::Code code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // Read once.
a61af66fc99e Initial load
duke
parents:
diff changeset
67 volatile Bytecodes::Code c = bytecode_1();
a61af66fc99e Initial load
duke
parents:
diff changeset
68 assert(c == 0 || c == code || code == 0, "update must be consistent");
a61af66fc99e Initial load
duke
parents:
diff changeset
69 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // Need to flush pending stores here before bytecode is written.
a61af66fc99e Initial load
duke
parents:
diff changeset
71 OrderAccess::release_store_ptr(&_indices, _indices | ((u_char)code << 16));
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 void ConstantPoolCacheEntry::set_bytecode_2(Bytecodes::Code code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // Read once.
a61af66fc99e Initial load
duke
parents:
diff changeset
77 volatile Bytecodes::Code c = bytecode_2();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 assert(c == 0 || c == code || code == 0, "update must be consistent");
a61af66fc99e Initial load
duke
parents:
diff changeset
79 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // Need to flush pending stores here before bytecode is written.
a61af66fc99e Initial load
duke
parents:
diff changeset
81 OrderAccess::release_store_ptr(&_indices, _indices | ((u_char)code << 24));
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // It is possible to have two different dummy methodOops created
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // when the resolve code for invoke interface executes concurrently
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // Hence the assertion below is weakened a bit for the invokeinterface
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // case.
a61af66fc99e Initial load
duke
parents:
diff changeset
89 bool ConstantPoolCacheEntry::same_methodOop(oop cur_f1, oop f1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 return (cur_f1 == f1 || ((methodOop)cur_f1)->name() ==
a61af66fc99e Initial load
duke
parents:
diff changeset
91 ((methodOop)f1)->name() || ((methodOop)cur_f1)->signature() ==
a61af66fc99e Initial load
duke
parents:
diff changeset
92 ((methodOop)f1)->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Note that concurrent update of both bytecodes can leave one of them
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // reset to zero. This is harmless; the interpreter will simply re-resolve
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // the damaged entry. More seriously, the memory synchronization is needed
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // to flush other fields (f1, f2) completely to memory before the bytecodes
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // are updated, lest other processors see a non-zero bytecode but zero f1/f2.
a61af66fc99e Initial load
duke
parents:
diff changeset
101 void ConstantPoolCacheEntry::set_field(Bytecodes::Code get_code,
a61af66fc99e Initial load
duke
parents:
diff changeset
102 Bytecodes::Code put_code,
a61af66fc99e Initial load
duke
parents:
diff changeset
103 KlassHandle field_holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
104 int orig_field_index,
a61af66fc99e Initial load
duke
parents:
diff changeset
105 int field_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
106 TosState field_type,
a61af66fc99e Initial load
duke
parents:
diff changeset
107 bool is_final,
a61af66fc99e Initial load
duke
parents:
diff changeset
108 bool is_volatile) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 set_f1(field_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
110 set_f2(field_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // The field index is used by jvm/ti and is the index into fields() array
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // in holder instanceKlass. This is scaled by instanceKlass::next_offset.
a61af66fc99e Initial load
duke
parents:
diff changeset
113 assert((orig_field_index % instanceKlass::next_offset) == 0, "wierd index");
a61af66fc99e Initial load
duke
parents:
diff changeset
114 const int field_index = orig_field_index / instanceKlass::next_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 assert(field_index <= field_index_mask,
a61af66fc99e Initial load
duke
parents:
diff changeset
116 "field index does not fit in low flag bits");
a61af66fc99e Initial load
duke
parents:
diff changeset
117 set_flags(as_flags(field_type, is_final, false, is_volatile, false, false) |
a61af66fc99e Initial load
duke
parents:
diff changeset
118 (field_index & field_index_mask));
a61af66fc99e Initial load
duke
parents:
diff changeset
119 set_bytecode_1(get_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 set_bytecode_2(put_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 NOT_PRODUCT(verify(tty));
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 int ConstantPoolCacheEntry::field_index() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return (_flags & field_index_mask) * instanceKlass::next_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 void ConstantPoolCacheEntry::set_method(Bytecodes::Code invoke_code,
a61af66fc99e Initial load
duke
parents:
diff changeset
129 methodHandle method,
a61af66fc99e Initial load
duke
parents:
diff changeset
130 int vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 assert(method->interpreter_entry() != NULL, "should have been set at this point");
a61af66fc99e Initial load
duke
parents:
diff changeset
133 assert(!method->is_obsolete(), "attempt to write obsolete method to cpCache");
a61af66fc99e Initial load
duke
parents:
diff changeset
134 bool change_to_virtual = (invoke_code == Bytecodes::_invokeinterface);
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 int byte_no = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 bool needs_vfinal_flag = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
138 switch (invoke_code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 case Bytecodes::_invokevirtual:
a61af66fc99e Initial load
duke
parents:
diff changeset
140 case Bytecodes::_invokeinterface: {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 if (method->can_be_statically_bound()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
142 set_f2((intptr_t)method());
a61af66fc99e Initial load
duke
parents:
diff changeset
143 needs_vfinal_flag = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 assert(vtable_index >= 0, "valid index");
a61af66fc99e Initial load
duke
parents:
diff changeset
146 set_f2(vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148 byte_no = 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 case Bytecodes::_invokespecial:
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // Preserve the value of the vfinal flag on invokevirtual bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // which may be shared with this constant pool cache entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
154 needs_vfinal_flag = is_resolved(Bytecodes::_invokevirtual) && is_vfinal();
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
156 case Bytecodes::_invokestatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
157 set_f1(method());
a61af66fc99e Initial load
duke
parents:
diff changeset
158 byte_no = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
161 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
162 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 set_flags(as_flags(as_TosState(method->result_type()),
a61af66fc99e Initial load
duke
parents:
diff changeset
166 method->is_final_method(),
a61af66fc99e Initial load
duke
parents:
diff changeset
167 needs_vfinal_flag,
a61af66fc99e Initial load
duke
parents:
diff changeset
168 false,
a61af66fc99e Initial load
duke
parents:
diff changeset
169 change_to_virtual,
a61af66fc99e Initial load
duke
parents:
diff changeset
170 true)|
a61af66fc99e Initial load
duke
parents:
diff changeset
171 method()->size_of_parameters());
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // Note: byte_no also appears in TemplateTable::resolve.
a61af66fc99e Initial load
duke
parents:
diff changeset
174 if (byte_no == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 set_bytecode_1(invoke_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 } else if (byte_no == 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (change_to_virtual) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // NOTE: THIS IS A HACK - BE VERY CAREFUL!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
179 //
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // Workaround for the case where we encounter an invokeinterface, but we
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // should really have an _invokevirtual since the resolved method is a
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // virtual method in java.lang.Object. This is a corner case in the spec
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // but is presumably legal. javac does not generate this code.
a61af66fc99e Initial load
duke
parents:
diff changeset
184 //
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // We set bytecode_1() to _invokeinterface, because that is the
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // bytecode # used by the interpreter to see if it is resolved.
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // We set bytecode_2() to _invokevirtual.
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // See also interpreterRuntime.cpp. (8/25/2000)
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Only set resolved for the invokeinterface case if method is public.
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // Otherwise, the method needs to be reresolved with caller for each
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // interface call.
a61af66fc99e Initial load
duke
parents:
diff changeset
192 if (method->is_public()) set_bytecode_1(invoke_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 set_bytecode_2(Bytecodes::_invokevirtual);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 set_bytecode_2(invoke_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 NOT_PRODUCT(verify(tty));
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 void ConstantPoolCacheEntry::set_interface_call(methodHandle method, int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 klassOop interf = method->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
206 assert(instanceKlass::cast(interf)->is_interface(), "must be an interface");
a61af66fc99e Initial load
duke
parents:
diff changeset
207 set_f1(interf);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 set_f2(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 set_flags(as_flags(as_TosState(method->result_type()), method->is_final_method(), false, false, false, true) | method()->size_of_parameters());
a61af66fc99e Initial load
duke
parents:
diff changeset
210 set_bytecode_1(Bytecodes::_invokeinterface);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 }
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 class LocalOopClosure: public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
216 void (*_f)(oop*);
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
219 LocalOopClosure(void f(oop*)) { _f = f; }
a61af66fc99e Initial load
duke
parents:
diff changeset
220 virtual void do_oop(oop* o) { _f(o); }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
221 virtual void do_oop(narrowOop *o) { ShouldNotReachHere(); }
0
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 void ConstantPoolCacheEntry::oops_do(void f(oop*)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
226 LocalOopClosure blk(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
227 oop_iterate(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 void ConstantPoolCacheEntry::oop_iterate(OopClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
234 blk->do_oop((oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
235 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 blk->do_oop((oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 void ConstantPoolCacheEntry::oop_iterate_m(OopClosure* blk, MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
244 if (mr.contains((oop *)&_f1)) blk->do_oop((oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
245 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 if (mr.contains((oop *)&_f2)) blk->do_oop((oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248 }
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 void ConstantPoolCacheEntry::follow_contents() {
a61af66fc99e Initial load
duke
parents:
diff changeset
252 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
254 MarkSweep::mark_and_push((oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 MarkSweep::mark_and_push((oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
261 void ConstantPoolCacheEntry::follow_contents(ParCompactionManager* cm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
263 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
264 PSParallelCompact::mark_and_push(cm, (oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
265 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 PSParallelCompact::mark_and_push(cm, (oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 void ConstantPoolCacheEntry::adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
274 MarkSweep::adjust_pointer((oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
275 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 MarkSweep::adjust_pointer((oop*)&_f2);
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 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
281 void ConstantPoolCacheEntry::update_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
283 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
284 PSParallelCompact::adjust_pointer((oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
285 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 PSParallelCompact::adjust_pointer((oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 void ConstantPoolCacheEntry::update_pointers(HeapWord* beg_addr,
a61af66fc99e Initial load
duke
parents:
diff changeset
291 HeapWord* end_addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
294 PSParallelCompact::adjust_pointer((oop*)&_f1, beg_addr, end_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
296 PSParallelCompact::adjust_pointer((oop*)&_f2, beg_addr, end_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // RedefineClasses() API support:
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // If this constantPoolCacheEntry refers to old_method then update it
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // to refer to new_method.
a61af66fc99e Initial load
duke
parents:
diff changeset
304 bool ConstantPoolCacheEntry::adjust_method_entry(methodOop old_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
305 methodOop new_method, bool * trace_name_printed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // virtual and final so f2() contains method ptr instead of vtable index
a61af66fc99e Initial load
duke
parents:
diff changeset
309 if (f2() == (intptr_t)old_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // match old_method so need an update
a61af66fc99e Initial load
duke
parents:
diff changeset
311 _f2 = (intptr_t)new_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
312 if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
313 if (!(*trace_name_printed)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // RC_TRACE_MESG macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
315 RC_TRACE_MESG(("adjust: name=%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
316 Klass::cast(old_method->method_holder())->external_name()));
a61af66fc99e Initial load
duke
parents:
diff changeset
317 *trace_name_printed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // RC_TRACE macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
320 RC_TRACE(0x00400000, ("cpc vf-entry update: %s(%s)",
a61af66fc99e Initial load
duke
parents:
diff changeset
321 new_method->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
322 new_method->signature()->as_C_string()));
a61af66fc99e Initial load
duke
parents:
diff changeset
323 }
a61af66fc99e Initial load
duke
parents:
diff changeset
324
a61af66fc99e Initial load
duke
parents:
diff changeset
325 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 // f1() is not used with virtual entries so bail out
a61af66fc99e Initial load
duke
parents:
diff changeset
329 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 if ((oop)_f1 == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // NULL f1() means this is a virtual entry so bail out
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // We are assuming that the vtable index does not need change.
a61af66fc99e Initial load
duke
parents:
diff changeset
335 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337
a61af66fc99e Initial load
duke
parents:
diff changeset
338 if ((oop)_f1 == old_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
339 _f1 = new_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
340 if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 if (!(*trace_name_printed)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // RC_TRACE_MESG macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
343 RC_TRACE_MESG(("adjust: name=%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
344 Klass::cast(old_method->method_holder())->external_name()));
a61af66fc99e Initial load
duke
parents:
diff changeset
345 *trace_name_printed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
346 }
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // RC_TRACE macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
348 RC_TRACE(0x00400000, ("cpc entry update: %s(%s)",
a61af66fc99e Initial load
duke
parents:
diff changeset
349 new_method->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
350 new_method->signature()->as_C_string()));
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 bool ConstantPoolCacheEntry::is_interesting_method_entry(klassOop k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
360 if (!is_method_entry()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // not a method entry so not interesting by default
a61af66fc99e Initial load
duke
parents:
diff changeset
362 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 methodOop m = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
366 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 // virtual and final so _f2 contains method ptr instead of vtable index
a61af66fc99e Initial load
duke
parents:
diff changeset
368 m = (methodOop)_f2;
a61af66fc99e Initial load
duke
parents:
diff changeset
369 } else if ((oop)_f1 == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
370 // NULL _f1 means this is a virtual entry so also not interesting
a61af66fc99e Initial load
duke
parents:
diff changeset
371 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
372 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
373 if (!((oop)_f1)->is_method()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // _f1 can also contain a klassOop for an interface
a61af66fc99e Initial load
duke
parents:
diff changeset
375 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
377 m = (methodOop)_f1;
a61af66fc99e Initial load
duke
parents:
diff changeset
378 }
a61af66fc99e Initial load
duke
parents:
diff changeset
379
a61af66fc99e Initial load
duke
parents:
diff changeset
380 assert(m != NULL && m->is_method(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
381 if (m == NULL || !m->is_method() || m->method_holder() != k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // robustness for above sanity checks or method is not in
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // the interesting class
a61af66fc99e Initial load
duke
parents:
diff changeset
384 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
386
a61af66fc99e Initial load
duke
parents:
diff changeset
387 // the method is in the interesting class so the entry is interesting
a61af66fc99e Initial load
duke
parents:
diff changeset
388 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391 void ConstantPoolCacheEntry::print(outputStream* st, int index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
392 // print separator
a61af66fc99e Initial load
duke
parents:
diff changeset
393 if (index == 0) tty->print_cr(" -------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // print entry
a61af66fc99e Initial load
duke
parents:
diff changeset
395 tty->print_cr("%3d (%08x) [%02x|%02x|%5d]", index, this, bytecode_2(), bytecode_1(), constant_pool_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
396 tty->print_cr(" [ %08x]", (address)(oop)_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
397 tty->print_cr(" [ %08x]", _f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
398 tty->print_cr(" [ %08x]", _flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
399 tty->print_cr(" -------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 void ConstantPoolCacheEntry::verify(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // not implemented yet
a61af66fc99e Initial load
duke
parents:
diff changeset
404 }
a61af66fc99e Initial load
duke
parents:
diff changeset
405
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // Implementation of ConstantPoolCache
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408 void constantPoolCacheOopDesc::initialize(intArray& inverse_index_map) {
a61af66fc99e Initial load
duke
parents:
diff changeset
409 assert(inverse_index_map.length() == length(), "inverse index map must have same length as cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
410 for (int i = 0; i < length(); i++) entry_at(i)->set_initial_state(inverse_index_map[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
412
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // RedefineClasses() API support:
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // If any entry of this constantPoolCache points to any of
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // old_methods, replace it with the corresponding new_method.
a61af66fc99e Initial load
duke
parents:
diff changeset
416 void constantPoolCacheOopDesc::adjust_method_entries(methodOop* old_methods, methodOop* new_methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
417 int methods_length, bool * trace_name_printed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419 if (methods_length == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
420 // nothing to do if there are no methods
a61af66fc99e Initial load
duke
parents:
diff changeset
421 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // get shorthand for the interesting class
a61af66fc99e Initial load
duke
parents:
diff changeset
425 klassOop old_holder = old_methods[0]->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
426
a61af66fc99e Initial load
duke
parents:
diff changeset
427 for (int i = 0; i < length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
428 if (!entry_at(i)->is_interesting_method_entry(old_holder)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // skip uninteresting methods
a61af66fc99e Initial load
duke
parents:
diff changeset
430 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
431 }
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // The constantPoolCache contains entries for several different
a61af66fc99e Initial load
duke
parents:
diff changeset
434 // things, but we only care about methods. In fact, we only care
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // about methods in the same class as the one that contains the
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // old_methods. At this point, we have an interesting entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 for (int j = 0; j < methods_length; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
439 methodOop old_method = old_methods[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
440 methodOop new_method = new_methods[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442 if (entry_at(i)->adjust_method_entry(old_method, new_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
443 trace_name_printed)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 // current old_method matched this entry and we updated it so
a61af66fc99e Initial load
duke
parents:
diff changeset
445 // break out and get to the next interesting entry if there one
a61af66fc99e Initial load
duke
parents:
diff changeset
446 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
447 }
a61af66fc99e Initial load
duke
parents:
diff changeset
448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }