hotspot/src/share/vm/runtime/sharedRuntime.hpp
author twisti
Wed, 25 Aug 2010 05:27:54 -0700
changeset 6418 6671edbd230e
parent 6176 4d9030fe341f
child 6965 4ef36b2a6a3a
permissions -rw-r--r--
6978355: renaming for 6961697 Summary: This is the renaming part of 6961697 to keep the actual changes small for review. Reviewed-by: kvn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5050
diff changeset
     2
 * Copyright (c) 1997, 2010, 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: 5050
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5050
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: 5050
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class AdapterHandlerEntry;
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
    26
class AdapterHandlerTable;
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
    27
class AdapterFingerPrint;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class vframeStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// Runtime is the base class for various runtime interfaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// (InterpreterRuntime, CompilerRuntime, etc.). It provides
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// shared functionality such as exception forwarding (C++ to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Java exceptions), locking/unlocking mechanisms, statistical
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// information, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class SharedRuntime: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  static methodHandle resolve_sub_helper(JavaThread *thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
                                     bool is_virtual,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
                                     bool is_optimized, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // Shared stub locations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  static RuntimeStub* _wrong_method_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  static RuntimeStub* _ic_miss_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static RuntimeStub* _resolve_opt_virtual_call_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static RuntimeStub* _resolve_virtual_call_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  static RuntimeStub* _resolve_static_call_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  static SafepointBlob* _polling_page_safepoint_handler_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  static SafepointBlob* _polling_page_return_handler_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  static ExceptionBlob*       _exception_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  static UncommonTrapBlob*    _uncommon_trap_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  static int     _nof_megamorphic_calls;         // total # of megamorphic calls (through vtable)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
 public:
