annotate src/share/vm/oops/cpCacheOop.cpp @ 3938:e6b1331a51d2

7086585: make Java field injection more flexible Reviewed-by: jrose, twisti, kvn, coleenp
author never
date Sat, 10 Sep 2011 17:29:02 -0700
parents ddd894528dbc
children f096e1b74d85
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2227
e5383553fd4e 7014851: Remove unused parallel compaction code
stefank
parents: 1972
diff changeset
2 * Copyright (c) 1998, 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: 1507
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1507
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: 1507
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: 1903
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1903
diff changeset
26 #include "gc_implementation/shared/markSweep.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1903
diff changeset
27 #include "interpreter/interpreter.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1903
diff changeset
28 #include "interpreter/rewriter.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1903
diff changeset
29 #include "memory/universe.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1903
diff changeset
30 #include "oops/cpCacheOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1903
diff changeset
31 #include "oops/objArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1903
diff changeset
32 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1903
diff changeset
33 #include "prims/jvmtiRedefineClassesTrace.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1903
diff changeset
34 #include "runtime/handles.inline.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // Implememtation of ConstantPoolCacheEntry
a61af66fc99e Initial load
duke
parents:
diff changeset
38
1059
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
39 void ConstantPoolCacheEntry::initialize_entry(int index) {
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
40 assert(0 < index && index < 0x10000, "sanity check");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _indices = index;
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
42 assert(constant_pool_index() == index, "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
43 }
a61af66fc99e Initial load
duke
parents:
diff changeset
44
1059
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
45 void ConstantPoolCacheEntry::initialize_secondary_entry(int main_index) {
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
46 assert(0 <= main_index && main_index < 0x10000, "sanity check");
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
47 _indices = (main_index << 16);
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
48 assert(main_entry_index() == main_index, "");
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
49 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 int ConstantPoolCacheEntry::as_flags(TosState state, bool is_final,
a61af66fc99e Initial load
duke
parents:
diff changeset
52 bool is_vfinal, bool is_volatile,
a61af66fc99e Initial load
duke
parents:
diff changeset
53 bool is_method_interface, bool is_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 int f = state;
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 assert( state < number_of_states, "Invalid state in as_flags");
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 f <<= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 if (is_final) f |= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 f <<= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 if (is_vfinal) f |= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 f <<= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (is_volatile) f |= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 f <<= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 if (is_method_interface) f |= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 f <<= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 if (is_method) f |= 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 f <<= ConstantPoolCacheEntry::hotSwapBit;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // Preserve existing flag bit values
a61af66fc99e Initial load
duke
parents:
diff changeset
70 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
71 int old_state = ((_flags >> tosBits) & 0x0F);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 assert(old_state == 0 || old_state == state,
a61af66fc99e Initial load
duke
parents:
diff changeset
73 "inconsistent cpCache flags state");
a61af66fc99e Initial load
duke
parents:
diff changeset
74 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
75 return (_flags | f) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 void ConstantPoolCacheEntry::set_bytecode_1(Bytecodes::Code code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // Read once.
a61af66fc99e Initial load
duke
parents:
diff changeset
81 volatile Bytecodes::Code c = bytecode_1();
a61af66fc99e Initial load
duke
parents:
diff changeset
82 assert(c == 0 || c == code || code == 0, "update must be consistent");
a61af66fc99e Initial load
duke
parents:
diff changeset
83 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // Need to flush pending stores here before bytecode is written.
a61af66fc99e Initial load
duke
parents:
diff changeset
85 OrderAccess::release_store_ptr(&_indices, _indices | ((u_char)code << 16));
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 void ConstantPoolCacheEntry::set_bytecode_2(Bytecodes::Code code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // Read once.
a61af66fc99e Initial load
duke
parents:
diff changeset
91 volatile Bytecodes::Code c = bytecode_2();
a61af66fc99e Initial load
duke
parents:
diff changeset
92 assert(c == 0 || c == code || code == 0, "update must be consistent");
a61af66fc99e Initial load
duke
parents:
diff changeset
93 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // Need to flush pending stores here before bytecode is written.
a61af66fc99e Initial load
duke
parents:
diff changeset
95 OrderAccess::release_store_ptr(&_indices, _indices | ((u_char)code << 24));
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
1903
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
98 // Atomically sets f1 if it is still NULL, otherwise it keeps the
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
99 // current value.
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
100 void ConstantPoolCacheEntry::set_f1_if_null_atomic(oop f1) {
2246
fbf3184da15d 7012339: JSR 292 crash in G1SATBCardTableModRefBS::write_ref_field_pre_work()
twisti
parents: 1972
diff changeset
101 // Use barriers as in oop_store
fbf3184da15d 7012339: JSR 292 crash in G1SATBCardTableModRefBS::write_ref_field_pre_work()
twisti
parents: 1972
diff changeset
102 oop* f1_addr = (oop*) &_f1;
fbf3184da15d 7012339: JSR 292 crash in G1SATBCardTableModRefBS::write_ref_field_pre_work()
twisti
parents: 1972
diff changeset
103 update_barrier_set_pre(f1_addr, f1);
fbf3184da15d 7012339: JSR 292 crash in G1SATBCardTableModRefBS::write_ref_field_pre_work()
twisti
parents: 1972
diff changeset
104 void* result = Atomic::cmpxchg_ptr(f1, f1_addr, NULL);
fbf3184da15d 7012339: JSR 292 crash in G1SATBCardTableModRefBS::write_ref_field_pre_work()
twisti
parents: 1972
diff changeset
105 bool success = (result == NULL);
fbf3184da15d 7012339: JSR 292 crash in G1SATBCardTableModRefBS::write_ref_field_pre_work()
twisti
parents: 1972
diff changeset
106 if (success) {
3279
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
107 update_barrier_set((void*) f1_addr, f1);
1903
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
108 }
2246
fbf3184da15d 7012339: JSR 292 crash in G1SATBCardTableModRefBS::write_ref_field_pre_work()
twisti
parents: 1972
diff changeset
109 }
1903
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
110
0
a61af66fc99e Initial load
duke
parents:
diff changeset
111 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // It is possible to have two different dummy methodOops created
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // when the resolve code for invoke interface executes concurrently
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // Hence the assertion below is weakened a bit for the invokeinterface
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // case.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 bool ConstantPoolCacheEntry::same_methodOop(oop cur_f1, oop f1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 return (cur_f1 == f1 || ((methodOop)cur_f1)->name() ==
a61af66fc99e Initial load
duke
parents:
diff changeset
118 ((methodOop)f1)->name() || ((methodOop)cur_f1)->signature() ==
a61af66fc99e Initial load
duke
parents:
diff changeset
119 ((methodOop)f1)->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // Note that concurrent update of both bytecodes can leave one of them
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // reset to zero. This is harmless; the interpreter will simply re-resolve
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // the damaged entry. More seriously, the memory synchronization is needed
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // to flush other fields (f1, f2) completely to memory before the bytecodes
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // are updated, lest other processors see a non-zero bytecode but zero f1/f2.
a61af66fc99e Initial load
duke
parents:
diff changeset
128 void ConstantPoolCacheEntry::set_field(Bytecodes::Code get_code,
a61af66fc99e Initial load
duke
parents:
diff changeset
129 Bytecodes::Code put_code,
a61af66fc99e Initial load
duke
parents:
diff changeset
130 KlassHandle field_holder,
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 3785
diff changeset
131 int field_index,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
132 int field_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
133 TosState field_type,
a61af66fc99e Initial load
duke
parents:
diff changeset
134 bool is_final,
a61af66fc99e Initial load
duke
parents:
diff changeset
135 bool is_volatile) {
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2264
diff changeset
136 set_f1(field_holder()->java_mirror());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
137 set_f2(field_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 assert(field_index <= field_index_mask,
a61af66fc99e Initial load
duke
parents:
diff changeset
139 "field index does not fit in low flag bits");
a61af66fc99e Initial load
duke
parents:
diff changeset
140 set_flags(as_flags(field_type, is_final, false, is_volatile, false, false) |
a61af66fc99e Initial load
duke
parents:
diff changeset
141 (field_index & field_index_mask));
a61af66fc99e Initial load
duke
parents:
diff changeset
142 set_bytecode_1(get_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 set_bytecode_2(put_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 NOT_PRODUCT(verify(tty));
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 int ConstantPoolCacheEntry::field_index() const {
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 3785
diff changeset
148 return (_flags & field_index_mask);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 void ConstantPoolCacheEntry::set_method(Bytecodes::Code invoke_code,
a61af66fc99e Initial load
duke
parents:
diff changeset
152 methodHandle method,
a61af66fc99e Initial load
duke
parents:
diff changeset
153 int vtable_index) {
1660
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
154 assert(!is_secondary_entry(), "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
155 assert(method->interpreter_entry() != NULL, "should have been set at this point");
a61af66fc99e Initial load
duke
parents:
diff changeset
156 assert(!method->is_obsolete(), "attempt to write obsolete method to cpCache");
a61af66fc99e Initial load
duke
parents:
diff changeset
157 bool change_to_virtual = (invoke_code == Bytecodes::_invokeinterface);
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159 int byte_no = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 bool needs_vfinal_flag = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 switch (invoke_code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 case Bytecodes::_invokevirtual:
a61af66fc99e Initial load
duke
parents:
diff changeset
163 case Bytecodes::_invokeinterface: {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 if (method->can_be_statically_bound()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 set_f2((intptr_t)method());
a61af66fc99e Initial load
duke
parents:
diff changeset
166 needs_vfinal_flag = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
168 assert(vtable_index >= 0, "valid index");
a61af66fc99e Initial load
duke
parents:
diff changeset
169 set_f2(vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 byte_no = 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
1660
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
174
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
175 case Bytecodes::_invokedynamic: // similar to _invokevirtual
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
176 if (TraceInvokeDynamic) {
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
177 tty->print_cr("InvokeDynamic set_method%s method="PTR_FORMAT" index=%d",
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
178 (is_secondary_entry() ? " secondary" : ""),
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
179 (intptr_t)method(), vtable_index);
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
180 method->print();
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
181 this->print(tty, 0);
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
182 }
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
183 assert(method->can_be_statically_bound(), "must be a MH invoker method");
2460
ed69575596ac 6981791: remove experimental code for JSR 292
jrose
parents: 2376
diff changeset
184 assert(_f2 >= constantPoolOopDesc::CPCACHE_INDEX_TAG, "BSM index initialized");
1903
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
185 // SystemDictionary::find_method_handle_invoke only caches
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
186 // methods which signature classes are on the boot classpath,
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
187 // otherwise the newly created method is returned. To avoid
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
188 // races in that case we store the first one coming in into the
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
189 // cp-cache atomically if it's still unset.
87d6a4d1ecbc 6990192: VM crashes in ciTypeFlow::get_block_for()
twisti
parents: 1662
diff changeset
190 set_f1_if_null_atomic(method());
1660
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
191 needs_vfinal_flag = false; // _f2 is not an oop
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
192 assert(!is_vfinal(), "f2 not an oop");
1662
e0ba4e04c839 6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents: 1660
diff changeset
193 byte_no = 1; // coordinate this with bytecode_number & is_resolved
1660
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
194 break;
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
195
0
a61af66fc99e Initial load
duke
parents:
diff changeset
196 case Bytecodes::_invokespecial:
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // Preserve the value of the vfinal flag on invokevirtual bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // which may be shared with this constant pool cache entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
199 needs_vfinal_flag = is_resolved(Bytecodes::_invokevirtual) && is_vfinal();
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
201 case Bytecodes::_invokestatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
202 set_f1(method());
a61af66fc99e Initial load
duke
parents:
diff changeset
203 byte_no = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
206 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
207 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 set_flags(as_flags(as_TosState(method->result_type()),
a61af66fc99e Initial load
duke
parents:
diff changeset
211 method->is_final_method(),
a61af66fc99e Initial load
duke
parents:
diff changeset
212 needs_vfinal_flag,
a61af66fc99e Initial load
duke
parents:
diff changeset
213 false,
a61af66fc99e Initial load
duke
parents:
diff changeset
214 change_to_virtual,
a61af66fc99e Initial load
duke
parents:
diff changeset
215 true)|
a61af66fc99e Initial load
duke
parents:
diff changeset
216 method()->size_of_parameters());
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // Note: byte_no also appears in TemplateTable::resolve.
a61af66fc99e Initial load
duke
parents:
diff changeset
219 if (byte_no == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 set_bytecode_1(invoke_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 } else if (byte_no == 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 if (change_to_virtual) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // NOTE: THIS IS A HACK - BE VERY CAREFUL!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
224 //
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // Workaround for the case where we encounter an invokeinterface, but we
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // should really have an _invokevirtual since the resolved method is a
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // virtual method in java.lang.Object. This is a corner case in the spec
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // but is presumably legal. javac does not generate this code.
a61af66fc99e Initial load
duke
parents:
diff changeset
229 //
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // We set bytecode_1() to _invokeinterface, because that is the
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // bytecode # used by the interpreter to see if it is resolved.
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // We set bytecode_2() to _invokevirtual.
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // See also interpreterRuntime.cpp. (8/25/2000)
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // Only set resolved for the invokeinterface case if method is public.
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // Otherwise, the method needs to be reresolved with caller for each
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // interface call.
a61af66fc99e Initial load
duke
parents:
diff changeset
237 if (method->is_public()) set_bytecode_1(invoke_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 set_bytecode_2(Bytecodes::_invokevirtual);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
240 set_bytecode_2(invoke_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
242 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245 NOT_PRODUCT(verify(tty));
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 void ConstantPoolCacheEntry::set_interface_call(methodHandle method, int index) {
1660
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
250 assert(!is_secondary_entry(), "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
251 klassOop interf = method->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
252 assert(instanceKlass::cast(interf)->is_interface(), "must be an interface");
a61af66fc99e Initial load
duke
parents:
diff changeset
253 set_f1(interf);
a61af66fc99e Initial load
duke
parents:
diff changeset
254 set_f2(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
255 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
256 set_bytecode_1(Bytecodes::_invokeinterface);
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259
1660
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
260 void ConstantPoolCacheEntry::initialize_bootstrap_method_index_in_cache(int bsm_cache_index) {
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
261 assert(!is_secondary_entry(), "only for JVM_CONSTANT_InvokeDynamic main entry");
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
262 assert(_f2 == 0, "initialize once");
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
263 assert(bsm_cache_index == (int)(u2)bsm_cache_index, "oob");
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
264 set_f2(bsm_cache_index + constantPoolOopDesc::CPCACHE_INDEX_TAG);
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
265 }
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
266
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
267 int ConstantPoolCacheEntry::bootstrap_method_index_in_cache() {
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
268 assert(!is_secondary_entry(), "only for JVM_CONSTANT_InvokeDynamic main entry");
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
269 intptr_t bsm_cache_index = (intptr_t) _f2 - constantPoolOopDesc::CPCACHE_INDEX_TAG;
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
270 assert(bsm_cache_index == (intptr_t)(u2)bsm_cache_index, "oob");
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
271 return (int) bsm_cache_index;
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
272 }
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
273
3279
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
274 void ConstantPoolCacheEntry::set_dynamic_call(Handle call_site, methodHandle signature_invoker) {
1660
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
275 assert(is_secondary_entry(), "");
3279
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
276 // NOTE: it's important that all other values are set before f1 is
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
277 // set since some users short circuit on f1 being set
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
278 // (i.e. non-null) and that may result in uninitialized values for
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
279 // other racing threads (e.g. flags).
1507
cd5dbf694d45 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 1059
diff changeset
280 int param_size = signature_invoker->size_of_parameters();
1059
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
281 assert(param_size >= 1, "method argument size must include MH.this");
3279
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
282 param_size -= 1; // do not count MH.this; it is not stacked for invokedynamic
1507
cd5dbf694d45 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 1059
diff changeset
283 bool is_final = true;
cd5dbf694d45 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 1059
diff changeset
284 assert(signature_invoker->is_final_method(), "is_final");
3279
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
285 int flags = as_flags(as_TosState(signature_invoker->result_type()), is_final, false, false, false, true) | param_size;
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
286 assert(_flags == 0 || _flags == flags, "flags should be the same");
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
287 set_flags(flags);
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
288 // do not do set_bytecode on a secondary CP cache entry
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
289 //set_bytecode_1(Bytecodes::_invokedynamic);
3279
08ccee2c4dbf 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 2460
diff changeset
290 set_f1_if_null_atomic(call_site()); // This must be the last one to set (see NOTE above)!
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
291 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
292
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
293
3785
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
294 methodOop ConstantPoolCacheEntry::get_method_if_resolved(Bytecodes::Code invoke_code, constantPoolHandle cpool) {
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
295 assert(invoke_code > (Bytecodes::Code)0, "bad query");
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
296 if (is_secondary_entry()) {
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
297 return cpool->cache()->entry_at(main_entry_index())->get_method_if_resolved(invoke_code, cpool);
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
298 }
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
299 // Decode the action of set_method and set_interface_call
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
300 if (bytecode_1() == invoke_code) {
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
301 oop f1 = _f1;
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
302 if (f1 != NULL) {
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
303 switch (invoke_code) {
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
304 case Bytecodes::_invokeinterface:
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
305 assert(f1->is_klass(), "");
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
306 return klassItable::method_for_itable_index(klassOop(f1), (int) f2());
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
307 case Bytecodes::_invokestatic:
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
308 case Bytecodes::_invokespecial:
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
309 assert(f1->is_method(), "");
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
310 return methodOop(f1);
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
311 }
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
312 }
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
313 }
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
314 if (bytecode_2() == invoke_code) {
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
315 switch (invoke_code) {
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
316 case Bytecodes::_invokevirtual:
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
317 if (is_vfinal()) {
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
318 // invokevirtual
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
319 methodOop m = methodOop((intptr_t) f2());
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
320 assert(m->is_method(), "");
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
321 return m;
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
322 } else {
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
323 int holder_index = cpool->uncached_klass_ref_index_at(constant_pool_index());
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
324 if (cpool->tag_at(holder_index).is_klass()) {
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
325 klassOop klass = cpool->resolved_klass_at(holder_index);
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
326 if (!Klass::cast(klass)->oop_is_instance())
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
327 klass = SystemDictionary::Object_klass();
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
328 return instanceKlass::cast(klass)->method_at_vtable((int) f2());
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
329 }
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
330 }
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
331 }
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
332 }
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
333 return NULL;
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
334 }
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
335
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
336
ddd894528dbc 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 3279
diff changeset
337
0
a61af66fc99e Initial load
duke
parents:
diff changeset
338 class LocalOopClosure: public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
339 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
340 void (*_f)(oop*);
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
343 LocalOopClosure(void f(oop*)) { _f = f; }
a61af66fc99e Initial load
duke
parents:
diff changeset
344 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
345 virtual void do_oop(narrowOop *o) { ShouldNotReachHere(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
346 };
a61af66fc99e Initial load
duke
parents:
diff changeset
347
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 void ConstantPoolCacheEntry::oops_do(void f(oop*)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
350 LocalOopClosure blk(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
351 oop_iterate(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
352 }
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 void ConstantPoolCacheEntry::oop_iterate(OopClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
356 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
358 blk->do_oop((oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
359 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
360 blk->do_oop((oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
361 }
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 void ConstantPoolCacheEntry::oop_iterate_m(OopClosure* blk, MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
366 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
367 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
368 if (mr.contains((oop *)&_f1)) blk->do_oop((oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
369 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
370 if (mr.contains((oop *)&_f2)) blk->do_oop((oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
371 }
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 void ConstantPoolCacheEntry::follow_contents() {
a61af66fc99e Initial load
duke
parents:
diff changeset
376 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
378 MarkSweep::mark_and_push((oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
379 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
380 MarkSweep::mark_and_push((oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
381 }
a61af66fc99e Initial load
duke
parents:
diff changeset
382 }
a61af66fc99e Initial load
duke
parents:
diff changeset
383
a61af66fc99e Initial load
duke
parents:
diff changeset
384 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
385 void ConstantPoolCacheEntry::follow_contents(ParCompactionManager* cm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
386 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
387 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
388 PSParallelCompact::mark_and_push(cm, (oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
389 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
390 PSParallelCompact::mark_and_push(cm, (oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
392 }
a61af66fc99e Initial load
duke
parents:
diff changeset
393 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 void ConstantPoolCacheEntry::adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
397 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
398 MarkSweep::adjust_pointer((oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
399 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
400 MarkSweep::adjust_pointer((oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
401 }
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403
a61af66fc99e Initial load
duke
parents:
diff changeset
404 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
405 void ConstantPoolCacheEntry::update_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 assert(in_words(size()) == 4, "check code below - may need adjustment");
a61af66fc99e Initial load
duke
parents:
diff changeset
407 // field[1] is always oop or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
408 PSParallelCompact::adjust_pointer((oop*)&_f1);
a61af66fc99e Initial load
duke
parents:
diff changeset
409 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 PSParallelCompact::adjust_pointer((oop*)&_f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
412 }
a61af66fc99e Initial load
duke
parents:
diff changeset
413 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // RedefineClasses() API support:
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // If this constantPoolCacheEntry refers to old_method then update it
a61af66fc99e Initial load
duke
parents:
diff changeset
417 // to refer to new_method.
a61af66fc99e Initial load
duke
parents:
diff changeset
418 bool ConstantPoolCacheEntry::adjust_method_entry(methodOop old_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
419 methodOop new_method, bool * trace_name_printed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
422 // virtual and final so f2() contains method ptr instead of vtable index
a61af66fc99e Initial load
duke
parents:
diff changeset
423 if (f2() == (intptr_t)old_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // match old_method so need an update
a61af66fc99e Initial load
duke
parents:
diff changeset
425 _f2 = (intptr_t)new_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
426 if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
427 if (!(*trace_name_printed)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
428 // RC_TRACE_MESG macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
429 RC_TRACE_MESG(("adjust: name=%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
430 Klass::cast(old_method->method_holder())->external_name()));
a61af66fc99e Initial load
duke
parents:
diff changeset
431 *trace_name_printed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // RC_TRACE macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
434 RC_TRACE(0x00400000, ("cpc vf-entry update: %s(%s)",
a61af66fc99e Initial load
duke
parents:
diff changeset
435 new_method->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
436 new_method->signature()->as_C_string()));
a61af66fc99e Initial load
duke
parents:
diff changeset
437 }
a61af66fc99e Initial load
duke
parents:
diff changeset
438
a61af66fc99e Initial load
duke
parents:
diff changeset
439 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442 // f1() is not used with virtual entries so bail out
a61af66fc99e Initial load
duke
parents:
diff changeset
443 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
445
a61af66fc99e Initial load
duke
parents:
diff changeset
446 if ((oop)_f1 == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
447 // NULL f1() means this is a virtual entry so bail out
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // We are assuming that the vtable index does not need change.
a61af66fc99e Initial load
duke
parents:
diff changeset
449 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 if ((oop)_f1 == old_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
453 _f1 = new_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
454 if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
455 if (!(*trace_name_printed)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 // RC_TRACE_MESG macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
457 RC_TRACE_MESG(("adjust: name=%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
458 Klass::cast(old_method->method_holder())->external_name()));
a61af66fc99e Initial load
duke
parents:
diff changeset
459 *trace_name_printed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
460 }
a61af66fc99e Initial load
duke
parents:
diff changeset
461 // RC_TRACE macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
462 RC_TRACE(0x00400000, ("cpc entry update: %s(%s)",
a61af66fc99e Initial load
duke
parents:
diff changeset
463 new_method->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
464 new_method->signature()->as_C_string()));
a61af66fc99e Initial load
duke
parents:
diff changeset
465 }
a61af66fc99e Initial load
duke
parents:
diff changeset
466
a61af66fc99e Initial load
duke
parents:
diff changeset
467 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
469
a61af66fc99e Initial load
duke
parents:
diff changeset
470 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 bool ConstantPoolCacheEntry::is_interesting_method_entry(klassOop k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
474 if (!is_method_entry()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
475 // not a method entry so not interesting by default
a61af66fc99e Initial load
duke
parents:
diff changeset
476 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
477 }
a61af66fc99e Initial load
duke
parents:
diff changeset
478
a61af66fc99e Initial load
duke
parents:
diff changeset
479 methodOop m = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
480 if (is_vfinal()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // virtual and final so _f2 contains method ptr instead of vtable index
a61af66fc99e Initial load
duke
parents:
diff changeset
482 m = (methodOop)_f2;
a61af66fc99e Initial load
duke
parents:
diff changeset
483 } else if ((oop)_f1 == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
484 // NULL _f1 means this is a virtual entry so also not interesting
a61af66fc99e Initial load
duke
parents:
diff changeset
485 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
486 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
487 if (!((oop)_f1)->is_method()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // _f1 can also contain a klassOop for an interface
a61af66fc99e Initial load
duke
parents:
diff changeset
489 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
490 }
a61af66fc99e Initial load
duke
parents:
diff changeset
491 m = (methodOop)_f1;
a61af66fc99e Initial load
duke
parents:
diff changeset
492 }
a61af66fc99e Initial load
duke
parents:
diff changeset
493
a61af66fc99e Initial load
duke
parents:
diff changeset
494 assert(m != NULL && m->is_method(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
495 if (m == NULL || !m->is_method() || m->method_holder() != k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // robustness for above sanity checks or method is not in
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // the interesting class
a61af66fc99e Initial load
duke
parents:
diff changeset
498 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
499 }
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // the method is in the interesting class so the entry is interesting
a61af66fc99e Initial load
duke
parents:
diff changeset
502 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
503 }
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505 void ConstantPoolCacheEntry::print(outputStream* st, int index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
506 // print separator
a61af66fc99e Initial load
duke
parents:
diff changeset
507 if (index == 0) tty->print_cr(" -------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
508 // print entry
1660
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
509 tty->print("%3d ("PTR_FORMAT") ", index, (intptr_t)this);
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
510 if (is_secondary_entry())
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
511 tty->print_cr("[%5d|secondary]", main_entry_index());
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
512 else
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
513 tty->print_cr("[%02x|%02x|%5d]", bytecode_2(), bytecode_1(), constant_pool_index());
1660
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
514 tty->print_cr(" [ "PTR_FORMAT"]", (intptr_t)(oop)_f1);
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
515 tty->print_cr(" [ "PTR_FORMAT"]", (intptr_t)_f2);
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1552
diff changeset
516 tty->print_cr(" [ "PTR_FORMAT"]", (intptr_t)_flags);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
517 tty->print_cr(" -------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
518 }
a61af66fc99e Initial load
duke
parents:
diff changeset
519
a61af66fc99e Initial load
duke
parents:
diff changeset
520 void ConstantPoolCacheEntry::verify(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
521 // not implemented yet
a61af66fc99e Initial load
duke
parents:
diff changeset
522 }
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524 // Implementation of ConstantPoolCache
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 void constantPoolCacheOopDesc::initialize(intArray& inverse_index_map) {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 assert(inverse_index_map.length() == length(), "inverse index map must have same length as cache");
1059
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
528 for (int i = 0; i < length(); i++) {
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
529 ConstantPoolCacheEntry* e = entry_at(i);
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
530 int original_index = inverse_index_map[i];
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
531 if ((original_index & Rewriter::_secondary_entry_tag) != 0) {
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
532 int main_index = (original_index - Rewriter::_secondary_entry_tag);
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
533 assert(!entry_at(main_index)->is_secondary_entry(), "valid main index");
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
534 e->initialize_secondary_entry(main_index);
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
535 } else {
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
536 e->initialize_entry(original_index);
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
537 }
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
538 assert(entry_at(i) == e, "sanity");
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 844
diff changeset
539 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
540 }
a61af66fc99e Initial load
duke
parents:
diff changeset
541
a61af66fc99e Initial load
duke
parents:
diff changeset
542 // RedefineClasses() API support:
a61af66fc99e Initial load
duke
parents:
diff changeset
543 // If any entry of this constantPoolCache points to any of
a61af66fc99e Initial load
duke
parents:
diff changeset
544 // old_methods, replace it with the corresponding new_method.
a61af66fc99e Initial load
duke
parents:
diff changeset
545 void constantPoolCacheOopDesc::adjust_method_entries(methodOop* old_methods, methodOop* new_methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
546 int methods_length, bool * trace_name_printed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
547
a61af66fc99e Initial load
duke
parents:
diff changeset
548 if (methods_length == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
549 // nothing to do if there are no methods
a61af66fc99e Initial load
duke
parents:
diff changeset
550 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
551 }
a61af66fc99e Initial load
duke
parents:
diff changeset
552
a61af66fc99e Initial load
duke
parents:
diff changeset
553 // get shorthand for the interesting class
a61af66fc99e Initial load
duke
parents:
diff changeset
554 klassOop old_holder = old_methods[0]->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
555
a61af66fc99e Initial load
duke
parents:
diff changeset
556 for (int i = 0; i < length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
557 if (!entry_at(i)->is_interesting_method_entry(old_holder)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
558 // skip uninteresting methods
a61af66fc99e Initial load
duke
parents:
diff changeset
559 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
560 }
a61af66fc99e Initial load
duke
parents:
diff changeset
561
a61af66fc99e Initial load
duke
parents:
diff changeset
562 // The constantPoolCache contains entries for several different
a61af66fc99e Initial load
duke
parents:
diff changeset
563 // things, but we only care about methods. In fact, we only care
a61af66fc99e Initial load
duke
parents:
diff changeset
564 // about methods in the same class as the one that contains the
a61af66fc99e Initial load
duke
parents:
diff changeset
565 // old_methods. At this point, we have an interesting entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
566
a61af66fc99e Initial load
duke
parents:
diff changeset
567 for (int j = 0; j < methods_length; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
568 methodOop old_method = old_methods[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
569 methodOop new_method = new_methods[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
570
a61af66fc99e Initial load
duke
parents:
diff changeset
571 if (entry_at(i)->adjust_method_entry(old_method, new_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
572 trace_name_printed)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
573 // current old_method matched this entry and we updated it so
a61af66fc99e Initial load
duke
parents:
diff changeset
574 // break out and get to the next interesting entry if there one
a61af66fc99e Initial load
duke
parents:
diff changeset
575 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
577 }
a61af66fc99e Initial load
duke
parents:
diff changeset
578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
579 }