src/hotspot/share/interpreter/abstractInterpreter.cpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 58096 0d97bf7cf8a4
child 59165 2c55c2fc08f5
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53193
184c51e48260 8216262: Remove develop flag DelayCompilationDuringStartup
redestad
parents: 47216
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4564
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4564
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: 4564
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    25
#include "precompiled.hpp"
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14294
diff changeset
    26
#include "asm/macroAssembler.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14294
diff changeset
    27
#include "asm/macroAssembler.inline.hpp"
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
    28
#include "compiler/disassembler.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    29
#include "interpreter/bytecodeHistogram.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    30
#include "interpreter/bytecodeInterpreter.hpp"
54723
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
    31
#include "interpreter/bytecodeStream.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    32
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    33
#include "interpreter/interpreterRuntime.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24424
diff changeset
    34
#include "interpreter/interp_masm.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    35
#include "interpreter/templateTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    36
#include "memory/allocation.inline.hpp"
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
    37
#include "memory/metaspaceShared.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    38
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    39
#include "oops/arrayOop.hpp"
54723
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
    40
#include "oops/constantPool.hpp"
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
    41
#include "oops/cpCache.inline.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    42
#include "oops/methodData.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    43
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    44
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    45
#include "prims/forte.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    46
#include "prims/jvmtiExport.hpp"
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
    47
#include "prims/methodHandles.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    48
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    49
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    50
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    51
#include "runtime/timer.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
# define __ _masm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//------------------------------------------------------------------------------------------------------------------------
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24424
diff changeset
    56