363
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
    64
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
    65
  // max bytes for each dtrace string parameter
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
    66
  enum { max_dtrace_string_size = 256 };
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
    67
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // The following arithmetic routines are used on platforms that do
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // not have machine instructions to implement their functionality.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Do not remove these.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // long arithmetics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  static jlong   lmul(jlong y, jlong x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  static jlong   ldiv(jlong y, jlong x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  static jlong   lrem(jlong y, jlong x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // float and double remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  static jfloat  frem(jfloat  x, jfloat  y);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  static jdouble drem(jdouble x, jdouble y);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    81
#ifdef __SOFTFP__
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    82
  static jfloat  fadd(jfloat x, jfloat y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    83
  static jfloat  fsub(jfloat x, jfloat y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    84
  static jfloat  fmul(jfloat x, jfloat y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    85
  static jfloat  fdiv(jfloat x, jfloat y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    86
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    87
  static jdouble dadd(jdouble x, jdouble y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    88
  static jdouble dsub(jdouble x, jdouble y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    89
  static jdouble dmul(jdouble x, jdouble y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    90
  static jdouble ddiv(jdouble x, jdouble y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    91
#endif // __SOFTFP__
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    92
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // float conversion (needs to set appropriate rounding mode)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static jint    f2i (jfloat  x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static jlong   f2l (jfloat  x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  static jint    d2i (jdouble x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static jlong   d2l (jdouble x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static jfloat  d2f (jdouble x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  static jfloat  l2f (jlong   x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  static jdouble l2d (jlong   x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   102
#ifdef __SOFTFP__
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   103
  static jfloat  i2f (jint    x);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   104
  static jdouble i2d (jint    x);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   105
  static jdouble f2d (jfloat  x);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   106
#endif // __SOFTFP__
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   107
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // double trigonometrics and transcendentals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static jdouble dsin(jdouble x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  static jdouble dcos(jdouble x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static jdouble dtan(jdouble x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  static jdouble dlog(jdouble x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static jdouble dlog10(jdouble x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  static jdouble dexp(jdouble x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  static jdouble dpow(jdouble x, jdouble y);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   117
#if defined(__SOFTFP__) || defined(E500V2)
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   118
  static double dabs(double f);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   119
  static double dsqrt(double f);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   120
#endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   121
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   122
#ifdef __SOFTFP__
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   123
  // C++ compiler generates soft float instructions as well as passing
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   124
  // float and double in registers.
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   125
  static int  fcmpl(float x, float y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   126
  static int  fcmpg(float x, float y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   127
  static int  dcmpl(double x, double y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   128
  static int  dcmpg(double x, double y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   129
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   130
  static int unordered_fcmplt(float x, float y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   131
  static int unordered_dcmplt(double x, double y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   132
  static int unordered_fcmple(float x, float y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   133
  static int unordered_dcmple(double x, double y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   134
  static int unordered_fcmpge(float x, float y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   135
  static int unordered_dcmpge(double x, double y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   136
  static int unordered_fcmpgt(float x, float y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   137
  static int unordered_dcmpgt(double x, double y);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   138
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   139
  static float  fneg(float f);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   140
  static double dneg(double f);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   141
#endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   142
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // exception handling across interpreter/compiler boundaries
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 4755
diff changeset
   144
  static address raw_exception_handler_for_return_address(JavaThread* thread, address return_address);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 4755
diff changeset
   145
  static address exception_handler_for_return_address(JavaThread* thread, address return_address);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 363
diff changeset
   147
#ifndef SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 363
diff changeset
   148
  // G1 write barriers
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 363
diff changeset
   149
  static void g1_wb_pre(oopDesc* orig, JavaThread *thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 363
diff changeset
   150
  static void g1_wb_post(void* card_addr, JavaThread* thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 363
diff changeset
   151
#endif // !SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 363
diff changeset
   152
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // exception handling and implicit exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  static address compute_compiled_exc_handler(nmethod* nm, address ret_pc, Handle& exception,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                                              bool force_unwind, bool top_frame_only);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  enum ImplicitExceptionKind {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    IMPLICIT_NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    IMPLICIT_DIVIDE_BY_ZERO,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    STACK_OVERFLOW
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  static void    throw_AbstractMethodError(JavaThread* thread);
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   162
  static void    throw_IncompatibleClassChangeError(JavaThread* thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  static void    throw_ArithmeticException(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static void    throw_NullPointerException(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  static void    throw_NullPointerException_at_call(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  static void    throw_StackOverflowError(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  static address continuation_for_implicit_exception(JavaThread* thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
                                                     address faulting_pc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
                                                     ImplicitExceptionKind exception_kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // Shared stub locations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  static address get_poll_stub(address pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  static address get_ic_miss_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    assert(_ic_miss_blob!= NULL, "oops");
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   176
    return _ic_miss_blob->entry_point();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  static address get_handle_wrong_method_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    assert(_wrong_method_blob!= NULL, "oops");
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   181
    return _wrong_method_blob->entry_point();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  static void generate_uncommon_trap_blob(void);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  static UncommonTrapBlob* uncommon_trap_blob()                  { return _uncommon_trap_blob; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  static address get_resolve_opt_virtual_call_stub(){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    assert(_resolve_opt_virtual_call_blob != NULL, "oops");
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   191
    return _resolve_opt_virtual_call_blob->entry_point();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  static address get_resolve_virtual_call_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    assert(_resolve_virtual_call_blob != NULL, "oops");
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   195
    return _resolve_virtual_call_blob->entry_point();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  static address get_resolve_static_call_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    assert(_resolve_static_call_blob != NULL, "oops");
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   199
    return _resolve_static_call_blob->entry_point();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  static SafepointBlob* polling_page_return_handler_blob()     { return _polling_page_return_handler_blob; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  static SafepointBlob* polling_page_safepoint_handler_blob()  { return _polling_page_safepoint_handler_blob; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // Counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  static address nof_megamorphic_calls_addr() { return (address)&_nof_megamorphic_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // Helper routine for full-speed JVMTI exception throwing support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  static void throw_and_post_jvmti_exception(JavaThread *thread, Handle h_exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  static void throw_and_post_jvmti_exception(JavaThread *thread, symbolOop name, const char *message = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
2136
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1388
diff changeset
   214
  // RedefineClasses() tracing support for obsolete method entry
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1388
diff changeset
   215
  static int rc_trace_method_entry(JavaThread* thread, methodOopDesc* m);
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1388
diff changeset
   216
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // To be used as the entry point for unresolved native methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  static address native_method_throw_unsatisfied_link_error_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // bytecode tracing is only used by the TraceBytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  static intptr_t trace_bytecode(JavaThread* thread, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2) PRODUCT_RETURN0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Used to back off a spin lock that is under heavy contention
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  static void yield_all(JavaThread* thread, int attempts = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  static oop retrieve_receiver( symbolHandle sig, frame caller );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  static void register_finalizer(JavaThread* thread, oopDesc* obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // dtrace notifications
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  static int dtrace_object_alloc(oopDesc* o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  static int dtrace_object_alloc_base(Thread* thread, oopDesc* o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  static int dtrace_method_entry(JavaThread* thread, methodOopDesc* m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  static int dtrace_method_exit(JavaThread* thread, methodOopDesc* m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // Utility method for retrieving the Java thread id, returns 0 if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // thread is not a well formed Java thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  static jlong get_java_tid(Thread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // used by native wrappers to reenable yellow if overflow happened in native code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  static void reguard_yellow_pages();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
   * Fill in the "X cannot be cast to a Y" message for ClassCastException
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
   *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
   * @param thr the current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
   * @param name the name of the class of the object attempted to be cast
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
   * @return the dynamically allocated exception message (must be freed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
   * by the caller using a resource mark)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
   *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
   * BCP must refer to the current 'checkcast' opcode for the frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
   * on top of the stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
   * The caller (or one of it's callers) must use a ResourceMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
   * in order to correctly free the result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  static char* generate_class_cast_message(JavaThread* thr, const char* name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  /**
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   260
   * Fill in the message for a WrongMethodTypeException
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   261
   *
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   262
   * @param thr the current thread
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   263
   * @param mtype (optional) expected method type (or argument class)
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   264
   * @param mhandle (optional) actual method handle (or argument)
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   265
   * @return the dynamically allocated exception message
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   266
   *
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   267
   * BCP for the frame on top of the stack must refer to an
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   268
   * 'invokevirtual' op for a method handle, or an 'invokedyamic' op.
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   269
   * The caller (or one of its callers) must use a ResourceMark
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   270
   * in order to correctly free the result.
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   271
   */
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   272
  static char* generate_wrong_method_type_message(JavaThread* thr,
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   273
                                                  oopDesc* mtype = NULL,
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   274
                                                  oopDesc* mhandle = NULL);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   275
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   276
  /** Return non-null if the mtype is a klass or Class, not a MethodType. */
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   277
  static oop wrong_method_type_is_for_single_argument(JavaThread* thr,
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   278
                                                      oopDesc* mtype);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   279
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   280
  /**
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
   * Fill in the "X cannot be cast to a Y" message for ClassCastException
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
   *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
   * @param name the name of the class of the object attempted to be cast
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
   * @param klass the name of the target klass attempt
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   285
   * @param gripe the specific kind of problem being reported
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
   * @return the dynamically allocated exception message (must be freed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
   * by the caller using a resource mark)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
   *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
   * This version does not require access the frame, so it can be called
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
   * from interpreted code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
   * The caller (or one of it's callers) must use a ResourceMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
   * in order to correctly free the result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
   */
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   294
  static char* generate_class_cast_message(const char* name, const char* klass,
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2332
diff changeset
   295
                                           const char* gripe = " cannot be cast to ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  // Resolves a call site- may patch in the destination of the call into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  // compiled code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  static methodHandle resolve_helper(JavaThread *thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
                                     bool is_virtual,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
                                     bool is_optimized, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  static void generate_stubs(void);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  // deopt blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  static void generate_deopt_blob(void);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  static DeoptimizationBlob* _deopt_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  static DeoptimizationBlob* deopt_blob(void)      { return _deopt_blob; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  // Resets a call-site in compiled code so it will get resolved again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  static methodHandle reresolve_call_site(JavaThread *thread, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  // In the code prolog, if the klass comparison fails, the inline cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  // misses and the call site is patched to megamorphic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  static methodHandle handle_ic_miss_helper(JavaThread* thread, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // Find the method that called us.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  static methodHandle find_callee_method(JavaThread* thread, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  static Handle find_callee_info(JavaThread* thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
                                 Bytecodes::Code& bc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
                                 CallInfo& callinfo, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  static Handle find_callee_info_helper(JavaThread* thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
                                        vframeStream& vfst,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
                                        Bytecodes::Code& bc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
                                        CallInfo& callinfo, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  static address clean_virtual_call_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  static address clean_opt_virtual_call_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  static address clean_static_call_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // Read the array of BasicTypes from a Java signature, and compute where
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // compiled Java code would like to put the results.  Values in reg_lo and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // reg_hi refer to 4-byte quantities.  Values less than SharedInfo::stack0 are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  // registers, those above refer to 4-byte stack slots.  All stack slots are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // based off of the window top.  SharedInfo::stack0 refers to the first usable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // slot in the bottom of the frame. SharedInfo::stack0+1 refers to the memory word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // 4-bytes higher. So for sparc because the register window save area is at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  // the bottom of the frame the first 16 words will be skipped and SharedInfo::stack0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  // will be just above it. (
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  // return value is the maximum number of VMReg stack slots the convention will use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  static int java_calling_convention(const BasicType *sig_bt, VMRegPair *regs, int total_args_passed, int is_outgoing);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  // Ditto except for calling C
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  static int c_calling_convention(const BasicType *sig_bt, VMRegPair *regs, int total_args_passed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // Generate I2C and C2I adapters. These adapters are simple argument marshalling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // blobs. Unlike adapters in the tiger and earlier releases the code in these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // blobs does not create a new frame and are therefore virtually invisible
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // to the stack walking code. In general these blobs extend the callers stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // as needed for the conversion of argument locations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // When calling a c2i blob the code will always call the interpreter even if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // by the time we reach the blob there is compiled code available. This allows
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // the blob to pass the incoming stack pointer (the sender sp) in a known
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // location for the interpreter to record. This is used by the frame code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // to correct the sender code to match up with the stack pointer when the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  // thread left the compiled code. In addition it allows the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  // to remove the space the c2i adapter allocated to do it argument conversion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // Although a c2i blob will always run interpreted even if compiled code is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // present if we see that compiled code is present the compiled call site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // will be patched/re-resolved so that later calls will run compiled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  // Aditionally a c2i blob need to have a unverified entry because it can be reached
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  // in situations where the call site is an inlined cache site and may go megamorphic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // A i2c adapter is simpler than the c2i adapter. This is because it is assumed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // that the interpreter before it does any call dispatch will record the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // stack pointer in the interpreter frame. On return it will restore the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // pointer as needed. This means the i2c adapter code doesn't need any special
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // handshaking path with compiled code to keep the stack walking correct.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  static AdapterHandlerEntry* generate_i2c2i_adapters(MacroAssembler *_masm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
                                                      int total_args_passed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
                                                      int max_arg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
                                                      const BasicType *sig_bt,
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   385
                                                      const VMRegPair *regs,
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   386
                                                      AdapterFingerPrint* fingerprint);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // OSR support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // OSR_migration_begin will extract the jvm state from an interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  // frame (locals, monitors) and store the data in a piece of C heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // storage. This then allows the interpreter frame to be removed from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // stack and the OSR nmethod to be called. That method is called with a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // pointer to the C heap storage. This pointer is the return value from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // OSR_migration_begin.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  static intptr_t* OSR_migration_begin( JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // OSR_migration_end is a trivial routine. It is called after the compiled
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // method has extracted the jvm state from the C heap that OSR_migration_begin
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  // created. It's entire job is to simply free this storage.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  static void      OSR_migration_end  ( intptr_t* buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // Convert a sig into a calling convention register layout
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // and find interesting things about it.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2732
diff changeset
   406
  static VMRegPair* find_callee_arguments(symbolOop sig, bool has_receiver, int *arg_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  static VMReg     name_for_receiver();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // "Top of Stack" slots that may be unused by the calling convention but must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  // otherwise be preserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // On Intel these are not necessary and the value can be zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  // On Sparc this describes the words reserved for storing a register window
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  // when an interrupt occurs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  static uint out_preserve_stack_slots();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // Save and restore a native result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  static void    save_native_result(MacroAssembler *_masm, BasicType ret_type, int frame_slots );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  static void restore_native_result(MacroAssembler *_masm, BasicType ret_type, int frame_slots );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // Generate a native wrapper for a given method.  The method takes arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // in the Java compiled code convention, marshals them to the native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  // convention (handlizes oops, etc), transitions to native, makes the call,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  // returns to java state (possibly blocking), unhandlizes any result and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  // returns.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  static nmethod *generate_native_wrapper(MacroAssembler* masm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
                                          methodHandle method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
                                          int total_args_passed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
                                          int max_arg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
                                          BasicType *sig_bt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
                                          VMRegPair *regs,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
                                          BasicType ret_type );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
363
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   433
#ifdef HAVE_DTRACE_H
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   434
  // Generate a dtrace wrapper for a given method.  The method takes arguments
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   435
  // in the Java compiled code convention, marshals them to the native
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   436
  // convention (handlizes oops, etc), transitions to native, makes the call,
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   437
  // returns to java state (possibly blocking), unhandlizes any result and
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   438
  // returns.
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   439
  static nmethod *generate_dtrace_nmethod(MacroAssembler* masm,
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   440
                                          methodHandle method);
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   441
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   442
  // dtrace support to convert a Java string to utf8
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   443
  static void get_utf(oopDesc* src, address dst);
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   444
#endif // def HAVE_DTRACE_H
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   445
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  // A compiled caller has just called the interpreter, but compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // exists.  Patch the caller so he no longer calls into the interpreter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  static void fixup_callers_callsite(methodOopDesc* moop, address ret_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  // Slow-path Locking and Unlocking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  static void complete_monitor_locking_C(oopDesc* obj, BasicLock* lock, JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  static void complete_monitor_unlocking_C(oopDesc* obj, BasicLock* lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  // Resolving of calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  static address resolve_static_call_C     (JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  static address resolve_virtual_call_C    (JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  static address resolve_opt_virtual_call_C(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // arraycopy, the non-leaf version.  (See StubRoutines for all the leaf calls.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  static void slow_arraycopy_C(oopDesc* src,  jint src_pos,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
                               oopDesc* dest, jint dest_pos,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
                               jint length, JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  // handle ic miss with caller being compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  // wrong method handling (inline cache misses, zombie methods)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  static address handle_wrong_method(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  static address handle_wrong_method_ic_miss(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  // Collect and print inline cache miss statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  enum { maxICmiss_count = 100 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  static int     _ICmiss_index;                  // length of IC miss histogram
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  static int     _ICmiss_count[maxICmiss_count]; // miss counts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  static address _ICmiss_at[maxICmiss_count];    // miss addresses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  static void trace_ic_miss(address at);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  static int _monitor_enter_ctr;                 // monitor enter slow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  static int _monitor_exit_ctr;                  // monitor exit slow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  static int _throw_null_ctr;                    // throwing a null-pointer exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  static int _ic_miss_ctr;                       // total # of IC misses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  static int _wrong_method_ctr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  static int _resolve_static_ctr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  static int _resolve_virtual_ctr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  static int _resolve_opt_virtual_ctr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  static int _implicit_null_throws;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  static int _implicit_div0_throws;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  static int _jbyte_array_copy_ctr;        // Slow-path byte array copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  static int _jshort_array_copy_ctr;       // Slow-path short array copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  static int _jint_array_copy_ctr;         // Slow-path int array copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  static int _jlong_array_copy_ctr;        // Slow-path long array copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  static int _oop_array_copy_ctr;          // Slow-path oop array copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  static int _checkcast_array_copy_ctr;    // Slow-path oop array copy, with cast
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  static int _unsafe_array_copy_ctr;       // Slow-path includes alignment checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  static int _generic_array_copy_ctr;      // Slow-path includes type decoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  static int _slow_array_copy_ctr;         // Slow-path failed out to a method call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  static int _new_instance_ctr;            // 'new' object requires GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  static int _new_array_ctr;               // 'new' array requires GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  static int _multi1_ctr, _multi2_ctr, _multi3_ctr, _multi4_ctr, _multi5_ctr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  static int _find_handler_ctr;            // find exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  static int _rethrow_ctr;                 // rethrow exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  static int _mon_enter_stub_ctr;          // monitor enter stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  static int _mon_exit_stub_ctr;           // monitor exit stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  static int _mon_enter_ctr;               // monitor enter slow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  static int _mon_exit_ctr;                // monitor exit slow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  static int _partial_subtype_ctr;         // SubRoutines::partial_subtype_check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  // Statistics code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  // stats for "normal" compiled calls (non-interface)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  static int     _nof_normal_calls;              // total # of calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  static int     _nof_optimized_calls;           // total # of statically-bound calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  static int     _nof_inlined_calls;             // total # of inlined normal calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  static int     _nof_static_calls;              // total # of calls to static methods or super methods (invokespecial)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  static int     _nof_inlined_static_calls;      // total # of inlined static calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  // stats for compiled interface calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  static int     _nof_interface_calls;           // total # of compiled calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  static int     _nof_optimized_interface_calls; // total # of statically-bound interface calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  static int     _nof_inlined_interface_calls;   // total # of inlined interface calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  static int     _nof_megamorphic_interface_calls;// total # of megamorphic interface calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  // stats for runtime exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  static int     _nof_removable_exceptions;      // total # of exceptions that could be replaced by branches due to inlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
 public: // for compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  static address nof_normal_calls_addr()                { return (address)&_nof_normal_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  static address nof_optimized_calls_addr()             { return (address)&_nof_optimized_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  static address nof_inlined_calls_addr()               { return (address)&_nof_inlined_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  static address nof_static_calls_addr()                { return (address)&_nof_static_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  static address nof_inlined_static_calls_addr()        { return (address)&_nof_inlined_static_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  static address nof_interface_calls_addr()             { return (address)&_nof_interface_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  static address nof_optimized_interface_calls_addr()   { return (address)&_nof_optimized_interface_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  static address nof_inlined_interface_calls_addr()     { return (address)&_nof_inlined_interface_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  static address nof_megamorphic_interface_calls_addr() { return (address)&_nof_megamorphic_interface_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  static void print_call_statistics(int comp_total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  static void print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  static void print_ic_miss_histogram();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
// ---------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
// Implementation of AdapterHandlerLibrary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
// This library manages argument marshaling adapters and native wrappers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
// There are 2 flavors of adapters: I2C and C2I.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
//
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   551
// The I2C flavor takes a stock interpreted call setup, marshals the
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   552
// arguments for a Java-compiled call, and jumps to Rmethod-> code()->
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   553
// code_begin().  It is broken to call it without an nmethod assigned.
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   554
// The usual behavior is to lift any register arguments up out of the
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   555
// stack and possibly re-pack the extra arguments to be contigious.
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   556
// I2C adapters will save what the interpreter's stack pointer will be
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   557
// after arguments are popped, then adjust the interpreter's frame
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   558
// size to force alignment and possibly to repack the arguments.
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   559
// After re-packing, it jumps to the compiled code start.  There are
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   560
// no safepoints in this adapter code and a GC cannot happen while
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   561
// marshaling is in progress.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
// The C2I flavor takes a stock compiled call setup plus the target method in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
// Rmethod, marshals the arguments for an interpreted call and jumps to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
// Rmethod->_i2i_entry.  On entry, the interpreted frame has not yet been
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
// setup.  Compiled frames are fixed-size and the args are likely not in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
// right place.  Hence all the args will likely be copied into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
// interpreter's frame, forcing that frame to grow.  The compiled frame's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
// outgoing stack args will be dead after the copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
// Native wrappers, like adapters, marshal arguments.  Unlike adapters they
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
// also perform an offical frame push & pop.  They have a call to the native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
// routine in their middles and end in a return (instead of ending in a jump).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
// The native wrappers are stored in real nmethods instead of the BufferBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
// used by the adapters.  The code generation happens here because it's very
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
// similar to what the adapters have to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   578
class AdapterHandlerEntry : public BasicHashtableEntry {
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   579
  friend class AdapterHandlerTable;
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   580
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
 private:
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   582
  AdapterFingerPrint* _fingerprint;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  address _i2c_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  address _c2i_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  address _c2i_unverified_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
4755
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   587
#ifdef ASSERT
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   588
  // Captures code and signature used to generate this adapter when
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   589
  // verifing adapter equivalence.
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   590
  unsigned char* _saved_code;
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   591
  int            _code_length;
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   592
  BasicType*     _saved_sig;
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   593
  int            _total_args_passed;
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   594
#endif
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   595
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   596
  void init(AdapterFingerPrint* fingerprint, address i2c_entry, address c2i_entry, address c2i_unverified_entry) {
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   597
    _fingerprint = fingerprint;
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   598
    _i2c_entry = i2c_entry;
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   599
    _c2i_entry = c2i_entry;
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   600
    _c2i_unverified_entry = c2i_unverified_entry;
4755
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   601
#ifdef ASSERT
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   602
    _saved_code = NULL;
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   603
    _code_length = 0;
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   604
    _saved_sig = NULL;
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   605
    _total_args_passed = 0;
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   606
#endif
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   607
  }
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   608
4755
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   609
  void deallocate();
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   610
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   611
  // should never be used
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   612
  AdapterHandlerEntry();
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   613
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  address get_i2c_entry()            { return _i2c_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  address get_c2i_entry()            { return _c2i_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  address get_c2i_unverified_entry() { return _c2i_unverified_entry; }
363
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   618
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  void relocate(address new_base);
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   620
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   621
  AdapterFingerPrint* fingerprint()  { return _fingerprint; }
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   622
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   623
  AdapterHandlerEntry* next() {
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   624
    return (AdapterHandlerEntry*)BasicHashtableEntry::next();
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   625
  }
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   626
4755
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   627
#ifdef ASSERT
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   628
  // Used to verify that code generated for shared adapters is equivalent
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   629
  void save_code(unsigned char* code, int length, int total_args_passed, BasicType* sig_bt);
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   630
  bool compare_code(unsigned char* code, int length, int total_args_passed, BasicType* sig_bt);
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   631
#endif
eee57ea6d910 6921922: fix for 6911204 breaks tagged stack interpreter
never
parents: 4735
diff changeset
   632
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
class AdapterHandlerLibrary: public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
 private:
2732
3ab85419f523 6834177: Running jsynprog on Solaris Nevada can cause JVM crash
kvn
parents: 2534
diff changeset
   638
  static BufferBlob* _buffer; // the temporary code buffer in CodeCache
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   639
  static AdapterHandlerTable* _adapters;
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   640
  static AdapterHandlerEntry* _abstract_method_handler;
2732
3ab85419f523 6834177: Running jsynprog on Solaris Nevada can cause JVM crash
kvn
parents: 2534
diff changeset
   641
  static BufferBlob* buffer_blob();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
 public:
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   645
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   646
  static AdapterHandlerEntry* new_entry(AdapterFingerPrint* fingerprint,
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   647
                                        address i2c_entry, address c2i_entry, address c2i_unverified_entry);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  static nmethod* create_native_wrapper(methodHandle method);
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   649
  static AdapterHandlerEntry* get_adapter(methodHandle method);
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   650
363
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   651
#ifdef HAVE_DTRACE_H
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   652
  static nmethod* create_dtrace_nmethod (methodHandle method);
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 189
diff changeset
   653
#endif // HAVE_DTRACE_H
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   655
  static void print_handler(CodeBlob* b) { print_handler_on(tty, b); }
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   656
  static void print_handler_on(outputStream* st, CodeBlob* b);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   657
  static bool contains(CodeBlob* b);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
#ifndef PRODUCT
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4567
diff changeset
   659
  static void print_statistics();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
};