rewriter.cpp 17.1 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
22 23 24
 *
 */

25 26 27 28 29 30 31
#include "precompiled.hpp"
#include "interpreter/bytecodes.hpp"
#include "interpreter/interpreter.hpp"
#include "interpreter/rewriter.hpp"
#include "memory/gcLocker.hpp"
#include "memory/resourceArea.hpp"
#include "oops/generateOopMap.hpp"
32
#include "prims/methodHandles.hpp"
D
duke 已提交
33

34
// Computes a CPC map (new_index -> original_index) for constant pool entries
D
duke 已提交
35
// that are referred to by the interpreter at runtime via the constant pool cache.
36 37 38 39
// Also computes a CP map (original_index -> new_index).
// Marks entries in CP which require additional processing.
void Rewriter::compute_index_maps() {
  const int length  = _pool->length();
40
  init_maps(length);
41
  bool saw_mh_symbol = false;
D
duke 已提交
42
  for (int i = 0; i < length; i++) {
43 44 45
    int tag = _pool->tag_at(i).value();
    switch (tag) {
      case JVM_CONSTANT_InterfaceMethodref:
D
duke 已提交
46 47
      case JVM_CONSTANT_Fieldref          : // fall through
      case JVM_CONSTANT_Methodref         : // fall through
48 49 50
        add_cp_cache_entry(i);
        break;
      case JVM_CONSTANT_String:
51 52
      case JVM_CONSTANT_MethodHandle      : // fall through
      case JVM_CONSTANT_MethodType        : // fall through
53
        add_resolved_references_entry(i);
54
        break;
55 56 57 58
      case JVM_CONSTANT_Utf8:
        if (_pool->symbol_at(i) == vmSymbols::java_lang_invoke_MethodHandle())
          saw_mh_symbol = true;
        break;
D
duke 已提交
59 60
    }
  }
61

62 63 64
  // Record limits of resolved reference map for constant pool cache indices
  record_map_limits();

65 66
  guarantee((int)_cp_cache_map.length()-1 <= (int)((u2)-1),
            "all cp cache indexes fit in a u2");
67

68 69
  if (saw_mh_symbol)
    _method_handle_invokers.initialize(length, (int)0);
D
duke 已提交
70 71
}

72 73 74 75 76
// Unrewrite the bytecodes if an error occurs.
void Rewriter::restore_bytecodes() {
  int len = _methods->length();

  for (int i = len-1; i >= 0; i--) {
77
    Method* method = _methods->at(i);
78 79 80
    scan_method(method, true);
  }
}
D
duke 已提交
81

82 83 84
// Creates a constant pool cache given a CPC map
void Rewriter::make_constant_pool_cache(TRAPS) {
  const int length = _cp_cache_map.length();
85 86
  ClassLoaderData* loader_data = _pool->pool_holder()->class_loader_data();
  ConstantPoolCache* cache =
87 88
      ConstantPoolCache::allocate(loader_data, length, _cp_cache_map,
                                  _invokedynamic_references_map, CHECK);
89 90 91 92 93

  // initialize object cache in constant pool
  _pool->initialize_resolved_references(loader_data, _resolved_references_map,
                                        _resolved_reference_limit,
                                        CHECK);
94 95
  _pool->set_cache(cache);
  cache->set_constant_pool(_pool());
D
duke 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
}



// The new finalization semantics says that registration of
// finalizable objects must be performed on successful return from the
// Object.<init> constructor.  We could implement this trivially if
// <init> were never rewritten but since JVMTI allows this to occur, a
// more complicated solution is required.  A special return bytecode
// is used only by Object.<init> to signal the finalization
// registration point.  Additionally local 0 must be preserved so it's
// available to pass to the registration function.  For simplicty we
// require that local 0 is never overwritten so it's available as an
// argument for registration.

