src/share/vm/interpreter/rewriter.cpp

Wed, 09 Jun 2010 18:50:45 -0700

author
jrose
date
Wed, 09 Jun 2010 18:50:45 -0700
changeset 1957
136b78722a08
parent 1934
e9ff18c4ace7
child 2015
083fde3b838e
permissions
-rw-r--r--

6939203: JSR 292 needs method handle constants
Summary: Add new CP types CONSTANT_MethodHandle, CONSTANT_MethodType; extend 'ldc' bytecode.
Reviewed-by: twisti, never

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

mercurial