// Implementation of platform independent aspects of Interpreter
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
void AbstractInterpreter::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (_code != NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // make sure 'imported' classes are initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  if (CountBytecodes || TraceBytecodes || StopInterpreterAt) BytecodeCounter::reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  if (PrintBytecodeHistogram)                                BytecodeHistogram::reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  if (PrintBytecodePairHistogram)                            BytecodePairHistogram::reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
53193
184c51e48260 8216262: Remove develop flag DelayCompilationDuringStartup
redestad
parents: 47216
diff changeset
    66
  InvocationCounter::reinitialize();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
void AbstractInterpreter::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  tty->print_cr("----------------------------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  tty->print_cr("Interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  tty->print_cr("code size        = %6dK bytes", (int)_code->used_space()/1024);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  tty->print_cr("total space      = %6dK bytes", (int)_code->total_space()/1024);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  tty->print_cr("wasted space     = %6dK bytes", (int)_code->available_space()/1024);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  tty->print_cr("# of codelets    = %6d"      , _code->number_of_stubs());
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 25950
diff changeset
    80
  if (_code->number_of_stubs() != 0) {
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 25950
diff changeset
    81
    tty->print_cr("avg codelet size = %6d bytes", _code->used_space() / _code->number_of_stubs());
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 25950
diff changeset
    82
    tty->cr();
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 25950
diff changeset
    83
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  _code->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  tty->print_cr("----------------------------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
//------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// Implementation of interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
StubQueue* AbstractInterpreter::_code                                       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
bool       AbstractInterpreter::_notice_safepoints                          = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
address    AbstractInterpreter::_rethrow_exception_entry                    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
address    AbstractInterpreter::_native_entry_begin                         = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
address    AbstractInterpreter::_native_entry_end                           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
address    AbstractInterpreter::_slow_signature_handler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
address    AbstractInterpreter::_entry_table            [AbstractInterpreter::number_of_method_entries];
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   101
address    AbstractInterpreter::_cds_entry_table        [AbstractInterpreter::number_of_method_entries];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
address    AbstractInterpreter::_native_abi_to_tosca    [AbstractInterpreter::number_of_result_handlers];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
//------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
// Generation of complete interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
AbstractInterpreterGenerator::AbstractInterpreterGenerator(StubQueue* _code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  _masm                      = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
//------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// Entry points
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46630
diff changeset
   115
AbstractInterpreter::MethodKind AbstractInterpreter::method_kind(const methodHandle& m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Abstract method?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  if (m->is_abstract()) return abstract;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   119
  // Method handle primitive?
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   120
  if (m->is_method_handle_intrinsic()) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   121
    vmIntrinsics::ID id = m->intrinsic_id();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   122
    assert(MethodHandles::is_signature_polymorphic(id), "must match an intrinsic");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   123
    MethodKind kind = (MethodKind)( method_handle_invoke_FIRST +
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   124
                                    ((int)id - vmIntrinsics::FIRST_MH_SIG_POLY) );
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   125
    assert(kind <= method_handle_invoke_LAST, "parallel enum ranges");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   126
    return kind;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   127
  }
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   128
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16368
diff changeset
   129
#ifndef CC_INTERP
42580
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   130
  switch (m->intrinsic_id()) {
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16368
diff changeset
   131
    // Use optimized stub code for CRC32 native methods.
42580
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   132
    case vmIntrinsics::_updateCRC32            : return java_util_zip_CRC32_update;
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   133
    case vmIntrinsics::_updateBytesCRC32       : return java_util_zip_CRC32_updateBytes;
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   134
    case vmIntrinsics::_updateByteBufferCRC32  : return java_util_zip_CRC32_updateByteBuffer;
33066
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32391
diff changeset
   135
    // Use optimized stub code for CRC32C methods.
42580
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   136
    case vmIntrinsics::_updateBytesCRC32C             : return java_util_zip_CRC32C_updateBytes;
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   137
    case vmIntrinsics::_updateDirectByteBufferCRC32C  : return java_util_zip_CRC32C_updateDirectByteBuffer;
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   138
    case vmIntrinsics::_intBitsToFloat:      return java_lang_Float_intBitsToFloat;
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   139
    case vmIntrinsics::_floatToRawIntBits:   return java_lang_Float_floatToRawIntBits;
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   140
    case vmIntrinsics::_longBitsToDouble:    return java_lang_Double_longBitsToDouble;
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   141
    case vmIntrinsics::_doubleToRawLongBits: return java_lang_Double_doubleToRawLongBits;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 42580
diff changeset
   142
    default:                                 break;
33066
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32391
diff changeset
   143
  }
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 31620
diff changeset
   144
#endif // CC_INTERP
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16368
diff changeset
   145
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Native method?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Note: This test must come _before_ the test for intrinsic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  //       methods. See also comments below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  if (m->is_native()) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   150
    assert(!m->is_method_handle_intrinsic(), "overlapping bits here, watch out");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    return m->is_synchronized() ? native_synchronized : native;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // Synchronized?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  if (m->is_synchronized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    return zerolocals_synchronized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  if (RegisterFinalizersAtInit && m->code_size() == 1 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
      m->intrinsic_id() == vmIntrinsics::_Object_init) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    // We need to execute the special return bytecode to check for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // finalizer registration so create a normal frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    return zerolocals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // Empty method?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  if (m->is_empty_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    return empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // Special intrinsic method?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // Note: This test must come _after_ the test for native methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  //       otherwise we will run into problems with JDK 1.2, see also
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 35201
diff changeset
   174
  //       TemplateInterpreterGenerator::generate_method_entry() for
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  //       for details.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  switch (m->intrinsic_id()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    case vmIntrinsics::_dsin  : return java_lang_math_sin  ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    case vmIntrinsics::_dcos  : return java_lang_math_cos  ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    case vmIntrinsics::_dtan  : return java_lang_math_tan  ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    case vmIntrinsics::_dabs  : return java_lang_math_abs  ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    case vmIntrinsics::_dsqrt : return java_lang_math_sqrt ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    case vmIntrinsics::_dlog  : return java_lang_math_log  ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    case vmIntrinsics::_dlog10: return java_lang_math_log10;
12739
09f26b73ae66 7133857: exp() and pow() should use the x87 ISA on x86
roland
parents: 9176
diff changeset
   184
    case vmIntrinsics::_dpow  : return java_lang_math_pow  ;
09f26b73ae66 7133857: exp() and pow() should use the x87 ISA on x86
roland
parents: 9176
diff changeset
   185
    case vmIntrinsics::_dexp  : return java_lang_math_exp  ;
42580
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   186
    case vmIntrinsics::_fmaD  : return java_lang_math_fmaD ;
56304dee97f3 8169711: CDS does not patch entry trampoline if intrinsic method is disabled
thartmann
parents: 41323
diff changeset
   187
    case vmIntrinsics::_fmaF  : return java_lang_math_fmaF ;
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8076
diff changeset
   188
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 42580
diff changeset
   189
    case vmIntrinsics::_Reference_get
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 42580
diff changeset
   190
                              : return java_lang_ref_reference_get;
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 42580
diff changeset
   191
    default                   : break;
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8076
diff changeset
   192
  }
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8076
diff changeset
   193
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8076
diff changeset
   194
  // Accessor method?
34169
b0b7187852b7 8140650: Method::is_accessor should cover getters and setters for all types
shade
parents: 33198
diff changeset
   195
  if (m->is_getter()) {
b0b7187852b7 8140650: Method::is_accessor should cover getters and setters for all types
shade
parents: 33198
diff changeset
   196
    // TODO: We should have used ::is_accessor above, but fast accessors in Zero expect only getters.
b0b7187852b7 8140650: Method::is_accessor should cover getters and setters for all types
shade
parents: 33198
diff changeset
   197
    // See CppInterpreter::accessor_entry in cppInterpreter_zero.cpp. This should be fixed in Zero,
b0b7187852b7 8140650: Method::is_accessor should cover getters and setters for all types
shade
parents: 33198
diff changeset
   198
    // then the call above updated to ::is_accessor
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8076
diff changeset
   199
    assert(m->size_of_parameters() == 1, "fast code for accessors assumes parameter size = 1");
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8076
diff changeset
   200
    return accessor;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // Note: for now: zero locals for all non-empty methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  return zerolocals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   207
#if INCLUDE_CDS
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   208
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   209
address AbstractInterpreter::get_trampoline_code_buffer(AbstractInterpreter::MethodKind kind) {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   210
  const size_t trampoline_size = SharedRuntime::trampoline_size();
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 54723
diff changeset
   211
  address addr = MetaspaceShared::i2i_entry_code_buffers((size_t)(AbstractInterpreter::number_of_method_entries) * trampoline_size);
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   212
  addr += (size_t)(kind) * trampoline_size;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   213
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   214
  return addr;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   215
}
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   216
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   217
void AbstractInterpreter::update_cds_entry_table(AbstractInterpreter::MethodKind kind) {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   218
  if (DumpSharedSpaces || UseSharedSpaces) {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   219
    address trampoline = get_trampoline_code_buffer(kind);
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   220
    _cds_entry_table[kind] = trampoline;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   221
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   222
    CodeBuffer buffer(trampoline, (int)(SharedRuntime::trampoline_size()));
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   223
    MacroAssembler _masm(&buffer);
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   224
    SharedRuntime::generate_trampoline(&_masm, _entry_table[kind]);
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   225
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   226
    if (PrintInterpreter) {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   227
      Disassembler::decode(buffer.insts_begin(), buffer.insts_end());
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   228
    }
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   229
  }
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   230
}
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   231
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   232
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   234
void AbstractInterpreter::set_entry_for_kind(AbstractInterpreter::MethodKind kind, address entry) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   235
  assert(kind >= method_handle_invoke_FIRST &&
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   236
         kind <= method_handle_invoke_LAST, "late initialization only for MH entry points");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   237
  assert(_entry_table[kind] == _entry_table[abstract], "previous value must be AME entry");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   238
  _entry_table[kind] = entry;
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   239
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   240
  update_cds_entry_table(kind);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   241
}
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   242
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// Return true if the interpreter can prove that the given bytecode has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// not yet been executed (in Java semantics, not in actual operation).
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33198
diff changeset
   245
bool AbstractInterpreter::is_not_reached(const methodHandle& method, int bci) {
54723
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   246
  BytecodeStream s(method, bci);
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   247
  Bytecodes::Code code = s.next();
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   248
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   249
  if (Bytecodes::is_invoke(code)) {
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   250
    assert(!Bytecodes::must_rewrite(code), "invokes aren't rewritten");
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   251
    ConstantPool* cpool = method()->constants();
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   252
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   253
    Bytecode invoke_bc(s.bytecode());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
54723
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   255
    switch (code) {
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   256
      case Bytecodes::_invokedynamic: {
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   257
        assert(invoke_bc.has_index_u4(code), "sanity");
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   258
        int method_index = invoke_bc.get_index_u4(code);
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   259
        return cpool->invokedynamic_cp_cache_entry_at(method_index)->is_f1_null();
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   260
      }
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   261
      case Bytecodes::_invokevirtual:   // fall-through
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   262
      case Bytecodes::_invokeinterface: // fall-through
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   263
      case Bytecodes::_invokespecial:   // fall-through
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   264
      case Bytecodes::_invokestatic: {
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   265
        if (cpool->has_preresolution()) {
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   266
          return false; // might have been reached
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   267
        }
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   268
        assert(!invoke_bc.has_index_u4(code), "sanity");
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   269
        int method_index = invoke_bc.get_index_u2_cpcache(code);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 58096
diff changeset
   270
        constantPoolHandle cp(Thread::current(), cpool);
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 58096
diff changeset
   271
        Method* resolved_method = ConstantPool::method_at_if_loaded(cp, method_index);
54723
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   272
        return (resolved_method == NULL);
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   273
      }
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   274
      default: ShouldNotReachHere();
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   275
    }
1abca1170080 8221542: ~15% performance degradation due to less optimized inline decision
jiefu
parents: 53193
diff changeset
   276
  } else if (!Bytecodes::must_rewrite(code)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    // might have been reached
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // the bytecode might not be rewritten if the method is an accessor, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  address ientry = method->interpreter_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  if (ientry != entry_for_kind(AbstractInterpreter::zerolocals) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
      ientry != entry_for_kind(AbstractInterpreter::zerolocals_synchronized))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    return false;  // interpreter does not run this method!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // otherwise, we can be sure this bytecode has never been executed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
void AbstractInterpreter::print_method_kind(MethodKind kind) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  switch (kind) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    case zerolocals             : tty->print("zerolocals"             ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    case zerolocals_synchronized: tty->print("zerolocals_synchronized"); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    case native                 : tty->print("native"                 ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    case native_synchronized    : tty->print("native_synchronized"    ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    case empty                  : tty->print("empty"                  ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    case accessor               : tty->print("accessor"               ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    case abstract               : tty->print("abstract"               ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    case java_lang_math_sin     : tty->print("java_lang_math_sin"     ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    case java_lang_math_cos     : tty->print("java_lang_math_cos"     ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    case java_lang_math_tan     : tty->print("java_lang_math_tan"     ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    case java_lang_math_abs     : tty->print("java_lang_math_abs"     ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    case java_lang_math_sqrt    : tty->print("java_lang_math_sqrt"    ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    case java_lang_math_log     : tty->print("java_lang_math_log"     ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    case java_lang_math_log10   : tty->print("java_lang_math_log10"   ); break;
41323
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 37439
diff changeset
   309
    case java_lang_math_fmaD    : tty->print("java_lang_math_fmaD"    ); break;
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 37439
diff changeset
   310
    case java_lang_math_fmaF    : tty->print("java_lang_math_fmaF"    ); break;
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16368
diff changeset
   311
    case java_util_zip_CRC32_update           : tty->print("java_util_zip_CRC32_update"); break;
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16368
diff changeset
   312
    case java_util_zip_CRC32_updateBytes      : tty->print("java_util_zip_CRC32_updateBytes"); break;
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16368
diff changeset
   313
    case java_util_zip_CRC32_updateByteBuffer : tty->print("java_util_zip_CRC32_updateByteBuffer"); break;
33066
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32391
diff changeset
   314
    case java_util_zip_CRC32C_updateBytes     : tty->print("java_util_zip_CRC32C_updateBytes"); break;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32391
diff changeset
   315
    case java_util_zip_CRC32C_updateDirectByteBuffer: tty->print("java_util_zip_CRC32C_updateDirectByteByffer"); break;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   316
    default:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   317
      if (kind >= method_handle_invoke_FIRST &&
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   318
          kind <= method_handle_invoke_LAST) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   319
        const char* kind_name = vmIntrinsics::name_at(method_handle_intrinsic(kind));
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   320
        if (kind_name[0] == '_')  kind_name = &kind_name[1];  // '_invokeExact' => 'invokeExact'
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   321
        tty->print("method_handle_%s", kind_name);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   322
        break;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   323
      }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   324
      ShouldNotReachHere();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12739
diff changeset
   325
      break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
//------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
// Deoptimization support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
21198
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   334
/**
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   335
 * If a deoptimization happens, this function returns the point of next bytecode to continue execution.
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   336
 */
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   337
address AbstractInterpreter::deopt_continue_after_entry(Method* method, address bcp, int callee_parameters, bool is_top_frame) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  assert(method->contains(bcp), "just checkin'");
21198
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   339
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   340
  // Get the original and rewritten bytecode.
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   341
  Bytecodes::Code code = Bytecodes::java_code_at(method, bcp);
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   342
  assert(!Interpreter::bytecode_should_reexecute(code), "should not reexecute");
21198
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   343
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   344
  const int bci = method->bci_from(bcp);
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   345
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  // compute continuation length
21198
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   347
  const int length = Bytecodes::length_at(method, bcp);
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   348
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // compute result type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  BasicType type = T_ILLEGAL;
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   351
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  switch (code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    case Bytecodes::_invokevirtual  :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    case Bytecodes::_invokespecial  :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    case Bytecodes::_invokestatic   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    case Bytecodes::_invokeinterface: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
      Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
      ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
      methodHandle mh(thread, method);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   360
      type = Bytecode_invoke(mh, bci).result_type();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      // since the cache entry might not be initialized:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
      // (NOT needed for the old calling convension)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
      if (!is_top_frame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
        int index = Bytes::get_native_u2(bcp+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
        method->constants()->cache()->entry_at(index)->set_parameter_size(callee_parameters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   370
   case Bytecodes::_invokedynamic: {
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   371
      Thread *thread = Thread::current();
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   372
      ResourceMark rm(thread);
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   373
      methodHandle mh(thread, method);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   374
      type = Bytecode_invoke(mh, bci).result_type();
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   375
      // since the cache entry might not be initialized:
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   376
      // (NOT needed for the old calling convension)
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   377
      if (!is_top_frame) {
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   378
        int index = Bytes::get_native_u4(bcp+1);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   379
        method->constants()->invokedynamic_cp_cache_entry_at(index)->set_parameter_size(callee_parameters);
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   380
      }
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   381
      break;
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   382
    }
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3600
diff changeset
   383
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    case Bytecodes::_ldc   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    case Bytecodes::_ldc_w : // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    case Bytecodes::_ldc2_w:
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   387
      {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   388
        Thread *thread = Thread::current();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   389
        ResourceMark rm(thread);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   390
        methodHandle mh(thread, method);
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   391
        type = Bytecode_loadconstant(mh, bci).result_type();
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   392
        break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   393
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
      type = Bytecodes::result_type(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // return entry point for computed continuation state & bytecode length
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    is_top_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    ? Interpreter::deopt_entry (as_TosState(type), length)
21198
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 18507
diff changeset
   404
    : Interpreter::return_entry(as_TosState(type), length, code);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   407
// If deoptimization happens, this function returns the point where the interpreter reexecutes
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   408
// the bytecode.
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   409
// Note: Bytecodes::_athrow is a special case in that it does not return
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   410
//       Interpreter::deopt_entry(vtos, 0) like others
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   411
address AbstractInterpreter::deopt_reexecute_entry(Method* method, address bcp) {
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   412
  assert(method->contains(bcp), "just checkin'");
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   413
  Bytecodes::Code code   = Bytecodes::java_code_at(method, bcp);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33070
diff changeset
   414
#if defined(COMPILER1) || INCLUDE_JVMCI
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   415
  if(code == Bytecodes::_athrow ) {
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   416
    return Interpreter::rethrow_exception_entry();
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   417
  }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33070
diff changeset
   418
#endif /* COMPILER1 || INCLUDE_JVMCI */
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   419
  return Interpreter::deopt_entry(vtos, 0);
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   420
}
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   421
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   422
// If deoptimization happens, the interpreter should reexecute these bytecodes.
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   423
// This function mainly helps the compilers to set up the reexecute bit.
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   424
bool AbstractInterpreter::bytecode_should_reexecute(Bytecodes::Code code) {
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   425
  switch (code) {
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   426
    case Bytecodes::_lookupswitch:
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   427
    case Bytecodes::_tableswitch:
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   428
    case Bytecodes::_fast_binaryswitch:
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   429
    case Bytecodes::_fast_linearswitch:
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   430
    // recompute condtional expression folded into _if<cond>
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   431
    case Bytecodes::_lcmp      :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   432
    case Bytecodes::_fcmpl     :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   433
    case Bytecodes::_fcmpg     :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   434
    case Bytecodes::_dcmpl     :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   435
    case Bytecodes::_dcmpg     :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   436
    case Bytecodes::_ifnull    :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   437
    case Bytecodes::_ifnonnull :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   438
    case Bytecodes::_goto      :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   439
    case Bytecodes::_goto_w    :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   440
    case Bytecodes::_ifeq      :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   441
    case Bytecodes::_ifne      :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   442
    case Bytecodes::_iflt      :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   443
    case Bytecodes::_ifge      :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   444
    case Bytecodes::_ifgt      :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   445
    case Bytecodes::_ifle      :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   446
    case Bytecodes::_if_icmpeq :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   447
    case Bytecodes::_if_icmpne :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   448
    case Bytecodes::_if_icmplt :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   449
    case Bytecodes::_if_icmpge :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   450
    case Bytecodes::_if_icmpgt :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   451
    case Bytecodes::_if_icmple :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   452
    case Bytecodes::_if_acmpeq :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   453
    case Bytecodes::_if_acmpne :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   454
    // special cases
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   455
    case Bytecodes::_getfield  :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   456
    case Bytecodes::_putfield  :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   457
    case Bytecodes::_getstatic :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   458
    case Bytecodes::_putstatic :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   459
    case Bytecodes::_aastore   :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   460
#ifdef COMPILER1
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   461
    //special case of reexecution
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   462
    case Bytecodes::_athrow    :
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   463
#endif
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   464
      return true;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   465
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   466
    default:
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   467
      return false;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   468
  }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   469
}
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2534
diff changeset
   470
35479
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35214
diff changeset
   471
void AbstractInterpreter::initialize_method_handle_entries() {
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35214
diff changeset
   472
  // method handle entry kinds are generated later in MethodHandlesAdapterGenerator::generate:
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35214
diff changeset
   473
  for (int i = method_handle_invoke_FIRST; i <= method_handle_invoke_LAST; i++) {
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35214
diff changeset
   474
    MethodKind kind = (MethodKind) i;
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35214
diff changeset
   475
    _entry_table[kind] = _entry_table[Interpreter::abstract];
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35479
diff changeset
   476
    Interpreter::update_cds_entry_table(kind);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
}