author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46727 | hotspot/src/share/vm/runtime/sharedRuntime.hpp@6e4a84748e2c |
child 48961 | 120b61d50f85 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46727
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
42650
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_SHAREDRUNTIME_HPP |
26 |
#define SHARE_VM_RUNTIME_SHAREDRUNTIME_HPP |
|
27 |
||
28 |
#include "interpreter/bytecodeHistogram.hpp" |
|
29 |
#include "interpreter/bytecodeTracer.hpp" |
|
30 |
#include "interpreter/linkResolver.hpp" |
|
31 |
#include "memory/allocation.hpp" |
|
32 |
#include "memory/resourceArea.hpp" |
|
33 |
#include "utilities/hashtable.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13883
diff
changeset
|
34 |
#include "utilities/macros.hpp" |
7397 | 35 |
|
1 | 36 |
class AdapterHandlerEntry; |
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
37 |
class AdapterHandlerTable; |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
38 |
class AdapterFingerPrint; |
1 | 39 |
class vframeStream; |
40 |
||
41 |
// Runtime is the base class for various runtime interfaces |
|
42 |
// (InterpreterRuntime, CompilerRuntime, etc.). It provides |
|
43 |
// shared functionality such as exception forwarding (C++ to |
|
44 |
// Java exceptions), locking/unlocking mechanisms, statistical |
|
45 |
// information, etc. |
|
46 |
||
47 |
class SharedRuntime: AllStatic { |
|
10517
f92c9ff3a15f
7051798: SA-JDI: NPE in Frame.addressOfStackSlot(Frame.java:244)
never
parents:
10004
diff
changeset
|
48 |
friend class VMStructs; |
f92c9ff3a15f
7051798: SA-JDI: NPE in Frame.addressOfStackSlot(Frame.java:244)
never
parents:
10004
diff
changeset
|
49 |
|
1 | 50 |
private: |
51 |
static methodHandle resolve_sub_helper(JavaThread *thread, |
|
26683
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25472
diff
changeset
|
52 |
bool is_virtual, |
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25472
diff
changeset
|
53 |
bool is_optimized, TRAPS); |
1 | 54 |
|
55 |
// Shared stub locations |
|
56 |
||
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
57 |
static RuntimeStub* _wrong_method_blob; |
21726
3533814ab107
8028319: ConflictingDefaultsTest.testReabstract spins when running with -mode invoke and -Xcomp
morris
parents:
17872
diff
changeset
|
58 |
static RuntimeStub* _wrong_method_abstract_blob; |
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
59 |
static RuntimeStub* _ic_miss_blob; |
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
60 |
static RuntimeStub* _resolve_opt_virtual_call_blob; |
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
61 |
static RuntimeStub* _resolve_virtual_call_blob; |
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
62 |
static RuntimeStub* _resolve_static_call_blob; |
42650 | 63 |
static address _resolve_static_call_entry; |
1 | 64 |
|
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
65 |
static DeoptimizationBlob* _deopt_blob; |
9630
d6419e4395e3
6939861: JVM should handle more conversion operations
never
parents:
8872
diff
changeset
|
66 |
|
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13881
diff
changeset
|
67 |
static SafepointBlob* _polling_page_vectors_safepoint_handler_blob; |
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
68 |
static SafepointBlob* _polling_page_safepoint_handler_blob; |
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
69 |
static SafepointBlob* _polling_page_return_handler_blob; |
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
70 |
|
1 | 71 |
#ifdef COMPILER2 |
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
72 |
static UncommonTrapBlob* _uncommon_trap_blob; |
1 | 73 |
#endif // COMPILER2 |
74 |
||
75 |
#ifndef PRODUCT |
|
76 |
// Counters |
|
77 |
static int _nof_megamorphic_calls; // total # of megamorphic calls (through vtable) |
|
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
78 |
#endif // !PRODUCT |
1 | 79 |
|
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
80 |
private: |
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13881
diff
changeset
|
81 |
enum { POLL_AT_RETURN, POLL_AT_LOOP, POLL_AT_VECTOR_LOOP }; |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13881
diff
changeset
|
82 |
static SafepointBlob* generate_handler_blob(address call_ptr, int poll_type); |
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
83 |
static RuntimeStub* generate_resolve_blob(address destination, const char* name); |
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
84 |
|
1 | 85 |
public: |
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9630
diff
changeset
|
86 |
static void generate_stubs(void); |
363
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
189
diff
changeset
|
87 |
|
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
189
diff
changeset
|
88 |
// 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
|
89 |
enum { max_dtrace_string_size = 256 }; |
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
189
diff
changeset
|
90 |
|
1 | 91 |
// The following arithmetic routines are used on platforms that do |
92 |
// not have machine instructions to implement their functionality. |
|
93 |
// Do not remove these. |
|
94 |
||
95 |
// long arithmetics |
|
96 |
static jlong lmul(jlong y, jlong x); |
|
97 |
static jlong ldiv(jlong y, jlong x); |
|
98 |
static jlong lrem(jlong y, jlong x); |
|
99 |
||
100 |
// float and double remainder |
|
101 |
static jfloat frem(jfloat x, jfloat y); |
|
102 |
static jdouble drem(jdouble x, jdouble y); |
|
103 |
||
35055
a4cf2927e727
8015396: double a%b returns NaN for some (a,b) (|a| < inf, |b|>0)
ctornqvi
parents:
34633
diff
changeset
|
104 |
|
a4cf2927e727
8015396: double a%b returns NaN for some (a,b) (|a| < inf, |b|>0)
ctornqvi
parents:
34633
diff
changeset
|
105 |
#ifdef _WIN64 |
a4cf2927e727
8015396: double a%b returns NaN for some (a,b) (|a| < inf, |b|>0)
ctornqvi
parents:
34633
diff
changeset
|
106 |
// Workaround for fmod issue in the Windows x64 CRT |
a4cf2927e727
8015396: double a%b returns NaN for some (a,b) (|a| < inf, |b|>0)
ctornqvi
parents:
34633
diff
changeset
|
107 |
static double fmod_winx64(double x, double y); |
a4cf2927e727
8015396: double a%b returns NaN for some (a,b) (|a| < inf, |b|>0)
ctornqvi
parents:
34633
diff
changeset
|
108 |
#endif |
a4cf2927e727
8015396: double a%b returns NaN for some (a,b) (|a| < inf, |b|>0)
ctornqvi
parents:
34633
diff
changeset
|
109 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
110 |
#ifdef __SOFTFP__ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
111 |
static jfloat fadd(jfloat x, jfloat y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
112 |
static jfloat fsub(jfloat x, jfloat y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
113 |
static jfloat fmul(jfloat x, jfloat y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
114 |
static jfloat fdiv(jfloat x, jfloat y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
115 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
116 |
static jdouble dadd(jdouble x, jdouble y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
117 |
static jdouble dsub(jdouble x, jdouble y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
118 |
static jdouble dmul(jdouble x, jdouble y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
119 |
static jdouble ddiv(jdouble x, jdouble y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
120 |
#endif // __SOFTFP__ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
121 |
|
1 | 122 |
// float conversion (needs to set appropriate rounding mode) |
123 |
static jint f2i (jfloat x); |
|
124 |
static jlong f2l (jfloat x); |
|
125 |
static jint d2i (jdouble x); |
|
126 |
static jlong d2l (jdouble x); |
|
127 |
static jfloat d2f (jdouble x); |
|
128 |
static jfloat l2f (jlong x); |
|
129 |
static jdouble l2d (jlong x); |
|
130 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
131 |
#ifdef __SOFTFP__ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
132 |
static jfloat i2f (jint x); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
133 |
static jdouble i2d (jint x); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
134 |
static jdouble f2d (jfloat x); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
135 |
#endif // __SOFTFP__ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
136 |
|
1 | 137 |
// double trigonometrics and transcendentals |
138 |
static jdouble dsin(jdouble x); |
|
139 |
static jdouble dcos(jdouble x); |
|
140 |
static jdouble dtan(jdouble x); |
|
141 |
static jdouble dlog(jdouble x); |
|
142 |
static jdouble dlog10(jdouble x); |
|
143 |
static jdouble dexp(jdouble x); |
|
144 |
static jdouble dpow(jdouble x, jdouble y); |
|
145 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
146 |
#if defined(__SOFTFP__) || defined(E500V2) |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
147 |
static double dabs(double f); |
6965
4ef36b2a6a3a
6989297: Integrate additional portability improvements
bobv
parents:
6418
diff
changeset
|
148 |
#endif |
4ef36b2a6a3a
6989297: Integrate additional portability improvements
bobv
parents:
6418
diff
changeset
|
149 |
|
34220 | 150 |
#if defined(__SOFTFP__) || defined(PPC) |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
151 |
static double dsqrt(double f); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
152 |
#endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
153 |
|
31583
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
30244
diff
changeset
|
154 |
// Montgomery multiplication |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
30244
diff
changeset
|
155 |
static void montgomery_multiply(jint *a_ints, jint *b_ints, jint *n_ints, |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
30244
diff
changeset
|
156 |
jint len, jlong inv, jint *m_ints); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
30244
diff
changeset
|
157 |
static void montgomery_square(jint *a_ints, jint *n_ints, |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
30244
diff
changeset
|
158 |
jint len, jlong inv, jint *m_ints); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
30244
diff
changeset
|
159 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
160 |
#ifdef __SOFTFP__ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
161 |
// C++ compiler generates soft float instructions as well as passing |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
162 |
// float and double in registers. |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
163 |
static int fcmpl(float x, float y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
164 |
static int fcmpg(float x, float y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
165 |
static int dcmpl(double x, double y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
166 |
static int dcmpg(double x, double y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
167 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
168 |
static int unordered_fcmplt(float x, float y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
169 |
static int unordered_dcmplt(double x, double y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
170 |
static int unordered_fcmple(float x, float y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
171 |
static int unordered_dcmple(double x, double y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
172 |
static int unordered_fcmpge(float x, float y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
173 |
static int unordered_dcmpge(double x, double y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
174 |
static int unordered_fcmpgt(float x, float y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
175 |
static int unordered_dcmpgt(double x, double y); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
176 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
177 |
static float fneg(float f); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
178 |
static double dneg(double f); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
179 |
#endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
180 |
|
1 | 181 |
// exception handling across interpreter/compiler boundaries |
5046 | 182 |
static address raw_exception_handler_for_return_address(JavaThread* thread, address return_address); |
183 |
static address exception_handler_for_return_address(JavaThread* thread, address return_address); |
|
1 | 184 |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13883
diff
changeset
|
185 |
#if INCLUDE_ALL_GCS |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
363
diff
changeset
|
186 |
// G1 write barriers |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
363
diff
changeset
|
187 |
static void g1_wb_pre(oopDesc* orig, JavaThread *thread); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
363
diff
changeset
|
188 |
static void g1_wb_post(void* card_addr, JavaThread* thread); |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13883
diff
changeset
|
189 |
#endif // INCLUDE_ALL_GCS |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
363
diff
changeset
|
190 |
|
1 | 191 |
// exception handling and implicit exceptions |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37439
diff
changeset
|
192 |
static address compute_compiled_exc_handler(CompiledMethod* nm, address ret_pc, Handle& exception, |
41057
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40061
diff
changeset
|
193 |
bool force_unwind, bool top_frame_only, bool& recursive_exception_occurred); |
1 | 194 |
enum ImplicitExceptionKind { |
195 |
IMPLICIT_NULL, |
|
196 |
IMPLICIT_DIVIDE_BY_ZERO, |
|
197 |
STACK_OVERFLOW |
|
198 |
}; |
|
199 |
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
|
200 |
static void throw_IncompatibleClassChangeError(JavaThread* thread); |
1 | 201 |
static void throw_ArithmeticException(JavaThread* thread); |
202 |
static void throw_NullPointerException(JavaThread* thread); |
|
203 |
static void throw_NullPointerException_at_call(JavaThread* thread); |
|
204 |
static void throw_StackOverflowError(JavaThread* thread); |
|
35071
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
35055
diff
changeset
|
205 |
static void throw_delayed_StackOverflowError(JavaThread* thread); |
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
35055
diff
changeset
|
206 |
static void throw_StackOverflowError_common(JavaThread* thread, bool delayed); |
1 | 207 |
static address continuation_for_implicit_exception(JavaThread* thread, |
208 |
address faulting_pc, |
|
209 |
ImplicitExceptionKind exception_kind); |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
210 |
#if INCLUDE_JVMCI |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37439
diff
changeset
|
211 |
static address deoptimize_for_implicit_exception(JavaThread* thread, address pc, CompiledMethod* nm, int deopt_reason); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
212 |
#endif |
1 | 213 |
|
35071
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
35055
diff
changeset
|
214 |
static void enable_stack_reserved_zone(JavaThread* thread); |
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
35055
diff
changeset
|
215 |
static frame look_for_reserved_stack_annotated_method(JavaThread* thread, frame fr); |
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
35055
diff
changeset
|
216 |
|
1 | 217 |
// Shared stub locations |
218 |
static address get_poll_stub(address pc); |
|
219 |
||
220 |
static address get_ic_miss_stub() { |
|
221 |
assert(_ic_miss_blob!= NULL, "oops"); |
|
6418 | 222 |
return _ic_miss_blob->entry_point(); |
1 | 223 |
} |
224 |
||
225 |
static address get_handle_wrong_method_stub() { |
|
226 |
assert(_wrong_method_blob!= NULL, "oops"); |
|
6418 | 227 |
return _wrong_method_blob->entry_point(); |
1 | 228 |
} |
229 |
||
21726
3533814ab107
8028319: ConflictingDefaultsTest.testReabstract spins when running with -mode invoke and -Xcomp
morris
parents:
17872
diff
changeset
|
230 |
static address get_handle_wrong_method_abstract_stub() { |
3533814ab107
8028319: ConflictingDefaultsTest.testReabstract spins when running with -mode invoke and -Xcomp
morris
parents:
17872
diff
changeset
|
231 |
assert(_wrong_method_abstract_blob!= NULL, "oops"); |
3533814ab107
8028319: ConflictingDefaultsTest.testReabstract spins when running with -mode invoke and -Xcomp
morris
parents:
17872
diff
changeset
|
232 |
return _wrong_method_abstract_blob->entry_point(); |
3533814ab107
8028319: ConflictingDefaultsTest.testReabstract spins when running with -mode invoke and -Xcomp
morris
parents:
17872
diff
changeset
|
233 |
} |
3533814ab107
8028319: ConflictingDefaultsTest.testReabstract spins when running with -mode invoke and -Xcomp
morris
parents:
17872
diff
changeset
|
234 |
|
1 | 235 |
#ifdef COMPILER2 |
236 |
static void generate_uncommon_trap_blob(void); |
|
237 |
static UncommonTrapBlob* uncommon_trap_blob() { return _uncommon_trap_blob; } |
|
238 |
#endif // COMPILER2 |
|
239 |
||
25069
c937c5e883c5
8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
24462
diff
changeset
|
240 |
static address get_resolve_opt_virtual_call_stub() { |
1 | 241 |
assert(_resolve_opt_virtual_call_blob != NULL, "oops"); |
6418 | 242 |
return _resolve_opt_virtual_call_blob->entry_point(); |
1 | 243 |
} |
244 |
static address get_resolve_virtual_call_stub() { |
|
245 |
assert(_resolve_virtual_call_blob != NULL, "oops"); |
|
6418 | 246 |
return _resolve_virtual_call_blob->entry_point(); |
1 | 247 |
} |
248 |
static address get_resolve_static_call_stub() { |
|
249 |
assert(_resolve_static_call_blob != NULL, "oops"); |
|
6418 | 250 |
return _resolve_static_call_blob->entry_point(); |
1 | 251 |
} |
252 |
||
253 |
static SafepointBlob* polling_page_return_handler_blob() { return _polling_page_return_handler_blob; } |
|
254 |
static SafepointBlob* polling_page_safepoint_handler_blob() { return _polling_page_safepoint_handler_blob; } |
|
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13881
diff
changeset
|
255 |
static SafepointBlob* polling_page_vectors_safepoint_handler_blob() { return _polling_page_vectors_safepoint_handler_blob; } |
1 | 256 |
|
257 |
// Counters |
|
258 |
#ifndef PRODUCT |
|
259 |
static address nof_megamorphic_calls_addr() { return (address)&_nof_megamorphic_calls; } |
|
260 |
#endif // PRODUCT |
|
261 |
||
262 |
// Helper routine for full-speed JVMTI exception throwing support |
|
263 |
static void throw_and_post_jvmti_exception(JavaThread *thread, Handle h_exception); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
264 |
static void throw_and_post_jvmti_exception(JavaThread *thread, Symbol* name, const char *message = NULL); |
1 | 265 |
|
2136
c55428da3cec
6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents:
1388
diff
changeset
|
266 |
// RedefineClasses() tracing support for obsolete method entry |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13396
diff
changeset
|
267 |
static int rc_trace_method_entry(JavaThread* thread, Method* m); |
2136
c55428da3cec
6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents:
1388
diff
changeset
|
268 |
|
1 | 269 |
// To be used as the entry point for unresolved native methods. |
270 |
static address native_method_throw_unsatisfied_link_error_entry(); |
|
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
13391
diff
changeset
|
271 |
static address native_method_throw_unsupported_operation_exception_entry(); |
1 | 272 |
|
25069
c937c5e883c5
8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
24462
diff
changeset
|
273 |
static oop retrieve_receiver(Symbol* sig, frame caller); |
1 | 274 |
|
275 |
static void register_finalizer(JavaThread* thread, oopDesc* obj); |
|
276 |
||
277 |
// dtrace notifications |
|
23995
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
23865
diff
changeset
|
278 |
static int dtrace_object_alloc(oopDesc* o, int size); |
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
23865
diff
changeset
|
279 |
static int dtrace_object_alloc_base(Thread* thread, oopDesc* o, int size); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13396
diff
changeset
|
280 |
static int dtrace_method_entry(JavaThread* thread, Method* m); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13396
diff
changeset
|
281 |
static int dtrace_method_exit(JavaThread* thread, Method* m); |
1 | 282 |
|
283 |
// Utility method for retrieving the Java thread id, returns 0 if the |
|
284 |
// thread is not a well formed Java thread. |
|
285 |
static jlong get_java_tid(Thread* thread); |
|
286 |
||
287 |
||
288 |
// used by native wrappers to reenable yellow if overflow happened in native code |
|
289 |
static void reguard_yellow_pages(); |
|
290 |
||
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
291 |
// Fill in the "X cannot be cast to a Y" message for ClassCastException |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
292 |
// |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
293 |
// @param thr the current thread |
36508 | 294 |
// @param caster_klass the class of the object we are casting |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
295 |
// @return the dynamically allocated exception message (must be freed |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
296 |
// by the caller using a resource mark) |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
297 |
// |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
298 |
// BCP must refer to the current 'checkcast' opcode for the frame |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
299 |
// on top of the stack. |
36508 | 300 |
// The caller (or one of its callers) must use a ResourceMark |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
301 |
// in order to correctly free the result. |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
302 |
// |
36508 | 303 |
static char* generate_class_cast_message(JavaThread* thr, Klass* caster_klass); |
1 | 304 |
|
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
305 |
// Fill in the "X cannot be cast to a Y" message for ClassCastException |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
306 |
// |
36508 | 307 |
// @param caster_klass the class of the object we are casting |
308 |
// @param target_klass the target klass attempt |
|
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
309 |
// @return the dynamically allocated exception message (must be freed |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
310 |
// by the caller using a resource mark) |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
311 |
// |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
312 |
// This version does not require access the frame, so it can be called |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
313 |
// from interpreted code |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
314 |
// The caller (or one of it's callers) must use a ResourceMark |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
315 |
// in order to correctly free the result. |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
316 |
// |
36508 | 317 |
static char* generate_class_cast_message(Klass* caster_klass, Klass* target_klass); |
1 | 318 |
|
319 |
// Resolves a call site- may patch in the destination of the call into the |
|
320 |
// compiled code. |
|
321 |
static methodHandle resolve_helper(JavaThread *thread, |
|
322 |
bool is_virtual, |
|
323 |
bool is_optimized, TRAPS); |
|
324 |
||
26683
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25472
diff
changeset
|
325 |
private: |
1 | 326 |
// deopt blob |
327 |
static void generate_deopt_blob(void); |
|
328 |
||
26683
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25472
diff
changeset
|
329 |
public: |
1 | 330 |
static DeoptimizationBlob* deopt_blob(void) { return _deopt_blob; } |
331 |
||
332 |
// Resets a call-site in compiled code so it will get resolved again. |
|
333 |
static methodHandle reresolve_call_site(JavaThread *thread, TRAPS); |
|
334 |
||
335 |
// In the code prolog, if the klass comparison fails, the inline cache |
|
336 |
// misses and the call site is patched to megamorphic |
|
337 |
static methodHandle handle_ic_miss_helper(JavaThread* thread, TRAPS); |
|
338 |
||
339 |
// Find the method that called us. |
|
340 |
static methodHandle find_callee_method(JavaThread* thread, TRAPS); |
|
341 |
||
342 |
||
343 |
private: |
|
344 |
static Handle find_callee_info(JavaThread* thread, |
|
345 |
Bytecodes::Code& bc, |
|
346 |
CallInfo& callinfo, TRAPS); |
|
347 |
static Handle find_callee_info_helper(JavaThread* thread, |
|
348 |
vframeStream& vfst, |
|
349 |
Bytecodes::Code& bc, |
|
350 |
CallInfo& callinfo, TRAPS); |
|
351 |
||
35086
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
34220
diff
changeset
|
352 |
static methodHandle extract_attached_method(vframeStream& vfst); |
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
34220
diff
changeset
|
353 |
|
1 | 354 |
static address clean_virtual_call_entry(); |
355 |
static address clean_opt_virtual_call_entry(); |
|
356 |
static address clean_static_call_entry(); |
|
357 |
||
36079
692adc3fa1b5
6378256: Performance problem with System.identityHashCode in client compiler
thartmann
parents:
35135
diff
changeset
|
358 |
#if defined(X86) && defined(COMPILER1) |
692adc3fa1b5
6378256: Performance problem with System.identityHashCode in client compiler
thartmann
parents:
35135
diff
changeset
|
359 |
// For Object.hashCode, System.identityHashCode try to pull hashCode from object header if available. |
46727
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
42650
diff
changeset
|
360 |
static void inline_check_hashcode_from_object_header(MacroAssembler* masm, const methodHandle& method, Register obj_reg, Register result); |
36079
692adc3fa1b5
6378256: Performance problem with System.identityHashCode in client compiler
thartmann
parents:
35135
diff
changeset
|
361 |
#endif // X86 && COMPILER1 |
692adc3fa1b5
6378256: Performance problem with System.identityHashCode in client compiler
thartmann
parents:
35135
diff
changeset
|
362 |
|
1 | 363 |
public: |
364 |
||
365 |
// Read the array of BasicTypes from a Java signature, and compute where |
|
366 |
// compiled Java code would like to put the results. Values in reg_lo and |
|
367 |
// reg_hi refer to 4-byte quantities. Values less than SharedInfo::stack0 are |
|
368 |
// registers, those above refer to 4-byte stack slots. All stack slots are |
|
369 |
// based off of the window top. SharedInfo::stack0 refers to the first usable |
|
370 |
// slot in the bottom of the frame. SharedInfo::stack0+1 refers to the memory word |
|
371 |
// 4-bytes higher. So for sparc because the register window save area is at |
|
372 |
// the bottom of the frame the first 16 words will be skipped and SharedInfo::stack0 |
|
373 |
// will be just above it. ( |
|
374 |
// return value is the maximum number of VMReg stack slots the convention will use. |
|
13881
a326d528f3e1
7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents:
13728
diff
changeset
|
375 |
static int java_calling_convention(const BasicType* sig_bt, VMRegPair* regs, int total_args_passed, int is_outgoing); |
a326d528f3e1
7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents:
13728
diff
changeset
|
376 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
377 |
static void check_member_name_argument_is_last_argument(const methodHandle& method, |
13881
a326d528f3e1
7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents:
13728
diff
changeset
|
378 |
const BasicType* sig_bt, |
a326d528f3e1
7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents:
13728
diff
changeset
|
379 |
const VMRegPair* regs) NOT_DEBUG_RETURN; |
1 | 380 |
|
381 |
// Ditto except for calling C |
|
22832
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
22808
diff
changeset
|
382 |
// |
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
22808
diff
changeset
|
383 |
// C argument in register AND stack slot. |
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
22808
diff
changeset
|
384 |
// Some architectures require that an argument must be passed in a register |
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
22808
diff
changeset
|
385 |
// AND in a stack slot. These architectures provide a second VMRegPair array |
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
22808
diff
changeset
|
386 |
// to be filled by the c_calling_convention method. On other architectures, |
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
22808
diff
changeset
|
387 |
// NULL is being passed as the second VMRegPair array, so arguments are either |
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
22808
diff
changeset
|
388 |
// passed in a register OR in a stack slot. |
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
22808
diff
changeset
|
389 |
static int c_calling_convention(const BasicType *sig_bt, VMRegPair *regs, VMRegPair *regs2, |
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
22808
diff
changeset
|
390 |
int total_args_passed); |
1 | 391 |
|
37439
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
392 |
static size_t trampoline_size(); |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
393 |
|
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
394 |
static void generate_trampoline(MacroAssembler *masm, address destination); |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
395 |
|
1 | 396 |
// Generate I2C and C2I adapters. These adapters are simple argument marshalling |
397 |
// blobs. Unlike adapters in the tiger and earlier releases the code in these |
|
398 |
// blobs does not create a new frame and are therefore virtually invisible |
|
399 |
// to the stack walking code. In general these blobs extend the callers stack |
|
400 |
// as needed for the conversion of argument locations. |
|
401 |
||
402 |
// When calling a c2i blob the code will always call the interpreter even if |
|
403 |
// by the time we reach the blob there is compiled code available. This allows |
|
404 |
// the blob to pass the incoming stack pointer (the sender sp) in a known |
|
405 |
// location for the interpreter to record. This is used by the frame code |
|
406 |
// to correct the sender code to match up with the stack pointer when the |
|
407 |
// thread left the compiled code. In addition it allows the interpreter |
|
22834
3e2df6a4a28c
8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents:
22832
diff
changeset
|
408 |
// to remove the space the c2i adapter allocated to do its argument conversion. |
1 | 409 |
|
410 |
// Although a c2i blob will always run interpreted even if compiled code is |
|
411 |
// present if we see that compiled code is present the compiled call site |
|
412 |
// will be patched/re-resolved so that later calls will run compiled. |
|
413 |
||
22551 | 414 |
// Additionally a c2i blob need to have a unverified entry because it can be reached |
1 | 415 |
// in situations where the call site is an inlined cache site and may go megamorphic. |
416 |
||
417 |
// A i2c adapter is simpler than the c2i adapter. This is because it is assumed |
|
418 |
// that the interpreter before it does any call dispatch will record the current |
|
419 |
// stack pointer in the interpreter frame. On return it will restore the stack |
|
420 |
// pointer as needed. This means the i2c adapter code doesn't need any special |
|
421 |
// handshaking path with compiled code to keep the stack walking correct. |
|
422 |
||
423 |
static AdapterHandlerEntry* generate_i2c2i_adapters(MacroAssembler *_masm, |
|
424 |
int total_args_passed, |
|
425 |
int max_arg, |
|
426 |
const BasicType *sig_bt, |
|
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
427 |
const VMRegPair *regs, |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
428 |
AdapterFingerPrint* fingerprint); |
1 | 429 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
430 |
static void gen_i2c_adapter(MacroAssembler *_masm, |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
431 |
int total_args_passed, |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
432 |
int comp_args_on_stack, |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
433 |
const BasicType *sig_bt, |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
434 |
const VMRegPair *regs); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
435 |
|
1 | 436 |
// OSR support |
437 |
||
438 |
// OSR_migration_begin will extract the jvm state from an interpreter |
|
439 |
// frame (locals, monitors) and store the data in a piece of C heap |
|
440 |
// storage. This then allows the interpreter frame to be removed from the |
|
441 |
// stack and the OSR nmethod to be called. That method is called with a |
|
442 |
// pointer to the C heap storage. This pointer is the return value from |
|
443 |
// OSR_migration_begin. |
|
444 |
||
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
445 |
static intptr_t* OSR_migration_begin(JavaThread *thread); |
1 | 446 |
|
447 |
// OSR_migration_end is a trivial routine. It is called after the compiled |
|
448 |
// method has extracted the jvm state from the C heap that OSR_migration_begin |
|
449 |
// created. It's entire job is to simply free this storage. |
|
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
450 |
static void OSR_migration_end(intptr_t* buf); |
1 | 451 |
|
452 |
// Convert a sig into a calling convention register layout |
|
453 |
// and find interesting things about it. |
|
17872 | 454 |
static VMRegPair* find_callee_arguments(Symbol* sig, bool has_receiver, bool has_appendix, int *arg_size); |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
455 |
static VMReg name_for_receiver(); |
1 | 456 |
|
457 |
// "Top of Stack" slots that may be unused by the calling convention but must |
|
458 |
// otherwise be preserved. |
|
459 |
// On Intel these are not necessary and the value can be zero. |
|
460 |
// On Sparc this describes the words reserved for storing a register window |
|
461 |
// when an interrupt occurs. |
|
462 |
static uint out_preserve_stack_slots(); |
|
463 |
||
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13881
diff
changeset
|
464 |
// Is vector's size (in bytes) bigger than a size saved by default? |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13881
diff
changeset
|
465 |
// For example, on x86 16 bytes XMM registers are saved by default. |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13881
diff
changeset
|
466 |
static bool is_wide_vector(int size); |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13881
diff
changeset
|
467 |
|
1 | 468 |
// Save and restore a native result |
25069
c937c5e883c5
8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
24462
diff
changeset
|
469 |
static void save_native_result(MacroAssembler *_masm, BasicType ret_type, int frame_slots); |
c937c5e883c5
8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
24462
diff
changeset
|
470 |
static void restore_native_result(MacroAssembler *_masm, BasicType ret_type, int frame_slots); |
1 | 471 |
|
472 |
// Generate a native wrapper for a given method. The method takes arguments |
|
473 |
// in the Java compiled code convention, marshals them to the native |
|
474 |
// convention (handlizes oops, etc), transitions to native, makes the call, |
|
475 |
// returns to java state (possibly blocking), unhandlizes any result and |
|
476 |
// returns. |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
477 |
// |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
478 |
// The wrapper may contain special-case code if the given method |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
479 |
// is a JNI critical method, or a compiled method handle adapter, |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
480 |
// such as _invokeBasic, _linkToVirtual, etc. |
13881
a326d528f3e1
7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents:
13728
diff
changeset
|
481 |
static nmethod* generate_native_wrapper(MacroAssembler* masm, |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
482 |
const methodHandle& method, |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8076
diff
changeset
|
483 |
int compile_id, |
13881
a326d528f3e1
7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents:
13728
diff
changeset
|
484 |
BasicType* sig_bt, |
a326d528f3e1
7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents:
13728
diff
changeset
|
485 |
VMRegPair* regs, |
25069
c937c5e883c5
8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
24462
diff
changeset
|
486 |
BasicType ret_type); |
1 | 487 |
|
11637
030466036615
7013347: allow crypto functions to be called inline to enhance performance
never
parents:
10517
diff
changeset
|
488 |
// Block before entering a JNI critical method |
030466036615
7013347: allow crypto functions to be called inline to enhance performance
never
parents:
10517
diff
changeset
|
489 |
static void block_for_jni_critical(JavaThread* thread); |
030466036615
7013347: allow crypto functions to be called inline to enhance performance
never
parents:
10517
diff
changeset
|
490 |
|
1 | 491 |
// A compiled caller has just called the interpreter, but compiled code |
492 |
// exists. Patch the caller so he no longer calls into the interpreter. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13396
diff
changeset
|
493 |
static void fixup_callers_callsite(Method* moop, address ret_pc); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
494 |
static bool should_fixup_call_destination(address destination, address entry_point, address caller_pc, Method* moop, CodeBlob* cb); |
1 | 495 |
|
496 |
// Slow-path Locking and Unlocking |
|
497 |
static void complete_monitor_locking_C(oopDesc* obj, BasicLock* lock, JavaThread* thread); |
|
30244 | 498 |
static void complete_monitor_unlocking_C(oopDesc* obj, BasicLock* lock, JavaThread* thread); |
1 | 499 |
|
500 |
// Resolving of calls |
|
501 |
static address resolve_static_call_C (JavaThread *thread); |
|
502 |
static address resolve_virtual_call_C (JavaThread *thread); |
|
503 |
static address resolve_opt_virtual_call_C(JavaThread *thread); |
|
504 |
||
505 |
// arraycopy, the non-leaf version. (See StubRoutines for all the leaf calls.) |
|
506 |
static void slow_arraycopy_C(oopDesc* src, jint src_pos, |
|
507 |
oopDesc* dest, jint dest_pos, |
|
508 |
jint length, JavaThread* thread); |
|
509 |
||
510 |
// handle ic miss with caller being compiled code |
|
511 |
// wrong method handling (inline cache misses, zombie methods) |
|
512 |
static address handle_wrong_method(JavaThread* thread); |
|
21726
3533814ab107
8028319: ConflictingDefaultsTest.testReabstract spins when running with -mode invoke and -Xcomp
morris
parents:
17872
diff
changeset
|
513 |
static address handle_wrong_method_abstract(JavaThread* thread); |
1 | 514 |
static address handle_wrong_method_ic_miss(JavaThread* thread); |
515 |
||
38209
b2a58604e046
8156088: Reintegrate 8153892: Handle unsafe access error directly in signal handler instead of going through a stub
mikael
parents:
38190
diff
changeset
|
516 |
static address handle_unsafe_access(JavaThread* thread, address next_pc); |
b2a58604e046
8156088: Reintegrate 8153892: Handle unsafe access error directly in signal handler instead of going through a stub
mikael
parents:
38190
diff
changeset
|
517 |
|
1 | 518 |
#ifndef PRODUCT |
519 |
||
520 |
// Collect and print inline cache miss statistics |
|
521 |
private: |
|
522 |
enum { maxICmiss_count = 100 }; |
|
523 |
static int _ICmiss_index; // length of IC miss histogram |
|
524 |
static int _ICmiss_count[maxICmiss_count]; // miss counts |
|
525 |
static address _ICmiss_at[maxICmiss_count]; // miss addresses |
|
526 |
static void trace_ic_miss(address at); |
|
527 |
||
528 |
public: |
|
529 |
static int _throw_null_ctr; // throwing a null-pointer exception |
|
530 |
static int _ic_miss_ctr; // total # of IC misses |
|
531 |
static int _wrong_method_ctr; |
|
532 |
static int _resolve_static_ctr; |
|
533 |
static int _resolve_virtual_ctr; |
|
534 |
static int _resolve_opt_virtual_ctr; |
|
535 |
static int _implicit_null_throws; |
|
536 |
static int _implicit_div0_throws; |
|
537 |
||
538 |
static int _jbyte_array_copy_ctr; // Slow-path byte array copy |
|
539 |
static int _jshort_array_copy_ctr; // Slow-path short array copy |
|
540 |
static int _jint_array_copy_ctr; // Slow-path int array copy |
|
541 |
static int _jlong_array_copy_ctr; // Slow-path long array copy |
|
542 |
static int _oop_array_copy_ctr; // Slow-path oop array copy |
|
543 |
static int _checkcast_array_copy_ctr; // Slow-path oop array copy, with cast |
|
544 |
static int _unsafe_array_copy_ctr; // Slow-path includes alignment checks |
|
545 |
static int _generic_array_copy_ctr; // Slow-path includes type decoding |
|
546 |
static int _slow_array_copy_ctr; // Slow-path failed out to a method call |
|
547 |
||
548 |
static int _new_instance_ctr; // 'new' object requires GC |
|
549 |
static int _new_array_ctr; // 'new' array requires GC |
|
550 |
static int _multi1_ctr, _multi2_ctr, _multi3_ctr, _multi4_ctr, _multi5_ctr; |
|
551 |
static int _find_handler_ctr; // find exception handler |
|
552 |
static int _rethrow_ctr; // rethrow exception |
|
553 |
static int _mon_enter_stub_ctr; // monitor enter stub |
|
554 |
static int _mon_exit_stub_ctr; // monitor exit stub |
|
555 |
static int _mon_enter_ctr; // monitor enter slow |
|
556 |
static int _mon_exit_ctr; // monitor exit slow |
|
557 |
static int _partial_subtype_ctr; // SubRoutines::partial_subtype_check |
|
558 |
||
559 |
// Statistics code |
|
560 |
// stats for "normal" compiled calls (non-interface) |
|
561 |
static int _nof_normal_calls; // total # of calls |
|
562 |
static int _nof_optimized_calls; // total # of statically-bound calls |
|
563 |
static int _nof_inlined_calls; // total # of inlined normal calls |
|
564 |
static int _nof_static_calls; // total # of calls to static methods or super methods (invokespecial) |
|
565 |
static int _nof_inlined_static_calls; // total # of inlined static calls |
|
566 |
// stats for compiled interface calls |
|
567 |
static int _nof_interface_calls; // total # of compiled calls |
|
568 |
static int _nof_optimized_interface_calls; // total # of statically-bound interface calls |
|
569 |
static int _nof_inlined_interface_calls; // total # of inlined interface calls |
|
570 |
static int _nof_megamorphic_interface_calls;// total # of megamorphic interface calls |
|
571 |
// stats for runtime exceptions |
|
572 |
static int _nof_removable_exceptions; // total # of exceptions that could be replaced by branches due to inlining |
|
573 |
||
574 |
public: // for compiler |
|
575 |
static address nof_normal_calls_addr() { return (address)&_nof_normal_calls; } |
|
576 |
static address nof_optimized_calls_addr() { return (address)&_nof_optimized_calls; } |
|
577 |
static address nof_inlined_calls_addr() { return (address)&_nof_inlined_calls; } |
|
578 |
static address nof_static_calls_addr() { return (address)&_nof_static_calls; } |
|
579 |
static address nof_inlined_static_calls_addr() { return (address)&_nof_inlined_static_calls; } |
|
580 |
static address nof_interface_calls_addr() { return (address)&_nof_interface_calls; } |
|
581 |
static address nof_optimized_interface_calls_addr() { return (address)&_nof_optimized_interface_calls; } |
|
582 |
static address nof_inlined_interface_calls_addr() { return (address)&_nof_inlined_interface_calls; } |
|
583 |
static address nof_megamorphic_interface_calls_addr() { return (address)&_nof_megamorphic_interface_calls; } |
|
584 |
static void print_call_statistics(int comp_total); |
|
585 |
static void print_statistics(); |
|
586 |
static void print_ic_miss_histogram(); |
|
587 |
||
588 |
#endif // PRODUCT |
|
589 |
}; |
|
590 |
||
591 |
||
592 |
// --------------------------------------------------------------------------- |
|
593 |
// Implementation of AdapterHandlerLibrary |
|
594 |
// |
|
595 |
// This library manages argument marshaling adapters and native wrappers. |
|
596 |
// There are 2 flavors of adapters: I2C and C2I. |
|
597 |
// |
|
6418 | 598 |
// The I2C flavor takes a stock interpreted call setup, marshals the |
599 |
// arguments for a Java-compiled call, and jumps to Rmethod-> code()-> |
|
600 |
// code_begin(). It is broken to call it without an nmethod assigned. |
|
601 |
// The usual behavior is to lift any register arguments up out of the |
|
22551 | 602 |
// stack and possibly re-pack the extra arguments to be contiguous. |
6418 | 603 |
// I2C adapters will save what the interpreter's stack pointer will be |
604 |
// after arguments are popped, then adjust the interpreter's frame |
|
605 |
// size to force alignment and possibly to repack the arguments. |
|
606 |
// After re-packing, it jumps to the compiled code start. There are |
|
607 |
// no safepoints in this adapter code and a GC cannot happen while |
|
608 |
// marshaling is in progress. |
|
1 | 609 |
// |
610 |
// The C2I flavor takes a stock compiled call setup plus the target method in |
|
611 |
// Rmethod, marshals the arguments for an interpreted call and jumps to |
|
612 |
// Rmethod->_i2i_entry. On entry, the interpreted frame has not yet been |
|
613 |
// setup. Compiled frames are fixed-size and the args are likely not in the |
|
614 |
// right place. Hence all the args will likely be copied into the |
|
615 |
// interpreter's frame, forcing that frame to grow. The compiled frame's |
|
616 |
// outgoing stack args will be dead after the copy. |
|
617 |
// |
|
618 |
// Native wrappers, like adapters, marshal arguments. Unlike adapters they |
|
22551 | 619 |
// also perform an official frame push & pop. They have a call to the native |
1 | 620 |
// routine in their middles and end in a return (instead of ending in a jump). |
621 |
// The native wrappers are stored in real nmethods instead of the BufferBlobs |
|
622 |
// used by the adapters. The code generation happens here because it's very |
|
623 |
// similar to what the adapters have to do. |
|
624 |
||
13195 | 625 |
class AdapterHandlerEntry : public BasicHashtableEntry<mtCode> { |
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
626 |
friend class AdapterHandlerTable; |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
627 |
|
1 | 628 |
private: |
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
629 |
AdapterFingerPrint* _fingerprint; |
1 | 630 |
address _i2c_entry; |
631 |
address _c2i_entry; |
|
632 |
address _c2i_unverified_entry; |
|
633 |
||
4755
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
634 |
#ifdef ASSERT |
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
635 |
// Captures code and signature used to generate this adapter when |
22551 | 636 |
// verifying adapter equivalence. |
4755
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
637 |
unsigned char* _saved_code; |
22209 | 638 |
int _saved_code_length; |
4755
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
639 |
#endif |
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
640 |
|
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
641 |
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
|
642 |
_fingerprint = fingerprint; |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
643 |
_i2c_entry = i2c_entry; |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
644 |
_c2i_entry = c2i_entry; |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
645 |
_c2i_unverified_entry = c2i_unverified_entry; |
4755
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
646 |
#ifdef ASSERT |
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
647 |
_saved_code = NULL; |
22209 | 648 |
_saved_code_length = 0; |
4755
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
649 |
#endif |
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
650 |
} |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
651 |
|
4755
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
652 |
void deallocate(); |
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
653 |
|
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
654 |
// should never be used |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
655 |
AdapterHandlerEntry(); |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
656 |
|
1 | 657 |
public: |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
658 |
address get_i2c_entry() const { return _i2c_entry; } |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
659 |
address get_c2i_entry() const { return _c2i_entry; } |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
660 |
address get_c2i_unverified_entry() const { return _c2i_unverified_entry; } |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
661 |
address base_address(); |
1 | 662 |
void relocate(address new_base); |
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
663 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
664 |
AdapterFingerPrint* fingerprint() const { return _fingerprint; } |
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
665 |
|
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
666 |
AdapterHandlerEntry* next() { |
13195 | 667 |
return (AdapterHandlerEntry*)BasicHashtableEntry<mtCode>::next(); |
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
668 |
} |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
669 |
|
4755
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
670 |
#ifdef ASSERT |
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
671 |
// Used to verify that code generated for shared adapters is equivalent |
22209 | 672 |
void save_code (unsigned char* code, int length); |
673 |
bool compare_code(unsigned char* code, int length); |
|
4755
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
674 |
#endif |
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4735
diff
changeset
|
675 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
676 |
//virtual void print_on(outputStream* st) const; DO NOT USE |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
677 |
void print_adapter_on(outputStream* st) const; |
1 | 678 |
}; |
679 |
||
42608
14af45789042
8169867: Method::restore_unshareable_info does not invoke Method::link_method
iklam
parents:
41057
diff
changeset
|
680 |
// This class is used only with DumpSharedSpaces==true. It holds extra information |
14af45789042
8169867: Method::restore_unshareable_info does not invoke Method::link_method
iklam
parents:
41057
diff
changeset
|
681 |
// that's used only during CDS dump time. |
14af45789042
8169867: Method::restore_unshareable_info does not invoke Method::link_method
iklam
parents:
41057
diff
changeset
|
682 |
// For details, see comments around Method::link_method() |
37439
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
683 |
class CDSAdapterHandlerEntry: public AdapterHandlerEntry { |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
684 |
address _c2i_entry_trampoline; // allocated from shared spaces "MC" region |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
685 |
AdapterHandlerEntry** _adapter_trampoline; // allocated from shared spaces "MD" region |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
686 |
|
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
687 |
public: |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
688 |
address get_c2i_entry_trampoline() const { return _c2i_entry_trampoline; } |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
689 |
AdapterHandlerEntry** get_adapter_trampoline() const { return _adapter_trampoline; } |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
690 |
void init() NOT_CDS_RETURN; |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
691 |
}; |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
692 |
|
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
693 |
|
1 | 694 |
class AdapterHandlerLibrary: public AllStatic { |
695 |
private: |
|
2732
3ab85419f523
6834177: Running jsynprog on Solaris Nevada can cause JVM crash
kvn
parents:
2534
diff
changeset
|
696 |
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
|
697 |
static AdapterHandlerTable* _adapters; |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
698 |
static AdapterHandlerEntry* _abstract_method_handler; |
2732
3ab85419f523
6834177: Running jsynprog on Solaris Nevada can cause JVM crash
kvn
parents:
2534
diff
changeset
|
699 |
static BufferBlob* buffer_blob(); |
1 | 700 |
static void initialize(); |
37439
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
701 |
static AdapterHandlerEntry* get_adapter0(const methodHandle& method); |
1 | 702 |
|
703 |
public: |
|
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
704 |
|
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
705 |
static AdapterHandlerEntry* new_entry(AdapterFingerPrint* fingerprint, |
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
706 |
address i2c_entry, address c2i_entry, address c2i_unverified_entry); |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
707 |
static void create_native_wrapper(const methodHandle& method); |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
708 |
static AdapterHandlerEntry* get_adapter(const methodHandle& method); |
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
709 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
710 |
static void print_handler(const CodeBlob* b) { print_handler_on(tty, b); } |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
711 |
static void print_handler_on(outputStream* st, const CodeBlob* b); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31583
diff
changeset
|
712 |
static bool contains(const CodeBlob* b); |
1 | 713 |
#ifndef PRODUCT |
4735
3d4e4ec0df67
6911204: generated adapters with large signatures can fill up the code cache
never
parents:
4567
diff
changeset
|
714 |
static void print_statistics(); |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
715 |
#endif // PRODUCT |
1 | 716 |
|
717 |
}; |
|
7397 | 718 |
|
719 |
#endif // SHARE_VM_RUNTIME_SHAREDRUNTIME_HPP |