author | jrose |
Fri, 03 Dec 2010 15:53:57 -0800 | |
changeset 7436 | dbc43da3d512 |
parent 7397 | 5b173b4ca846 |
child 7913 | dd096a83bdbb |
permissions | -rw-r--r-- |
1 | 1 |
/* |
5702 | 2 |
* Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4567
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4567
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4567
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "interpreter/bytecodes.hpp" |
|
27 |
#include "interpreter/interpreter.hpp" |
|
28 |
#include "interpreter/rewriter.hpp" |
|
29 |
#include "memory/gcLocker.hpp" |
|
30 |
#include "memory/oopFactory.hpp" |
|
31 |
#include "memory/resourceArea.hpp" |
|
32 |
#include "oops/generateOopMap.hpp" |
|
33 |
#include "oops/objArrayOop.hpp" |
|
34 |
#include "oops/oop.inline.hpp" |
|
35 |
#include "prims/methodComparator.hpp" |
|
1 | 36 |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
37 |
// Computes a CPC map (new_index -> original_index) for constant pool entries |
1 | 38 |
// that are referred to by the interpreter at runtime via the constant pool cache. |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
39 |
// Also computes a CP map (original_index -> new_index). |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
40 |
// Marks entries in CP which require additional processing. |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
41 |
void Rewriter::compute_index_maps() { |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
42 |
const int length = _pool->length(); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
43 |
init_cp_map(length); |
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
44 |
jint tag_mask = 0; |
1 | 45 |
for (int i = 0; i < length; i++) { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
46 |
int tag = _pool->tag_at(i).value(); |
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
47 |
tag_mask |= (1 << tag); |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
48 |
switch (tag) { |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
49 |
case JVM_CONSTANT_InterfaceMethodref: |
1 | 50 |
case JVM_CONSTANT_Fieldref : // fall through |
51 |
case JVM_CONSTANT_Methodref : // fall through |
|
5882 | 52 |
case JVM_CONSTANT_MethodHandle : // fall through |
53 |
case JVM_CONSTANT_MethodType : // fall through |
|
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
54 |
case JVM_CONSTANT_InvokeDynamic : // fall through |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
55 |
case JVM_CONSTANT_InvokeDynamicTrans: // fall through |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
56 |
add_cp_cache_entry(i); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
57 |
break; |
1 | 58 |
} |
59 |
} |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
60 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
61 |
guarantee((int)_cp_cache_map.length()-1 <= (int)((u2)-1), |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
62 |
"all cp cache indexes fit in a u2"); |
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
63 |
|
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
64 |
_have_invoke_dynamic = ((tag_mask & (1 << JVM_CONSTANT_InvokeDynamic)) != 0); |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
65 |
_have_invoke_dynamic |= ((tag_mask & (1 << JVM_CONSTANT_InvokeDynamicTrans)) != 0); |
1 | 66 |
} |
67 |
||
68 |
||
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
69 |
// Creates a constant pool cache given a CPC map |
2006
f2d2f0f20063
6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents:
1
diff
changeset
|
70 |
// This creates the constant pool cache initially in a state |
f2d2f0f20063
6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents:
1
diff
changeset
|
71 |
// that is unsafe for concurrent GC processing but sets it to |
f2d2f0f20063
6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents:
1
diff
changeset
|
72 |
// a safe mode before the constant pool cache is returned. |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
73 |
void Rewriter::make_constant_pool_cache(TRAPS) { |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
74 |
const int length = _cp_cache_map.length(); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
75 |
constantPoolCacheOop cache = |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
76 |
oopFactory::new_constantPoolCache(length, methodOopDesc::IsUnsafeConc, CHECK); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
77 |
cache->initialize(_cp_cache_map); |
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
78 |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
79 |
// Don't bother with the next pass if there is no JVM_CONSTANT_InvokeDynamic. |
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
80 |
if (_have_invoke_dynamic) { |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
81 |
for (int i = 0; i < length; i++) { |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
82 |
int pool_index = cp_cache_entry_pool_index(i); |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
83 |
if (pool_index >= 0 && |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
84 |
_pool->tag_at(pool_index).is_invoke_dynamic()) { |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
85 |
int bsm_index = _pool->invoke_dynamic_bootstrap_method_ref_index_at(pool_index); |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
86 |
if (bsm_index != 0) { |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
87 |
assert(_pool->tag_at(bsm_index).is_method_handle(), "must be a MH constant"); |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
88 |
// There is a CP cache entry holding the BSM for these calls. |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
89 |
int bsm_cache_index = cp_entry_to_cp_cache(bsm_index); |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
90 |
cache->entry_at(i)->initialize_bootstrap_method_index_in_cache(bsm_cache_index); |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
91 |
} else { |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
92 |
// There is no CP cache entry holding the BSM for these calls. |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
93 |
// We will need to look for a class-global BSM, later. |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
94 |
guarantee(AllowTransitionalJSR292, ""); |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
95 |
} |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
96 |
} |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
97 |
} |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
98 |
} |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
99 |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
100 |
_pool->set_cache(cache); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
101 |
cache->set_constant_pool(_pool()); |
1 | 102 |
} |
103 |
||
104 |
||
105 |
||
106 |
// The new finalization semantics says that registration of |
|
107 |
// finalizable objects must be performed on successful return from the |
|
108 |
// Object.<init> constructor. We could implement this trivially if |
|
109 |
// <init> were never rewritten but since JVMTI allows this to occur, a |
|
110 |
// more complicated solution is required. A special return bytecode |
|
111 |
// is used only by Object.<init> to signal the finalization |
|
112 |
// registration point. Additionally local 0 must be preserved so it's |
|
113 |
// available to pass to the registration function. For simplicty we |
|
114 |
// require that local 0 is never overwritten so it's available as an |
|
115 |
// argument for registration. |
|
116 |
||
117 |
void Rewriter::rewrite_Object_init(methodHandle method, TRAPS) { |
|
118 |
RawBytecodeStream bcs(method); |
|
119 |
while (!bcs.is_last_bytecode()) { |
|
120 |
Bytecodes::Code opcode = bcs.raw_next(); |
|
121 |
switch (opcode) { |
|
122 |
case Bytecodes::_return: *bcs.bcp() = Bytecodes::_return_register_finalizer; break; |
|
123 |
||
124 |
case Bytecodes::_istore: |
|
125 |
case Bytecodes::_lstore: |
|
126 |
case Bytecodes::_fstore: |
|
127 |
case Bytecodes::_dstore: |
|
128 |
case Bytecodes::_astore: |
|
129 |
if (bcs.get_index() != 0) continue; |
|
130 |
||
131 |
// fall through |
|
132 |
case Bytecodes::_istore_0: |
|
133 |
case Bytecodes::_lstore_0: |
|
134 |
case Bytecodes::_fstore_0: |
|
135 |
case Bytecodes::_dstore_0: |
|
136 |
case Bytecodes::_astore_0: |
|
137 |
THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), |
|
138 |
"can't overwrite local 0 in Object.<init>"); |
|
139 |
break; |
|
140 |
} |
|
141 |
} |
|
142 |
} |
|
143 |
||
144 |
||
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
145 |
// Rewrite a classfile-order CP index into a native-order CPC index. |
5688 | 146 |
void Rewriter::rewrite_member_reference(address bcp, int offset) { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
147 |
address p = bcp + offset; |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
148 |
int cp_index = Bytes::get_Java_u2(p); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
149 |
int cache_index = cp_entry_to_cp_cache(cp_index); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
150 |
Bytes::put_native_u2(p, cache_index); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
151 |
} |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
152 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
153 |
|
5688 | 154 |
void Rewriter::rewrite_invokedynamic(address bcp, int offset) { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
155 |
address p = bcp + offset; |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
156 |
assert(p[-1] == Bytecodes::_invokedynamic, ""); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
157 |
int cp_index = Bytes::get_Java_u2(p); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
158 |
int cpc = maybe_add_cp_cache_entry(cp_index); // add lazily |
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3273
diff
changeset
|
159 |
int cpc2 = add_secondary_cp_cache_entry(cpc); |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
160 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
161 |
// Replace the trailing four bytes with a CPC index for the dynamic |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
162 |
// call site. Unlike other CPC entries, there is one per bytecode, |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
163 |
// not just one per distinct CP entry. In other words, the |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
164 |
// CPC-to-CP relation is many-to-one for invokedynamic entries. |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
165 |
// This means we must use a larger index size than u2 to address |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
166 |
// all these entries. That is the main reason invokedynamic |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
167 |
// must have a five-byte instruction format. (Of course, other JVM |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
168 |
// implementations can use the bytes for other purposes.) |
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3273
diff
changeset
|
169 |
Bytes::put_native_u4(p, constantPoolCacheOopDesc::encode_secondary_index(cpc2)); |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
170 |
// Note: We use native_u4 format exclusively for 4-byte indexes. |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
171 |
} |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
172 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
173 |
|
5882 | 174 |
// Rewrite some ldc bytecodes to _fast_aldc |
175 |
void Rewriter::maybe_rewrite_ldc(address bcp, int offset, bool is_wide) { |
|
176 |
assert((*bcp) == (is_wide ? Bytecodes::_ldc_w : Bytecodes::_ldc), ""); |
|
177 |
address p = bcp + offset; |
|
178 |
int cp_index = is_wide ? Bytes::get_Java_u2(p) : (u1)(*p); |
|
179 |
constantTag tag = _pool->tag_at(cp_index).value(); |
|
180 |
if (tag.is_method_handle() || tag.is_method_type()) { |
|
181 |
int cache_index = cp_entry_to_cp_cache(cp_index); |
|
182 |
if (is_wide) { |
|
183 |
(*bcp) = Bytecodes::_fast_aldc_w; |
|
184 |
assert(cache_index == (u2)cache_index, ""); |
|
185 |
Bytes::put_native_u2(p, cache_index); |
|
186 |
} else { |
|
187 |
(*bcp) = Bytecodes::_fast_aldc; |
|
188 |
assert(cache_index == (u1)cache_index, ""); |
|
189 |
(*p) = (u1)cache_index; |
|
190 |
} |
|
191 |
} |
|
192 |
} |
|
193 |
||
194 |
||
1 | 195 |
// Rewrites a method given the index_map information |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
196 |
void Rewriter::scan_method(methodOop method) { |
1 | 197 |
|
198 |
int nof_jsrs = 0; |
|
199 |
bool has_monitor_bytecodes = false; |
|
200 |
||
201 |
{ |
|
202 |
// We cannot tolerate a GC in this block, because we've |
|
203 |
// cached the bytecodes in 'code_base'. If the methodOop |
|
204 |
// moves, the bytecodes will also move. |
|
205 |
No_Safepoint_Verifier nsv; |
|
206 |
Bytecodes::Code c; |
|
207 |
||
208 |
// Bytecodes and their length |
|
209 |
const address code_base = method->code_base(); |
|
210 |
const int code_length = method->code_size(); |
|
211 |
||
212 |
int bc_length; |
|
213 |
for (int bci = 0; bci < code_length; bci += bc_length) { |
|
214 |
address bcp = code_base + bci; |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
215 |
int prefix_length = 0; |
1 | 216 |
c = (Bytecodes::Code)(*bcp); |
217 |
||
218 |
// Since we have the code, see if we can get the length |
|
219 |
// directly. Some more complicated bytecodes will report |
|
220 |
// a length of zero, meaning we need to make another method |
|
221 |
// call to calculate the length. |
|
222 |
bc_length = Bytecodes::length_for(c); |
|
223 |
if (bc_length == 0) { |
|
224 |
bc_length = Bytecodes::length_at(bcp); |
|
225 |
||
226 |
// length_at will put us at the bytecode after the one modified |
|
227 |
// by 'wide'. We don't currently examine any of the bytecodes |
|
228 |
// modified by wide, but in case we do in the future... |
|
229 |
if (c == Bytecodes::_wide) { |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
230 |
prefix_length = 1; |
1 | 231 |
c = (Bytecodes::Code)bcp[1]; |
232 |
} |
|
233 |
} |
|
234 |
||
235 |
assert(bc_length != 0, "impossible bytecode length"); |
|
236 |
||
237 |
switch (c) { |
|
238 |
case Bytecodes::_lookupswitch : { |
|
239 |
#ifndef CC_INTERP |
|
240 |
Bytecode_lookupswitch* bc = Bytecode_lookupswitch_at(bcp); |
|
5688 | 241 |
(*bcp) = ( |
1 | 242 |
bc->number_of_pairs() < BinarySwitchThreshold |
243 |
? Bytecodes::_fast_linearswitch |
|
244 |
: Bytecodes::_fast_binaryswitch |
|
245 |
); |
|
246 |
#endif |
|
247 |
break; |
|
248 |
} |
|
249 |
case Bytecodes::_getstatic : // fall through |
|
250 |
case Bytecodes::_putstatic : // fall through |
|
251 |
case Bytecodes::_getfield : // fall through |
|
252 |
case Bytecodes::_putfield : // fall through |
|
253 |
case Bytecodes::_invokevirtual : // fall through |
|
254 |
case Bytecodes::_invokespecial : // fall through |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
255 |
case Bytecodes::_invokestatic : |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
256 |
case Bytecodes::_invokeinterface: |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
257 |
rewrite_member_reference(bcp, prefix_length+1); |
1 | 258 |
break; |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
259 |
case Bytecodes::_invokedynamic: |
5688 | 260 |
rewrite_invokedynamic(bcp, prefix_length+1); |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
261 |
break; |
5882 | 262 |
case Bytecodes::_ldc: |
263 |
maybe_rewrite_ldc(bcp, prefix_length+1, false); |
|
264 |
break; |
|
265 |
case Bytecodes::_ldc_w: |
|
266 |
maybe_rewrite_ldc(bcp, prefix_length+1, true); |
|
267 |
break; |
|
1 | 268 |
case Bytecodes::_jsr : // fall through |
269 |
case Bytecodes::_jsr_w : nof_jsrs++; break; |
|
270 |
case Bytecodes::_monitorenter : // fall through |
|
271 |
case Bytecodes::_monitorexit : has_monitor_bytecodes = true; break; |
|
272 |
} |
|
273 |
} |
|
274 |
} |
|
275 |
||
276 |
// Update access flags |
|
277 |
if (has_monitor_bytecodes) { |
|
278 |
method->set_has_monitor_bytecodes(); |
|
279 |
} |
|
280 |
||
281 |
// The present of a jsr bytecode implies that the method might potentially |
|
282 |
// have to be rewritten, so we run the oopMapGenerator on the method |
|
283 |
if (nof_jsrs > 0) { |
|
284 |
method->set_has_jsrs(); |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
285 |
// Second pass will revisit this method. |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
286 |
assert(method->has_jsrs(), ""); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
287 |
} |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
288 |
} |
1 | 289 |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
290 |
// After constant pool is created, revisit methods containing jsrs. |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
291 |
methodHandle Rewriter::rewrite_jsrs(methodHandle method, TRAPS) { |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
292 |
ResolveOopMapConflicts romc(method); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
293 |
methodHandle original_method = method; |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
294 |
method = romc.do_potential_rewrite(CHECK_(methodHandle())); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
295 |
if (method() != original_method()) { |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
296 |
// Insert invalid bytecode into original methodOop and set |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
297 |
// interpreter entrypoint, so that a executing this method |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
298 |
// will manifest itself in an easy recognizable form. |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
299 |
address bcp = original_method->bcp_from(0); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
300 |
*bcp = (u1)Bytecodes::_shouldnotreachhere; |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
301 |
int kind = Interpreter::method_kind(original_method); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
302 |
original_method->set_interpreter_kind(kind); |
1 | 303 |
} |
304 |
||
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
305 |
// Update monitor matching info. |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
306 |
if (romc.monitor_safe()) { |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
307 |
method->set_guaranteed_monitor_matching(); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
308 |
} |
1 | 309 |
|
310 |
return method; |
|
311 |
} |
|
312 |
||
313 |
||
314 |
void Rewriter::rewrite(instanceKlassHandle klass, TRAPS) { |
|
315 |
ResourceMark rm(THREAD); |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
316 |
Rewriter rw(klass, klass->constants(), klass->methods(), CHECK); |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
317 |
// (That's all, folks.) |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
318 |
} |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
319 |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
320 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
321 |
void Rewriter::rewrite(instanceKlassHandle klass, constantPoolHandle cpool, objArrayHandle methods, TRAPS) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
322 |
ResourceMark rm(THREAD); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
323 |
Rewriter rw(klass, cpool, methods, CHECK); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
324 |
// (That's all, folks.) |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
325 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
326 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
327 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
328 |
Rewriter::Rewriter(instanceKlassHandle klass, constantPoolHandle cpool, objArrayHandle methods, TRAPS) |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
329 |
: _klass(klass), |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
330 |
_pool(cpool), |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4429
diff
changeset
|
331 |
_methods(methods) |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
332 |
{ |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
333 |
assert(_pool->cache() == NULL, "constant pool cache must not be set yet"); |
1 | 334 |
|
335 |
// determine index maps for methodOop rewriting |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
336 |
compute_index_maps(); |
1 | 337 |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
338 |
if (RegisterFinalizersAtInit && _klass->name() == vmSymbols::java_lang_Object()) { |
3273
6acf7084b1d3
6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents:
2570
diff
changeset
|
339 |
bool did_rewrite = false; |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
340 |
int i = _methods->length(); |
1 | 341 |
while (i-- > 0) { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
342 |
methodOop method = (methodOop)_methods->obj_at(i); |
1 | 343 |
if (method->intrinsic_id() == vmIntrinsics::_Object_init) { |
344 |
// rewrite the return bytecodes of Object.<init> to register the |
|
345 |
// object for finalization if needed. |
|
346 |
methodHandle m(THREAD, method); |
|
347 |
rewrite_Object_init(m, CHECK); |
|
3273
6acf7084b1d3
6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents:
2570
diff
changeset
|
348 |
did_rewrite = true; |
1 | 349 |
break; |
350 |
} |
|
351 |
} |
|
3273
6acf7084b1d3
6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents:
2570
diff
changeset
|
352 |
assert(did_rewrite, "must find Object::<init> to rewrite it"); |
1 | 353 |
} |
354 |
||
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
355 |
// rewrite methods, in two passes |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
356 |
int i, len = _methods->length(); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
357 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
358 |
for (i = len; --i >= 0; ) { |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
359 |
methodOop method = (methodOop)_methods->obj_at(i); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
360 |
scan_method(method); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
361 |
} |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
362 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
363 |
// allocate constant pool cache, now that we've seen all the bytecodes |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
364 |
make_constant_pool_cache(CHECK); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
365 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
366 |
for (i = len; --i >= 0; ) { |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
367 |
methodHandle m(THREAD, (methodOop)_methods->obj_at(i)); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
368 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
369 |
if (m->has_jsrs()) { |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
370 |
m = rewrite_jsrs(m, CHECK); |
1 | 371 |
// Method might have gotten rewritten. |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
372 |
_methods->obj_at_put(i, m()); |
1 | 373 |
} |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
374 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
375 |
// Set up method entry points for compiler and interpreter. |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
376 |
m->link_method(m, CHECK); |
5697 | 377 |
|
378 |
#ifdef ASSERT |
|
379 |
if (StressMethodComparator) { |
|
380 |
static int nmc = 0; |
|
381 |
for (int j = i; j >= 0 && j >= i-4; j--) { |
|
382 |
if ((++nmc % 1000) == 0) tty->print_cr("Have run MethodComparator %d times...", nmc); |
|
383 |
bool z = MethodComparator::methods_EMCP(m(), (methodOop)_methods->obj_at(j)); |
|
384 |
if (j == i && !z) { |
|
385 |
tty->print("MethodComparator FAIL: "); m->print(); m->print_codes(); |
|
386 |
assert(z, "method must compare equal to itself"); |
|
387 |
} |
|
388 |
} |
|
389 |
} |
|
390 |
#endif //ASSERT |
|
1 | 391 |
} |
392 |
} |