void Rewriter::rewrite_Object_init(methodHandle method, TRAPS) {
  RawBytecodeStream bcs(method);
  while (!bcs.is_last_bytecode()) {
    Bytecodes::Code opcode = bcs.raw_next();
    switch (opcode) {
      case Bytecodes::_return: *bcs.bcp() = Bytecodes::_return_register_finalizer; break;

      case Bytecodes::_istore:
      case Bytecodes::_lstore:
      case Bytecodes::_fstore:
      case Bytecodes::_dstore:
      case Bytecodes::_astore:
        if (bcs.get_index() != 0) continue;

        // fall through
      case Bytecodes::_istore_0:
      case Bytecodes::_lstore_0:
      case Bytecodes::_fstore_0:
      case Bytecodes::_dstore_0:
      case Bytecodes::_astore_0:
        THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(),
                  "can't overwrite local 0 in Object.<init>");
        break;
    }
  }
}


139
// Rewrite a classfile-order CP index into a native-order CPC index.
140
void Rewriter::rewrite_member_reference(address bcp, int offset, bool reverse) {
141
  address p = bcp + offset;
142 143 144 145
  if (!reverse) {
    int  cp_index    = Bytes::get_Java_u2(p);
    int  cache_index = cp_entry_to_cp_cache(cp_index);
    Bytes::put_native_u2(p, cache_index);
146
    if (!_method_handle_invokers.is_empty())
147
      maybe_rewrite_invokehandle(p - 1, cp_index, cache_index, reverse);
148 149 150 151
  } else {
    int cache_index = Bytes::get_native_u2(p);
    int pool_index = cp_cache_entry_pool_index(cache_index);
    Bytes::put_Java_u2(p, pool_index);
152
    if (!_method_handle_invokers.is_empty())
153
      maybe_rewrite_invokehandle(p - 1, pool_index, cache_index, reverse);
154 155 156 157 158
  }
}


// Adjust the invocation bytecode for a signature-polymorphic method (MethodHandle.invoke, etc.)
159
void Rewriter::maybe_rewrite_invokehandle(address opc, int cp_index, int cache_index, bool reverse) {
160 161 162 163 164 165 166 167 168 169 170 171
  if (!reverse) {
    if ((*opc) == (u1)Bytecodes::_invokevirtual ||
        // allow invokespecial as an alias, although it would be very odd:
        (*opc) == (u1)Bytecodes::_invokespecial) {
      assert(_pool->tag_at(cp_index).is_method(), "wrong index");
      // Determine whether this is a signature-polymorphic method.
      if (cp_index >= _method_handle_invokers.length())  return;
      int status = _method_handle_invokers[cp_index];
      assert(status >= -1 && status <= 1, "oob tri-state");
      if (status == 0) {
        if (_pool->klass_ref_at_noresolve(cp_index) == vmSymbols::java_lang_invoke_MethodHandle() &&
            MethodHandles::is_signature_polymorphic_name(SystemDictionary::MethodHandle_klass(),
172 173
                                                         _pool->name_ref_at(cp_index))) {
          // we may need a resolved_refs entry for the appendix
174
          add_invokedynamic_resolved_references_entries(cp_index, cache_index);
175
          status = +1;
176
        } else {
177
          status = -1;
178
        }
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
        _method_handle_invokers[cp_index] = status;
      }
      // We use a special internal bytecode for such methods (if non-static).
      // The basic reason for this is that such methods need an extra "appendix" argument
      // to transmit the call site's intended call type.
      if (status > 0) {
        (*opc) = (u1)Bytecodes::_invokehandle;
      }
    }
  } else {
    // Do not need to look at cp_index.
    if ((*opc) == (u1)Bytecodes::_invokehandle) {
      (*opc) = (u1)Bytecodes::_invokevirtual;
      // Ignore corner case of original _invokespecial instruction.
      // This is safe because (a) the signature polymorphic method was final, and
      // (b) the implementation of MethodHandle will not call invokespecial on it.
    }
196
  }
197 198 199
}


200
void Rewriter::rewrite_invokedynamic(address bcp, int offset, bool reverse) {
201
  address p = bcp + offset;
202 203 204
  assert(p[-1] == Bytecodes::_invokedynamic, "not invokedynamic bytecode");
  if (!reverse) {
    int cp_index = Bytes::get_Java_u2(p);
205
    int cache_index = add_invokedynamic_cp_cache_entry(cp_index);
206
    add_invokedynamic_resolved_references_entries(cp_index, cache_index);
207 208 209 210 211 212 213 214
    // Replace the trailing four bytes with a CPC index for the dynamic
    // call site.  Unlike other CPC entries, there is one per bytecode,
    // not just one per distinct CP entry.  In other words, the
    // CPC-to-CP relation is many-to-one for invokedynamic entries.
    // This means we must use a larger index size than u2 to address
    // all these entries.  That is the main reason invokedynamic
    // must have a five-byte instruction format.  (Of course, other JVM
    // implementations can use the bytes for other purposes.)
215
    Bytes::put_native_u4(p, ConstantPool::encode_invokedynamic_index(cache_index));
216 217
    // Note: We use native_u4 format exclusively for 4-byte indexes.
  } else {
218 219
    // callsite index
    int cache_index = ConstantPool::decode_invokedynamic_index(
220
                        Bytes::get_native_u4(p));
221 222
    int cp_index = cp_cache_entry_pool_index(cache_index);
    assert(_pool->tag_at(cp_index).is_invoke_dynamic(), "wrong index");
223 224
    // zero out 4 bytes
    Bytes::put_Java_u4(p, 0);
225
    Bytes::put_Java_u2(p, cp_index);
226
  }
227 228 229
}


230
// Rewrite some ldc bytecodes to _fast_aldc
231 232 233 234 235 236 237
void Rewriter::maybe_rewrite_ldc(address bcp, int offset, bool is_wide,
                                 bool reverse) {
  if (!reverse) {
    assert((*bcp) == (is_wide ? Bytecodes::_ldc_w : Bytecodes::_ldc), "not ldc bytecode");
    address p = bcp + offset;
    int cp_index = is_wide ? Bytes::get_Java_u2(p) : (u1)(*p);
    constantTag tag = _pool->tag_at(cp_index).value();
238
    if (tag.is_method_handle() || tag.is_method_type() || tag.is_string()) {
239
      int ref_index = cp_entry_to_resolved_references(cp_index);
240 241
      if (is_wide) {
        (*bcp) = Bytecodes::_fast_aldc_w;
242 243
        assert(ref_index == (u2)ref_index, "index overflow");
        Bytes::put_native_u2(p, ref_index);
244 245
      } else {
        (*bcp) = Bytecodes::_fast_aldc;
246 247
        assert(ref_index == (u1)ref_index, "index overflow");
        (*p) = (u1)ref_index;
248 249 250 251 252 253 254
      }
    }
  } else {
    Bytecodes::Code rewritten_bc =
              (is_wide ? Bytecodes::_fast_aldc_w : Bytecodes::_fast_aldc);
    if ((*bcp) == rewritten_bc) {
      address p = bcp + offset;
255 256
      int ref_index = is_wide ? Bytes::get_native_u2(p) : (u1)(*p);
      int pool_index = resolved_references_entry_to_pool_index(ref_index);
257 258 259 260 261 262 263 264 265
      if (is_wide) {
        (*bcp) = Bytecodes::_ldc_w;
        assert(pool_index == (u2)pool_index, "index overflow");
        Bytes::put_Java_u2(p, pool_index);
      } else {
        (*bcp) = Bytecodes::_ldc;
        assert(pool_index == (u1)pool_index, "index overflow");
        (*p) = (u1)pool_index;
      }
266 267 268 269 270
    }
  }
}


D
duke 已提交
271
// Rewrites a method given the index_map information
272
void Rewriter::scan_method(Method* method, bool reverse) {
D
duke 已提交
273 274 275 276 277 278

  int nof_jsrs = 0;
  bool has_monitor_bytecodes = false;

  {
    // We cannot tolerate a GC in this block, because we've
279
    // cached the bytecodes in 'code_base'. If the Method*
D
duke 已提交
280 281 282 283 284 285 286 287 288 289 290
    // moves, the bytecodes will also move.
    No_Safepoint_Verifier nsv;
    Bytecodes::Code c;

    // Bytecodes and their length
    const address code_base = method->code_base();
    const int code_length = method->code_size();

    int bc_length;
    for (int bci = 0; bci < code_length; bci += bc_length) {
      address bcp = code_base + bci;
291
      int prefix_length = 0;
D
duke 已提交
292 293 294 295 296 297 298 299
      c = (Bytecodes::Code)(*bcp);

      // Since we have the code, see if we can get the length
      // directly. Some more complicated bytecodes will report
      // a length of zero, meaning we need to make another method
      // call to calculate the length.
      bc_length = Bytecodes::length_for(c);
      if (bc_length == 0) {
300
        bc_length = Bytecodes::length_at(method, bcp);
D
duke 已提交
301 302 303 304 305

        // length_at will put us at the bytecode after the one modified
        // by 'wide'. We don't currently examine any of the bytecodes
        // modified by wide, but in case we do in the future...
        if (c == Bytecodes::_wide) {
306
          prefix_length = 1;
D
duke 已提交
307 308 309 310 311 312 313 314 315
          c = (Bytecodes::Code)bcp[1];
        }
      }

      assert(bc_length != 0, "impossible bytecode length");

      switch (c) {
        case Bytecodes::_lookupswitch   : {
#ifndef CC_INTERP
316
          Bytecode_lookupswitch bc(method, bcp);
317
          (*bcp) = (
318
            bc.number_of_pairs() < BinarySwitchThreshold
D
duke 已提交
319 320 321
            ? Bytecodes::_fast_linearswitch
            : Bytecodes::_fast_binaryswitch
          );
322 323 324 325 326 327 328
#endif
          break;
        }
        case Bytecodes::_fast_linearswitch:
        case Bytecodes::_fast_binaryswitch: {
#ifndef CC_INTERP
          (*bcp) = Bytecodes::_lookupswitch;
D
duke 已提交
329 330 331 332 333 334 335 336 337
#endif
          break;
        }
        case Bytecodes::_getstatic      : // fall through
        case Bytecodes::_putstatic      : // fall through
        case Bytecodes::_getfield       : // fall through
        case Bytecodes::_putfield       : // fall through
        case Bytecodes::_invokevirtual  : // fall through
        case Bytecodes::_invokespecial  : // fall through
338 339
        case Bytecodes::_invokestatic   :
        case Bytecodes::_invokeinterface:
340
        case Bytecodes::_invokehandle   : // if reverse=true
341
          rewrite_member_reference(bcp, prefix_length+1, reverse);
342 343
          break;
        case Bytecodes::_invokedynamic:
344
          rewrite_invokedynamic(bcp, prefix_length+1, reverse);
D
duke 已提交
345
          break;
346
        case Bytecodes::_ldc:
347
        case Bytecodes::_fast_aldc:  // if reverse=true
348
          maybe_rewrite_ldc(bcp, prefix_length+1, false, reverse);
349 350
          break;
        case Bytecodes::_ldc_w:
351
        case Bytecodes::_fast_aldc_w:  // if reverse=true
352
          maybe_rewrite_ldc(bcp, prefix_length+1, true, reverse);
353
          break;
D
duke 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
        case Bytecodes::_jsr            : // fall through
        case Bytecodes::_jsr_w          : nof_jsrs++;                   break;
        case Bytecodes::_monitorenter   : // fall through
        case Bytecodes::_monitorexit    : has_monitor_bytecodes = true; break;
      }
    }
  }

  // Update access flags
  if (has_monitor_bytecodes) {
    method->set_has_monitor_bytecodes();
  }

  // The present of a jsr bytecode implies that the method might potentially
  // have to be rewritten, so we run the oopMapGenerator on the method
  if (nof_jsrs > 0) {
    method->set_has_jsrs();
371
    // Second pass will revisit this method.
372
    assert(method->has_jsrs(), "didn't we just set this?");
373 374
  }
}
D
duke 已提交
375

376 377
// After constant pool is created, revisit methods containing jsrs.
methodHandle Rewriter::rewrite_jsrs(methodHandle method, TRAPS) {
378
  ResourceMark rm(THREAD);
379 380 381 382 383 384 385
  ResolveOopMapConflicts romc(method);
  methodHandle original_method = method;
  method = romc.do_potential_rewrite(CHECK_(methodHandle()));
  // Update monitor matching info.
  if (romc.monitor_safe()) {
    method->set_guaranteed_monitor_matching();
  }
D
duke 已提交
386 387 388 389 390 391

  return method;
}

void Rewriter::rewrite(instanceKlassHandle klass, TRAPS) {
  ResourceMark rm(THREAD);
392
  Rewriter     rw(klass, klass->constants(), klass->methods(), CHECK);
393 394
  // (That's all, folks.)
}
D
duke 已提交
395

396

397
Rewriter::Rewriter(instanceKlassHandle klass, constantPoolHandle cpool, Array<Method*>* methods, TRAPS)
398
  : _klass(klass),
399 400
    _pool(cpool),
    _methods(methods)
401 402
{
  assert(_pool->cache() == NULL, "constant pool cache must not be set yet");
D
duke 已提交
403

404
  // determine index maps for Method* rewriting
405
  compute_index_maps();
D
duke 已提交
406

407
  if (RegisterFinalizersAtInit && _klass->name() == vmSymbols::java_lang_Object()) {
408
    bool did_rewrite = false;
409
    int i = _methods->length();
D
duke 已提交
410
    while (i-- > 0) {
411
      Method* method = _methods->at(i);
D
duke 已提交
412 413 414 415 416
      if (method->intrinsic_id() == vmIntrinsics::_Object_init) {
        // rewrite the return bytecodes of Object.<init> to register the
        // object for finalization if needed.
        methodHandle m(THREAD, method);
        rewrite_Object_init(m, CHECK);
417
        did_rewrite = true;
D
duke 已提交
418 419 420
        break;
      }
    }
421
    assert(did_rewrite, "must find Object::<init> to rewrite it");
D
duke 已提交
422 423
  }

424
  // rewrite methods, in two passes
425
  int len = _methods->length();
426

427
  for (int i = len-1; i >= 0; i--) {
428
    Method* method = _methods->at(i);
429 430 431 432
    scan_method(method);
  }

  // allocate constant pool cache, now that we've seen all the bytecodes
433 434 435 436 437 438 439 440 441
  make_constant_pool_cache(THREAD);

  // Restore bytecodes to their unrewritten state if there are exceptions
  // rewriting bytecodes or allocating the cpCache
  if (HAS_PENDING_EXCEPTION) {
    restore_bytecodes();
    return;
  }

442 443 444 445
  // Relocate after everything, but still do this under the is_rewritten flag,
  // so methods with jsrs in custom class lists in aren't attempted to be
  // rewritten in the RO section of the shared archive.
  // Relocated bytecodes don't have to be restored, only the cp cache entries
446
  for (int i = len-1; i >= 0; i--) {
447
    methodHandle m(THREAD, _methods->at(i));
448 449

    if (m->has_jsrs()) {
450 451 452 453 454 455 456 457
      m = rewrite_jsrs(m, THREAD);
      // Restore bytecodes to their unrewritten state if there are exceptions
      // relocating bytecodes.  If some are relocated, that is ok because that
      // doesn't affect constant pool to cpCache rewriting.
      if (HAS_PENDING_EXCEPTION) {
        restore_bytecodes();
        return;
      }
D
duke 已提交
458
      // Method might have gotten rewritten.
459
      methods->at_put(i, m());
D
duke 已提交
460 461 462
    }
  }
}