author | twisti |
Mon, 11 Jan 2016 17:11:57 -0800 | |
changeset 35546 | b75e269c0922 |
parent 35543 | 0961315f4016 |
parent 35232 | 76aed99c0ddd |
child 35569 | a2cdb4062a5d |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29474
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
2 |
* Copyright (c) 1999, 2015, 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:
4888
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4888
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:
4888
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "asm/codeBuffer.hpp" |
|
27 |
#include "c1/c1_CodeStubs.hpp" |
|
28 |
#include "c1/c1_Defs.hpp" |
|
29 |
#include "c1/c1_FrameMap.hpp" |
|
30 |
#include "c1/c1_LIRAssembler.hpp" |
|
31 |
#include "c1/c1_MacroAssembler.hpp" |
|
32 |
#include "c1/c1_Runtime1.hpp" |
|
33 |
#include "classfile/systemDictionary.hpp" |
|
34 |
#include "classfile/vmSymbols.hpp" |
|
35 |
#include "code/codeBlob.hpp" |
|
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
36 |
#include "code/codeCacheExtensions.hpp" |
7397 | 37 |
#include "code/compiledIC.hpp" |
38 |
#include "code/pcDesc.hpp" |
|
39 |
#include "code/scopeDesc.hpp" |
|
40 |
#include "code/vtableStubs.hpp" |
|
41 |
#include "compiler/disassembler.hpp" |
|
30764 | 42 |
#include "gc/shared/barrierSet.hpp" |
43 |
#include "gc/shared/collectedHeap.hpp" |
|
7397 | 44 |
#include "interpreter/bytecode.hpp" |
45 |
#include "interpreter/interpreter.hpp" |
|
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
46 |
#include "logging/log.hpp" |
7397 | 47 |
#include "memory/allocation.inline.hpp" |
48 |
#include "memory/oopFactory.hpp" |
|
49 |
#include "memory/resourceArea.hpp" |
|
50 |
#include "oops/objArrayKlass.hpp" |
|
51 |
#include "oops/oop.inline.hpp" |
|
25351
7c198a690050
8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents:
24944
diff
changeset
|
52 |
#include "runtime/atomic.inline.hpp" |
7397 | 53 |
#include "runtime/biasedLocking.hpp" |
54 |
#include "runtime/compilationPolicy.hpp" |
|
55 |
#include "runtime/interfaceSupport.hpp" |
|
56 |
#include "runtime/javaCalls.hpp" |
|
57 |
#include "runtime/sharedRuntime.hpp" |
|
58 |
#include "runtime/threadCritical.hpp" |
|
59 |
#include "runtime/vframe.hpp" |
|
60 |
#include "runtime/vframeArray.hpp" |
|
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
25351
diff
changeset
|
61 |
#include "runtime/vm_version.hpp" |
7397 | 62 |
#include "utilities/copy.hpp" |
63 |
#include "utilities/events.hpp" |
|
1 | 64 |
|
65 |
||
66 |
// Implementation of StubAssembler |
|
67 |
||
68 |
StubAssembler::StubAssembler(CodeBuffer* code, const char * name, int stub_id) : C1_MacroAssembler(code) { |
|
69 |
_name = name; |
|
70 |
_must_gc_arguments = false; |
|
71 |
_frame_size = no_frame_size; |
|
72 |
_num_rt_args = 0; |
|
73 |
_stub_id = stub_id; |
|
74 |
} |
|
75 |
||
76 |
||
77 |
void StubAssembler::set_info(const char* name, bool must_gc_arguments) { |
|
78 |
_name = name; |
|
79 |
_must_gc_arguments = must_gc_arguments; |
|
80 |
} |
|
81 |
||
82 |
||
83 |
void StubAssembler::set_frame_size(int size) { |
|
84 |
if (_frame_size == no_frame_size) { |
|
85 |
_frame_size = size; |
|
86 |
} |
|
87 |
assert(_frame_size == size, "can't change the frame size"); |
|
88 |
} |
|
89 |
||
90 |
||
91 |
void StubAssembler::set_num_rt_args(int args) { |
|
92 |
if (_num_rt_args == 0) { |
|
93 |
_num_rt_args = args; |
|
94 |
} |
|
95 |
assert(_num_rt_args == args, "can't change the number of args"); |
|
96 |
} |
|
97 |
||
98 |
// Implementation of Runtime1 |
|
99 |
||
100 |
CodeBlob* Runtime1::_blobs[Runtime1::number_of_ids]; |
|
101 |
const char *Runtime1::_blob_names[] = { |
|
102 |
RUNTIME1_STUBS(STUB_NAME, LAST_STUB_NAME) |
|
103 |
}; |
|
104 |
||
105 |
#ifndef PRODUCT |
|
106 |
// statistics |
|
107 |
int Runtime1::_generic_arraycopy_cnt = 0; |
|
108 |
int Runtime1::_primitive_arraycopy_cnt = 0; |
|
109 |
int Runtime1::_oop_arraycopy_cnt = 0; |
|
9102 | 110 |
int Runtime1::_generic_arraycopystub_cnt = 0; |
1 | 111 |
int Runtime1::_arraycopy_slowcase_cnt = 0; |
9102 | 112 |
int Runtime1::_arraycopy_checkcast_cnt = 0; |
113 |
int Runtime1::_arraycopy_checkcast_attempt_cnt = 0; |
|
1 | 114 |
int Runtime1::_new_type_array_slowcase_cnt = 0; |
115 |
int Runtime1::_new_object_array_slowcase_cnt = 0; |
|
116 |
int Runtime1::_new_instance_slowcase_cnt = 0; |
|
117 |
int Runtime1::_new_multi_array_slowcase_cnt = 0; |
|
118 |
int Runtime1::_monitorenter_slowcase_cnt = 0; |
|
119 |
int Runtime1::_monitorexit_slowcase_cnt = 0; |
|
120 |
int Runtime1::_patch_code_slowcase_cnt = 0; |
|
121 |
int Runtime1::_throw_range_check_exception_count = 0; |
|
122 |
int Runtime1::_throw_index_exception_count = 0; |
|
123 |
int Runtime1::_throw_div0_exception_count = 0; |
|
124 |
int Runtime1::_throw_null_pointer_exception_count = 0; |
|
125 |
int Runtime1::_throw_class_cast_exception_count = 0; |
|
126 |
int Runtime1::_throw_incompatible_class_change_error_count = 0; |
|
127 |
int Runtime1::_throw_array_store_exception_count = 0; |
|
128 |
int Runtime1::_throw_count = 0; |
|
9102 | 129 |
|
24944
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
130 |
static int _byte_arraycopy_stub_cnt = 0; |
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
131 |
static int _short_arraycopy_stub_cnt = 0; |
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
132 |
static int _int_arraycopy_stub_cnt = 0; |
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
133 |
static int _long_arraycopy_stub_cnt = 0; |
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
134 |
static int _oop_arraycopy_stub_cnt = 0; |
9102 | 135 |
|
136 |
address Runtime1::arraycopy_count_address(BasicType type) { |
|
137 |
switch (type) { |
|
138 |
case T_BOOLEAN: |
|
24944
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
139 |
case T_BYTE: return (address)&_byte_arraycopy_stub_cnt; |
9102 | 140 |
case T_CHAR: |
24944
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
141 |
case T_SHORT: return (address)&_short_arraycopy_stub_cnt; |
9102 | 142 |
case T_FLOAT: |
24944
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
143 |
case T_INT: return (address)&_int_arraycopy_stub_cnt; |
9102 | 144 |
case T_DOUBLE: |
24944
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
145 |
case T_LONG: return (address)&_long_arraycopy_stub_cnt; |
9102 | 146 |
case T_ARRAY: |
24944
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
147 |
case T_OBJECT: return (address)&_oop_arraycopy_stub_cnt; |
9102 | 148 |
default: |
149 |
ShouldNotReachHere(); |
|
150 |
return NULL; |
|
151 |
} |
|
152 |
} |
|
153 |
||
154 |
||
1 | 155 |
#endif |
156 |
||
157 |
// Simple helper to see if the caller of a runtime stub which |
|
158 |
// entered the VM has been deoptimized |
|
159 |
||
160 |
static bool caller_is_deopted() { |
|
161 |
JavaThread* thread = JavaThread::current(); |
|
162 |
RegisterMap reg_map(thread, false); |
|
163 |
frame runtime_frame = thread->last_frame(); |
|
164 |
frame caller_frame = runtime_frame.sender(®_map); |
|
165 |
assert(caller_frame.is_compiled_frame(), "must be compiled"); |
|
166 |
return caller_frame.is_deoptimized_frame(); |
|
167 |
} |
|
168 |
||
169 |
// Stress deoptimization |
|
170 |
static void deopt_caller() { |
|
171 |
if ( !caller_is_deopted()) { |
|
172 |
JavaThread* thread = JavaThread::current(); |
|
173 |
RegisterMap reg_map(thread, false); |
|
174 |
frame runtime_frame = thread->last_frame(); |
|
175 |
frame caller_frame = runtime_frame.sender(®_map); |
|
4761
bdb7375a1fee
6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents:
4571
diff
changeset
|
176 |
Deoptimization::deoptimize_frame(thread, caller_frame.id()); |
1 | 177 |
assert(caller_is_deopted(), "Must be deoptimized"); |
178 |
} |
|
179 |
} |
|
180 |
||
181 |
||
5707 | 182 |
void Runtime1::generate_blob_for(BufferBlob* buffer_blob, StubID id) { |
1 | 183 |
assert(0 <= id && id < number_of_ids, "illegal stub id"); |
184 |
ResourceMark rm; |
|
185 |
// create code buffer for code storage |
|
6418 | 186 |
CodeBuffer code(buffer_blob); |
1 | 187 |
|
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
188 |
OopMapSet* oop_maps; |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
189 |
int frame_size; |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
190 |
bool must_gc_arguments; |
1 | 191 |
|
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
192 |
if (!CodeCacheExtensions::skip_compiler_support()) { |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
193 |
// bypass useless code generation |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
194 |
Compilation::setup_code_buffer(&code, 0); |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
195 |
|
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
196 |
// create assembler for code generation |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
197 |
StubAssembler* sasm = new StubAssembler(&code, name_for(id), id); |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
198 |
// generate code for runtime stub |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
199 |
oop_maps = generate_code_for(id, sasm); |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
200 |
assert(oop_maps == NULL || sasm->frame_size() != no_frame_size, |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
201 |
"if stub has an oop map it must have a valid frame size"); |
1 | 202 |
|
203 |
#ifdef ASSERT |
|
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
204 |
// Make sure that stubs that need oopmaps have them |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
205 |
switch (id) { |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
206 |
// These stubs don't need to have an oopmap |
1 | 207 |
case dtrace_object_alloc_id: |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
208 |
case g1_pre_barrier_slow_id: |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
209 |
case g1_post_barrier_slow_id: |
1 | 210 |
case slow_subtype_check_id: |
211 |
case fpu2long_stub_id: |
|
212 |
case unwind_exception_id: |
|
6453 | 213 |
case counter_overflow_id: |
34220 | 214 |
#if defined(SPARC) || defined(PPC32) |
1 | 215 |
case handle_exception_nofpu_id: // Unused on sparc |
216 |
#endif |
|
217 |
break; |
|
218 |
||
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
219 |
// All other stubs should have oopmaps |
1 | 220 |
default: |
221 |
assert(oop_maps != NULL, "must have an oopmap"); |
|
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
222 |
} |
1 | 223 |
#endif |
224 |
||
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
225 |
// align so printing shows nop's instead of random code at the end (SimpleStubs are aligned) |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
226 |
sasm->align(BytesPerWord); |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
227 |
// make sure all code is in code buffer |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
228 |
sasm->flush(); |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
229 |
|
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
230 |
frame_size = sasm->frame_size(); |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
231 |
must_gc_arguments = sasm->must_gc_arguments(); |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
232 |
} else { |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
233 |
/* ignored values */ |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
234 |
oop_maps = NULL; |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
235 |
frame_size = 0; |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
236 |
must_gc_arguments = false; |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
237 |
} |
1 | 238 |
// create blob - distinguish a few special cases |
239 |
CodeBlob* blob = RuntimeStub::new_runtime_stub(name_for(id), |
|
240 |
&code, |
|
241 |
CodeOffsets::frame_never_safe, |
|
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
242 |
frame_size, |
1 | 243 |
oop_maps, |
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
244 |
must_gc_arguments); |
1 | 245 |
// install blob |
246 |
assert(blob != NULL, "blob must exist"); |
|
247 |
_blobs[id] = blob; |
|
248 |
} |
|
249 |
||
250 |
||
5707 | 251 |
void Runtime1::initialize(BufferBlob* blob) { |
252 |
// platform-dependent initialization |
|
253 |
initialize_pd(); |
|
254 |
// generate stubs |
|
255 |
for (int id = 0; id < number_of_ids; id++) generate_blob_for(blob, (StubID)id); |
|
256 |
// printing |
|
1 | 257 |
#ifndef PRODUCT |
5707 | 258 |
if (PrintSimpleStubs) { |
259 |
ResourceMark rm; |
|
260 |
for (int id = 0; id < number_of_ids; id++) { |
|
261 |
_blobs[id]->print(); |
|
262 |
if (_blobs[id]->oop_maps() != NULL) { |
|
263 |
_blobs[id]->oop_maps()->print(); |
|
1 | 264 |
} |
265 |
} |
|
5707 | 266 |
} |
1 | 267 |
#endif |
268 |
} |
|
269 |
||
270 |
||
271 |
CodeBlob* Runtime1::blob_for(StubID id) { |
|
272 |
assert(0 <= id && id < number_of_ids, "illegal stub id"); |
|
273 |
return _blobs[id]; |
|
274 |
} |
|
275 |
||
276 |
||
277 |
const char* Runtime1::name_for(StubID id) { |
|
278 |
assert(0 <= id && id < number_of_ids, "illegal stub id"); |
|
279 |
return _blob_names[id]; |
|
280 |
} |
|
281 |
||
282 |
const char* Runtime1::name_for_address(address entry) { |
|
283 |
for (int id = 0; id < number_of_ids; id++) { |
|
284 |
if (entry == entry_for((StubID)id)) return name_for((StubID)id); |
|
285 |
} |
|
286 |
||
287 |
#define FUNCTION_CASE(a, f) \ |
|
288 |
if ((intptr_t)a == CAST_FROM_FN_PTR(intptr_t, f)) return #f |
|
289 |
||
290 |
FUNCTION_CASE(entry, os::javaTimeMillis); |
|
291 |
FUNCTION_CASE(entry, os::javaTimeNanos); |
|
292 |
FUNCTION_CASE(entry, SharedRuntime::OSR_migration_end); |
|
293 |
FUNCTION_CASE(entry, SharedRuntime::d2f); |
|
294 |
FUNCTION_CASE(entry, SharedRuntime::d2i); |
|
295 |
FUNCTION_CASE(entry, SharedRuntime::d2l); |
|
296 |
FUNCTION_CASE(entry, SharedRuntime::dcos); |
|
297 |
FUNCTION_CASE(entry, SharedRuntime::dexp); |
|
298 |
FUNCTION_CASE(entry, SharedRuntime::dlog); |
|
299 |
FUNCTION_CASE(entry, SharedRuntime::dlog10); |
|
300 |
FUNCTION_CASE(entry, SharedRuntime::dpow); |
|
301 |
FUNCTION_CASE(entry, SharedRuntime::drem); |
|
302 |
FUNCTION_CASE(entry, SharedRuntime::dsin); |
|
303 |
FUNCTION_CASE(entry, SharedRuntime::dtan); |
|
304 |
FUNCTION_CASE(entry, SharedRuntime::f2i); |
|
305 |
FUNCTION_CASE(entry, SharedRuntime::f2l); |
|
306 |
FUNCTION_CASE(entry, SharedRuntime::frem); |
|
307 |
FUNCTION_CASE(entry, SharedRuntime::l2d); |
|
308 |
FUNCTION_CASE(entry, SharedRuntime::l2f); |
|
309 |
FUNCTION_CASE(entry, SharedRuntime::ldiv); |
|
310 |
FUNCTION_CASE(entry, SharedRuntime::lmul); |
|
311 |
FUNCTION_CASE(entry, SharedRuntime::lrem); |
|
312 |
FUNCTION_CASE(entry, SharedRuntime::lrem); |
|
313 |
FUNCTION_CASE(entry, SharedRuntime::dtrace_method_entry); |
|
314 |
FUNCTION_CASE(entry, SharedRuntime::dtrace_method_exit); |
|
12949 | 315 |
FUNCTION_CASE(entry, is_instance_of); |
1 | 316 |
FUNCTION_CASE(entry, trace_block_entry); |
12377
ae6def2813e0
7160570: Intrinsification support for tracing framework
rbackman
parents:
11636
diff
changeset
|
317 |
#ifdef TRACE_HAVE_INTRINSICS |
ae6def2813e0
7160570: Intrinsification support for tracing framework
rbackman
parents:
11636
diff
changeset
|
318 |
FUNCTION_CASE(entry, TRACE_TIME_METHOD); |
ae6def2813e0
7160570: Intrinsification support for tracing framework
rbackman
parents:
11636
diff
changeset
|
319 |
#endif |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17370
diff
changeset
|
320 |
FUNCTION_CASE(entry, StubRoutines::updateBytesCRC32()); |
33089 | 321 |
FUNCTION_CASE(entry, StubRoutines::dexp()); |
33465 | 322 |
FUNCTION_CASE(entry, StubRoutines::dlog()); |
35146 | 323 |
FUNCTION_CASE(entry, StubRoutines::dpow()); |
35540
e001ad24dcdb
8143353: update for x86 sin and cos in the math lib
vdeshpande
parents:
35146
diff
changeset
|
324 |
FUNCTION_CASE(entry, StubRoutines::dsin()); |
e001ad24dcdb
8143353: update for x86 sin and cos in the math lib
vdeshpande
parents:
35146
diff
changeset
|
325 |
FUNCTION_CASE(entry, StubRoutines::dcos()); |
1 | 326 |
|
327 |
#undef FUNCTION_CASE |
|
328 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
329 |
// Soft float adds more runtime names. |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
330 |
return pd_name_for_address(entry); |
1 | 331 |
} |
332 |
||
333 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
334 |
JRT_ENTRY(void, Runtime1::new_instance(JavaThread* thread, Klass* klass)) |
1 | 335 |
NOT_PRODUCT(_new_instance_slowcase_cnt++;) |
336 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
337 |
assert(klass->is_klass(), "not a class"); |
1 | 338 |
instanceKlassHandle h(thread, klass); |
339 |
h->check_valid_for_instantiation(true, CHECK); |
|
340 |
// make sure klass is initialized |
|
341 |
h->initialize(CHECK); |
|
342 |
// allocate instance and return via TLS |
|
343 |
oop obj = h->allocate_instance(CHECK); |
|
344 |
thread->set_vm_result(obj); |
|
345 |
JRT_END |
|
346 |
||
347 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
348 |
JRT_ENTRY(void, Runtime1::new_type_array(JavaThread* thread, Klass* klass, jint length)) |
1 | 349 |
NOT_PRODUCT(_new_type_array_slowcase_cnt++;) |
350 |
// Note: no handle for klass needed since they are not used |
|
351 |
// anymore after new_typeArray() and no GC can happen before. |
|
352 |
// (This may have to change if this code changes!) |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
353 |
assert(klass->is_klass(), "not a class"); |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
354 |
BasicType elt_type = TypeArrayKlass::cast(klass)->element_type(); |
1 | 355 |
oop obj = oopFactory::new_typeArray(elt_type, length, CHECK); |
356 |
thread->set_vm_result(obj); |
|
357 |
// This is pretty rare but this runtime patch is stressful to deoptimization |
|
358 |
// if we deoptimize here so force a deopt to stress the path. |
|
359 |
if (DeoptimizeALot) { |
|
360 |
deopt_caller(); |
|
361 |
} |
|
362 |
||
363 |
JRT_END |
|
364 |
||
365 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
366 |
JRT_ENTRY(void, Runtime1::new_object_array(JavaThread* thread, Klass* array_klass, jint length)) |
1 | 367 |
NOT_PRODUCT(_new_object_array_slowcase_cnt++;) |
368 |
||
369 |
// Note: no handle for klass needed since they are not used |
|
370 |
// anymore after new_objArray() and no GC can happen before. |
|
371 |
// (This may have to change if this code changes!) |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
372 |
assert(array_klass->is_klass(), "not a class"); |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
373 |
Klass* elem_klass = ObjArrayKlass::cast(array_klass)->element_klass(); |
1 | 374 |
objArrayOop obj = oopFactory::new_objArray(elem_klass, length, CHECK); |
375 |
thread->set_vm_result(obj); |
|
376 |
// This is pretty rare but this runtime patch is stressful to deoptimization |
|
377 |
// if we deoptimize here so force a deopt to stress the path. |
|
378 |
if (DeoptimizeALot) { |
|
379 |
deopt_caller(); |
|
380 |
} |
|
381 |
JRT_END |
|
382 |
||
383 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
384 |
JRT_ENTRY(void, Runtime1::new_multi_array(JavaThread* thread, Klass* klass, int rank, jint* dims)) |
1 | 385 |
NOT_PRODUCT(_new_multi_array_slowcase_cnt++;) |
386 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
387 |
assert(klass->is_klass(), "not a class"); |
1 | 388 |
assert(rank >= 1, "rank must be nonzero"); |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
389 |
oop obj = ArrayKlass::cast(klass)->multi_allocate(rank, dims, CHECK); |
1 | 390 |
thread->set_vm_result(obj); |
391 |
JRT_END |
|
392 |
||
393 |
||
394 |
JRT_ENTRY(void, Runtime1::unimplemented_entry(JavaThread* thread, StubID id)) |
|
395 |
tty->print_cr("Runtime1::entry_for(%d) returned unimplemented entry point", id); |
|
396 |
JRT_END |
|
397 |
||
398 |
||
8067
f5f4eac4c48f
7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents:
7913
diff
changeset
|
399 |
JRT_ENTRY(void, Runtime1::throw_array_store_exception(JavaThread* thread, oopDesc* obj)) |
f5f4eac4c48f
7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents:
7913
diff
changeset
|
400 |
ResourceMark rm(thread); |
14488 | 401 |
const char* klass_name = obj->klass()->external_name(); |
8067
f5f4eac4c48f
7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents:
7913
diff
changeset
|
402 |
SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArrayStoreException(), klass_name); |
1 | 403 |
JRT_END |
404 |
||
405 |
||
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
9318
diff
changeset
|
406 |
// counter_overflow() is called from within C1-compiled methods. The enclosing method is the method |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
9318
diff
changeset
|
407 |
// associated with the top activation record. The inlinee (that is possibly included in the enclosing |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
9318
diff
changeset
|
408 |
// method) method oop is passed as an argument. In order to do that it is embedded in the code as |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
9318
diff
changeset
|
409 |
// a constant. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
410 |
static nmethod* counter_overflow_helper(JavaThread* THREAD, int branch_bci, Method* m) { |
6453 | 411 |
nmethod* osr_nm = NULL; |
412 |
methodHandle method(THREAD, m); |
|
413 |
||
414 |
RegisterMap map(THREAD, false); |
|
415 |
frame fr = THREAD->last_frame().sender(&map); |
|
1 | 416 |
nmethod* nm = (nmethod*) fr.cb(); |
6453 | 417 |
assert(nm!= NULL && nm->is_nmethod(), "Sanity check"); |
418 |
methodHandle enclosing_method(THREAD, nm->method()); |
|
419 |
||
420 |
CompLevel level = (CompLevel)nm->comp_level(); |
|
421 |
int bci = InvocationEntryBci; |
|
422 |
if (branch_bci != InvocationEntryBci) { |
|
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30764
diff
changeset
|
423 |
// Compute destination bci |
6453 | 424 |
address pc = method()->code_base() + branch_bci; |
7913 | 425 |
Bytecodes::Code branch = Bytecodes::code_at(method(), pc); |
6453 | 426 |
int offset = 0; |
427 |
switch (branch) { |
|
428 |
case Bytecodes::_if_icmplt: case Bytecodes::_iflt: |
|
429 |
case Bytecodes::_if_icmpgt: case Bytecodes::_ifgt: |
|
430 |
case Bytecodes::_if_icmple: case Bytecodes::_ifle: |
|
431 |
case Bytecodes::_if_icmpge: case Bytecodes::_ifge: |
|
432 |
case Bytecodes::_if_icmpeq: case Bytecodes::_if_acmpeq: case Bytecodes::_ifeq: |
|
433 |
case Bytecodes::_if_icmpne: case Bytecodes::_if_acmpne: case Bytecodes::_ifne: |
|
434 |
case Bytecodes::_ifnull: case Bytecodes::_ifnonnull: case Bytecodes::_goto: |
|
435 |
offset = (int16_t)Bytes::get_Java_u2(pc + 1); |
|
436 |
break; |
|
437 |
case Bytecodes::_goto_w: |
|
438 |
offset = Bytes::get_Java_u4(pc + 1); |
|
439 |
break; |
|
440 |
default: ; |
|
1 | 441 |
} |
6453 | 442 |
bci = branch_bci + offset; |
443 |
} |
|
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
10972
diff
changeset
|
444 |
assert(!HAS_PENDING_EXCEPTION, "Should not have any exceptions pending"); |
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
9318
diff
changeset
|
445 |
osr_nm = CompilationPolicy::policy()->event(enclosing_method, method, branch_bci, bci, level, nm, THREAD); |
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
10972
diff
changeset
|
446 |
assert(!HAS_PENDING_EXCEPTION, "Event handler should not throw any exceptions"); |
6453 | 447 |
return osr_nm; |
448 |
} |
|
449 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
450 |
JRT_BLOCK_ENTRY(address, Runtime1::counter_overflow(JavaThread* thread, int bci, Method* method)) |
6453 | 451 |
nmethod* osr_nm; |
452 |
JRT_BLOCK |
|
453 |
osr_nm = counter_overflow_helper(thread, bci, method); |
|
454 |
if (osr_nm != NULL) { |
|
455 |
RegisterMap map(thread, false); |
|
456 |
frame fr = thread->last_frame().sender(&map); |
|
7106
867c9d296c6b
6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents:
6453
diff
changeset
|
457 |
Deoptimization::deoptimize_frame(thread, fr.id()); |
1 | 458 |
} |
6453 | 459 |
JRT_BLOCK_END |
460 |
return NULL; |
|
1 | 461 |
JRT_END |
462 |
||
463 |
extern void vm_exit(int code); |
|
464 |
||
465 |
// Enter this method from compiled code handler below. This is where we transition |
|
466 |
// to VM mode. This is done as a helper routine so that the method called directly |
|
467 |
// from compiled code does not have to transition to VM. This allows the entry |
|
468 |
// method to see if the nmethod that we have just looked up a handler for has |
|
469 |
// been deoptimized while we were in the vm. This simplifies the assembly code |
|
470 |
// cpu directories. |
|
471 |
// |
|
472 |
// We are entering here from exception stub (via the entry method below) |
|
473 |
// If there is a compiled exception handler in this method, we will continue there; |
|
474 |
// otherwise we will unwind the stack and continue at the caller of top frame method |
|
475 |
// Note: we enter in Java using a special JRT wrapper. This wrapper allows us to |
|
476 |
// control the area where we can allow a safepoint. After we exit the safepoint area we can |
|
477 |
// check to see if the handler we are going to return is now in a nmethod that has |
|
478 |
// been deoptimized. If that is the case we return the deopt blob |
|
479 |
// unpack_with_exception entry instead. This makes life for the exception blob easier |
|
480 |
// because making that same check and diverting is painful from assembly language. |
|
481 |
JRT_ENTRY_NO_ASYNC(static address, exception_handler_for_pc_helper(JavaThread* thread, oopDesc* ex, address pc, nmethod*& nm)) |
|
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
482 |
// Reset method handle flag. |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
483 |
thread->set_is_method_handle_return(false); |
1 | 484 |
|
485 |
Handle exception(thread, ex); |
|
486 |
nm = CodeCache::find_nmethod(pc); |
|
487 |
assert(nm != NULL, "this is not an nmethod"); |
|
488 |
// Adjust the pc as needed/ |
|
489 |
if (nm->is_deopt_pc(pc)) { |
|
490 |
RegisterMap map(thread, false); |
|
491 |
frame exception_frame = thread->last_frame().sender(&map); |
|
492 |
// if the frame isn't deopted then pc must not correspond to the caller of last_frame |
|
493 |
assert(exception_frame.is_deoptimized_frame(), "must be deopted"); |
|
494 |
pc = exception_frame.pc(); |
|
495 |
} |
|
496 |
#ifdef ASSERT |
|
497 |
assert(exception.not_null(), "NULL exceptions should be handled by throw_exception"); |
|
498 |
assert(exception->is_oop(), "just checking"); |
|
499 |
// Check that exception is a subclass of Throwable, otherwise we have a VerifyError |
|
4571 | 500 |
if (!(exception->is_a(SystemDictionary::Throwable_klass()))) { |
1 | 501 |
if (ExitVMOnVerifyError) vm_exit(-1); |
502 |
ShouldNotReachHere(); |
|
503 |
} |
|
504 |
#endif |
|
505 |
||
506 |
// Check the stack guard pages and reenable them if necessary and there is |
|
507 |
// enough space on the stack to do so. Use fast exceptions only if the guard |
|
508 |
// pages are enabled. |
|
35071
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
34500
diff
changeset
|
509 |
bool guard_pages_enabled = thread->stack_guards_enabled(); |
1 | 510 |
if (!guard_pages_enabled) guard_pages_enabled = thread->reguard_stack(); |
511 |
||
4761
bdb7375a1fee
6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents:
4571
diff
changeset
|
512 |
if (JvmtiExport::can_post_on_exceptions()) { |
1 | 513 |
// To ensure correct notification of exception catches and throws |
514 |
// we have to deoptimize here. If we attempted to notify the |
|
515 |
// catches and throws during this exception lookup it's possible |
|
516 |
// we could deoptimize on the way out of the VM and end back in |
|
517 |
// the interpreter at the throw site. This would result in double |
|
518 |
// notifications since the interpreter would also notify about |
|
519 |
// these same catches and throws as it unwound the frame. |
|
520 |
||
521 |
RegisterMap reg_map(thread); |
|
522 |
frame stub_frame = thread->last_frame(); |
|
523 |
frame caller_frame = stub_frame.sender(®_map); |
|
524 |
||
525 |
// We don't really want to deoptimize the nmethod itself since we |
|
526 |
// can actually continue in the exception handler ourselves but I |
|
527 |
// don't see an easy way to have the desired effect. |
|
7106
867c9d296c6b
6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents:
6453
diff
changeset
|
528 |
Deoptimization::deoptimize_frame(thread, caller_frame.id()); |
867c9d296c6b
6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents:
6453
diff
changeset
|
529 |
assert(caller_is_deopted(), "Must be deoptimized"); |
1 | 530 |
|
531 |
return SharedRuntime::deopt_blob()->unpack_with_exception_in_tls(); |
|
532 |
} |
|
533 |
||
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
534 |
// ExceptionCache is used only for exceptions at call sites and not for implicit exceptions |
1 | 535 |
if (guard_pages_enabled) { |
536 |
address fast_continuation = nm->handler_for_exception_and_pc(exception, pc); |
|
537 |
if (fast_continuation != NULL) { |
|
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
538 |
// Set flag if return address is a method handle call site. |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
539 |
thread->set_is_method_handle_return(nm->is_method_handle_return(pc)); |
1 | 540 |
return fast_continuation; |
541 |
} |
|
542 |
} |
|
543 |
||
544 |
// If the stack guard pages are enabled, check whether there is a handler in |
|
545 |
// the current method. Otherwise (guard pages disabled), force an unwind and |
|
546 |
// skip the exception cache update (i.e., just leave continuation==NULL). |
|
547 |
address continuation = NULL; |
|
548 |
if (guard_pages_enabled) { |
|
549 |
||
550 |
// New exception handling mechanism can support inlined methods |
|
551 |
// with exception handlers since the mappings are from PC to PC |
|
552 |
||
553 |
// debugging support |
|
554 |
// tracing |
|
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
555 |
if (log_is_enabled(Info, exceptions)) { |
1 | 556 |
ResourceMark rm; |
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
557 |
log_info(exceptions)("Exception <%s> (" INTPTR_FORMAT |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
558 |
") thrown in compiled method <%s> at PC " INTPTR_FORMAT |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
559 |
" for thread " INTPTR_FORMAT, |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
560 |
exception->print_value_string(), |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
561 |
p2i((address)exception()), |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
562 |
nm->method()->print_value_string(), p2i(pc), p2i(thread)); |
1 | 563 |
} |
564 |
// for AbortVMOnException flag |
|
33208
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
31620
diff
changeset
|
565 |
Exceptions::debug_check_abort(exception); |
1 | 566 |
|
567 |
// Clear out the exception oop and pc since looking up an |
|
568 |
// exception handler can cause class loading, which might throw an |
|
569 |
// exception and those fields are expected to be clear during |
|
570 |
// normal bytecode execution. |
|
20703
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
20303
diff
changeset
|
571 |
thread->clear_exception_oop_and_pc(); |
1 | 572 |
|
26169
b1e1ef66da74
8054224: Recursive method that was compiled by C1 is unable to catch StackOverflowError
roland
parents:
25716
diff
changeset
|
573 |
Handle original_exception(thread, exception()); |
b1e1ef66da74
8054224: Recursive method that was compiled by C1 is unable to catch StackOverflowError
roland
parents:
25716
diff
changeset
|
574 |
|
1 | 575 |
continuation = SharedRuntime::compute_compiled_exc_handler(nm, pc, exception, false, false); |
576 |
// If an exception was thrown during exception dispatch, the exception oop may have changed |
|
577 |
thread->set_exception_oop(exception()); |
|
578 |
thread->set_exception_pc(pc); |
|
579 |
||
580 |
// the exception cache is used only by non-implicit exceptions |
|
26169
b1e1ef66da74
8054224: Recursive method that was compiled by C1 is unable to catch StackOverflowError
roland
parents:
25716
diff
changeset
|
581 |
// Update the exception cache only when there didn't happen |
b1e1ef66da74
8054224: Recursive method that was compiled by C1 is unable to catch StackOverflowError
roland
parents:
25716
diff
changeset
|
582 |
// another exception during the computation of the compiled |
b1e1ef66da74
8054224: Recursive method that was compiled by C1 is unable to catch StackOverflowError
roland
parents:
25716
diff
changeset
|
583 |
// exception handler. |
b1e1ef66da74
8054224: Recursive method that was compiled by C1 is unable to catch StackOverflowError
roland
parents:
25716
diff
changeset
|
584 |
if (continuation != NULL && original_exception() == exception()) { |
1 | 585 |
nm->add_handler_for_exception_and_pc(exception, pc, continuation); |
586 |
} |
|
587 |
} |
|
588 |
||
589 |
thread->set_vm_result(exception()); |
|
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
590 |
// Set flag if return address is a method handle call site. |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
591 |
thread->set_is_method_handle_return(nm->is_method_handle_return(pc)); |
1 | 592 |
|
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
593 |
if (log_is_enabled(Info, exceptions)) { |
1 | 594 |
ResourceMark rm; |
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
595 |
log_info(exceptions)("Thread " PTR_FORMAT " continuing at PC " PTR_FORMAT |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
596 |
" for exception thrown at PC " PTR_FORMAT, |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
35071
diff
changeset
|
597 |
p2i(thread), p2i(continuation), p2i(pc)); |
1 | 598 |
} |
599 |
||
600 |
return continuation; |
|
601 |
JRT_END |
|
602 |
||
603 |
// Enter this method from compiled code only if there is a Java exception handler |
|
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
604 |
// in the method handling the exception. |
1 | 605 |
// We are entering here from exception stub. We don't do a normal VM transition here. |
606 |
// We do it in a helper. This is so we can check to see if the nmethod we have just |
|
607 |
// searched for an exception handler has been deoptimized in the meantime. |
|
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
608 |
address Runtime1::exception_handler_for_pc(JavaThread* thread) { |
1 | 609 |
oop exception = thread->exception_oop(); |
610 |
address pc = thread->exception_pc(); |
|
611 |
// Still in Java mode |
|
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
612 |
DEBUG_ONLY(ResetNoHandleMark rnhm); |
1 | 613 |
nmethod* nm = NULL; |
614 |
address continuation = NULL; |
|
615 |
{ |
|
616 |
// Enter VM mode by calling the helper |
|
617 |
ResetNoHandleMark rnhm; |
|
618 |
continuation = exception_handler_for_pc_helper(thread, exception, pc, nm); |
|
619 |
} |
|
620 |
// Back in JAVA, use no oops DON'T safepoint |
|
621 |
||
622 |
// Now check to see if the nmethod we were called from is now deoptimized. |
|
623 |
// If so we must return to the deopt blob and deoptimize the nmethod |
|
624 |
if (nm != NULL && caller_is_deopted()) { |
|
625 |
continuation = SharedRuntime::deopt_blob()->unpack_with_exception_in_tls(); |
|
626 |
} |
|
627 |
||
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
628 |
assert(continuation != NULL, "no handler found"); |
1 | 629 |
return continuation; |
630 |
} |
|
631 |
||
632 |
||
633 |
JRT_ENTRY(void, Runtime1::throw_range_check_exception(JavaThread* thread, int index)) |
|
634 |
NOT_PRODUCT(_throw_range_check_exception_count++;) |
|
635 |
char message[jintAsStringSize]; |
|
636 |
sprintf(message, "%d", index); |
|
637 |
SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), message); |
|
638 |
JRT_END |
|
639 |
||
640 |
||
641 |
JRT_ENTRY(void, Runtime1::throw_index_exception(JavaThread* thread, int index)) |
|
642 |
NOT_PRODUCT(_throw_index_exception_count++;) |
|
643 |
char message[16]; |
|
644 |
sprintf(message, "%d", index); |
|
645 |
SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IndexOutOfBoundsException(), message); |
|
646 |
JRT_END |
|
647 |
||
648 |
||
649 |
JRT_ENTRY(void, Runtime1::throw_div0_exception(JavaThread* thread)) |
|
650 |
NOT_PRODUCT(_throw_div0_exception_count++;) |
|
651 |
SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArithmeticException(), "/ by zero"); |
|
652 |
JRT_END |
|
653 |
||
654 |
||
655 |
JRT_ENTRY(void, Runtime1::throw_null_pointer_exception(JavaThread* thread)) |
|
656 |
NOT_PRODUCT(_throw_null_pointer_exception_count++;) |
|
657 |
SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_NullPointerException()); |
|
658 |
JRT_END |
|
659 |
||
660 |
||
661 |
JRT_ENTRY(void, Runtime1::throw_class_cast_exception(JavaThread* thread, oopDesc* object)) |
|
662 |
NOT_PRODUCT(_throw_class_cast_exception_count++;) |
|
663 |
ResourceMark rm(thread); |
|
664 |
char* message = SharedRuntime::generate_class_cast_message( |
|
14488 | 665 |
thread, object->klass()->external_name()); |
1 | 666 |
SharedRuntime::throw_and_post_jvmti_exception( |
667 |
thread, vmSymbols::java_lang_ClassCastException(), message); |
|
668 |
JRT_END |
|
669 |
||
670 |
||
671 |
JRT_ENTRY(void, Runtime1::throw_incompatible_class_change_error(JavaThread* thread)) |
|
672 |
NOT_PRODUCT(_throw_incompatible_class_change_error_count++;) |
|
673 |
ResourceMark rm(thread); |
|
674 |
SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IncompatibleClassChangeError()); |
|
675 |
JRT_END |
|
676 |
||
677 |
||
678 |
JRT_ENTRY_NO_ASYNC(void, Runtime1::monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock)) |
|
679 |
NOT_PRODUCT(_monitorenter_slowcase_cnt++;) |
|
680 |
if (PrintBiasedLockingStatistics) { |
|
681 |
Atomic::inc(BiasedLocking::slow_path_entry_count_addr()); |
|
682 |
} |
|
683 |
Handle h_obj(thread, obj); |
|
684 |
assert(h_obj()->is_oop(), "must be NULL or an object"); |
|
685 |
if (UseBiasedLocking) { |
|
686 |
// Retry fast entry if bias is revoked to avoid unnecessary inflation |
|
687 |
ObjectSynchronizer::fast_enter(h_obj, lock->lock(), true, CHECK); |
|
688 |
} else { |
|
689 |
if (UseFastLocking) { |
|
690 |
// When using fast locking, the compiled code has already tried the fast case |
|
691 |
assert(obj == lock->obj(), "must match"); |
|
692 |
ObjectSynchronizer::slow_enter(h_obj, lock->lock(), THREAD); |
|
693 |
} else { |
|
694 |
lock->set_obj(obj); |
|
695 |
ObjectSynchronizer::fast_enter(h_obj, lock->lock(), false, THREAD); |
|
696 |
} |
|
697 |
} |
|
698 |
JRT_END |
|
699 |
||
700 |
||
701 |
JRT_LEAF(void, Runtime1::monitorexit(JavaThread* thread, BasicObjectLock* lock)) |
|
702 |
NOT_PRODUCT(_monitorexit_slowcase_cnt++;) |
|
703 |
assert(thread == JavaThread::current(), "threads must correspond"); |
|
704 |
assert(thread->last_Java_sp(), "last_Java_sp must be set"); |
|
705 |
// monitorexit is non-blocking (leaf routine) => no exceptions can be thrown |
|
706 |
EXCEPTION_MARK; |
|
707 |
||
708 |
oop obj = lock->obj(); |
|
709 |
assert(obj->is_oop(), "must be NULL or an object"); |
|
710 |
if (UseFastLocking) { |
|
711 |
// When using fast locking, the compiled code has already tried the fast case |
|
712 |
ObjectSynchronizer::slow_exit(obj, lock->lock(), THREAD); |
|
713 |
} else { |
|
714 |
ObjectSynchronizer::fast_exit(obj, lock->lock(), THREAD); |
|
715 |
} |
|
716 |
JRT_END |
|
717 |
||
10972
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
718 |
// Cf. OptoRuntime::deoptimize_caller_frame |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
719 |
JRT_ENTRY(void, Runtime1::deoptimize(JavaThread* thread, jint trap_request)) |
10972
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
720 |
// Called from within the owner thread, so no need for safepoint |
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
721 |
RegisterMap reg_map(thread, false); |
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
722 |
frame stub_frame = thread->last_frame(); |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
723 |
assert(stub_frame.is_runtime_frame(), "Sanity check"); |
10972
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
724 |
frame caller_frame = stub_frame.sender(®_map); |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
725 |
nmethod* nm = caller_frame.cb()->as_nmethod_or_null(); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
726 |
assert(nm != NULL, "Sanity check"); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
727 |
methodHandle method(thread, nm->method()); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
728 |
assert(nm == CodeCache::find_nmethod(caller_frame.pc()), "Should be the same"); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
729 |
Deoptimization::DeoptAction action = Deoptimization::trap_request_action(trap_request); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
730 |
Deoptimization::DeoptReason reason = Deoptimization::trap_request_reason(trap_request); |
10972
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
731 |
|
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
732 |
if (action == Deoptimization::Action_make_not_entrant) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
733 |
if (nm->make_not_entrant()) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
734 |
if (reason == Deoptimization::Reason_tenured) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
735 |
MethodData* trap_mdo = Deoptimization::get_method_data(thread, method, true /*create_if_missing*/); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
736 |
if (trap_mdo != NULL) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
737 |
trap_mdo->inc_tenure_traps(); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
738 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
739 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
740 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
741 |
} |
10972
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
742 |
|
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
743 |
// Deoptimize the caller frame. |
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
744 |
Deoptimization::deoptimize_frame(thread, caller_frame.id()); |
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
745 |
// Return to the now deoptimized frame. |
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
746 |
JRT_END |
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
747 |
|
1 | 748 |
|
29180 | 749 |
#ifndef DEOPTIMIZE_WHEN_PATCHING |
750 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
751 |
static Klass* resolve_field_return_klass(methodHandle caller, int bci, TRAPS) { |
7913 | 752 |
Bytecode_field field_access(caller, bci); |
1 | 753 |
// This can be static or non-static field access |
7913 | 754 |
Bytecodes::Code code = field_access.code(); |
1 | 755 |
|
756 |
// We must load class, initialize class and resolvethe field |
|
20017
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19710
diff
changeset
|
757 |
fieldDescriptor result; // initialize class if needed |
1 | 758 |
constantPoolHandle constants(THREAD, caller->constants()); |
20017
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19710
diff
changeset
|
759 |
LinkResolver::resolve_field_access(result, constants, field_access.index(), Bytecodes::java_code(code), CHECK_NULL); |
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19710
diff
changeset
|
760 |
return result.field_holder(); |
1 | 761 |
} |
762 |
||
763 |
||
764 |
// |
|
765 |
// This routine patches sites where a class wasn't loaded or |
|
766 |
// initialized at the time the code was generated. It handles |
|
767 |
// references to classes, fields and forcing of initialization. Most |
|
768 |
// of the cases are straightforward and involving simply forcing |
|
769 |
// resolution of a class, rewriting the instruction stream with the |
|
770 |
// needed constant and replacing the call in this function with the |
|
771 |
// patched code. The case for static field is more complicated since |
|
772 |
// the thread which is in the process of initializing a class can |
|
773 |
// access it's static fields but other threads can't so the code |
|
774 |
// either has to deoptimize when this case is detected or execute a |
|
775 |
// check that the current thread is the initializing thread. The |
|
776 |
// current |
|
777 |
// |
|
778 |
// Patches basically look like this: |
|
779 |
// |
|
780 |
// |
|
781 |
// patch_site: jmp patch stub ;; will be patched |
|
782 |
// continue: ... |
|
783 |
// ... |
|
784 |
// ... |
|
785 |
// ... |
|
786 |
// |
|
787 |
// They have a stub which looks like this: |
|
788 |
// |
|
789 |
// ;; patch body |
|
790 |
// movl <const>, reg (for class constants) |
|
791 |
// <or> movl [reg1 + <const>], reg (for field offsets) |
|
792 |
// <or> movl reg, [reg1 + <const>] (for field offsets) |
|
793 |
// <being_init offset> <bytes to copy> <bytes to skip> |
|
794 |
// patch_stub: call Runtime1::patch_code (through a runtime stub) |
|
795 |
// jmp patch_site |
|
796 |
// |
|
797 |
// |
|
798 |
// A normal patch is done by rewriting the patch body, usually a move, |
|
799 |
// and then copying it into place over top of the jmp instruction |
|
800 |
// being careful to flush caches and doing it in an MP-safe way. The |
|
801 |
// constants following the patch body are used to find various pieces |
|
802 |
// of the patch relative to the call site for Runtime1::patch_code. |
|
803 |
// The case for getstatic and putstatic is more complicated because |
|
804 |
// getstatic and putstatic have special semantics when executing while |
|
805 |
// the class is being initialized. getstatic/putstatic on a class |
|
806 |
// which is being_initialized may be executed by the initializing |
|
807 |
// thread but other threads have to block when they execute it. This |
|
808 |
// is accomplished in compiled code by executing a test of the current |
|
809 |
// thread against the initializing thread of the class. It's emitted |
|
810 |
// as boilerplate in their stub which allows the patched code to be |
|
811 |
// executed before it's copied back into the main body of the nmethod. |
|
812 |
// |
|
813 |
// being_init: get_thread(<tmp reg> |
|
814 |
// cmpl [reg1 + <init_thread_offset>], <tmp reg> |
|
815 |
// jne patch_stub |
|
816 |
// movl [reg1 + <const>], reg (for field offsets) <or> |
|
817 |
// movl reg, [reg1 + <const>] (for field offsets) |
|
818 |
// jmp continue |
|
819 |
// <being_init offset> <bytes to copy> <bytes to skip> |
|
820 |
// patch_stub: jmp Runtim1::patch_code (through a runtime stub) |
|
821 |
// jmp patch_site |
|
822 |
// |
|
823 |
// If the class is being initialized the patch body is rewritten and |
|
824 |
// the patch site is rewritten to jump to being_init, instead of |
|
825 |
// patch_stub. Whenever this code is executed it checks the current |
|
826 |
// thread against the intializing thread so other threads will enter |
|
827 |
// the runtime and end up blocked waiting the class to finish |
|
828 |
// initializing inside the calls to resolve_field below. The |
|
829 |
// initializing class will continue on it's way. Once the class is |
|
830 |
// fully_initialized, the intializing_thread of the class becomes |
|
831 |
// NULL, so the next thread to execute this code will fail the test, |
|
832 |
// call into patch_code and complete the patching process by copying |
|
833 |
// the patch body back into the main part of the nmethod and resume |
|
834 |
// executing. |
|
835 |
// |
|
836 |
// |
|
837 |
||
838 |
JRT_ENTRY(void, Runtime1::patch_code(JavaThread* thread, Runtime1::StubID stub_id )) |
|
839 |
NOT_PRODUCT(_patch_code_slowcase_cnt++;) |
|
840 |
||
841 |
ResourceMark rm(thread); |
|
842 |
RegisterMap reg_map(thread, false); |
|
843 |
frame runtime_frame = thread->last_frame(); |
|
844 |
frame caller_frame = runtime_frame.sender(®_map); |
|
845 |
||
846 |
// last java frame on stack |
|
847 |
vframeStream vfst(thread, true); |
|
848 |
assert(!vfst.at_end(), "Java frame must exist"); |
|
849 |
||
850 |
methodHandle caller_method(THREAD, vfst.method()); |
|
851 |
// Note that caller_method->code() may not be same as caller_code because of OSR's |
|
852 |
// Note also that in the presence of inlining it is not guaranteed |
|
853 |
// that caller_method() == caller_code->method() |
|
854 |
||
855 |
int bci = vfst.bci(); |
|
7913 | 856 |
Bytecodes::Code code = caller_method()->java_code_at(bci); |
1 | 857 |
|
858 |
// this is used by assertions in the access_field_patching_id |
|
859 |
BasicType patch_field_type = T_ILLEGAL; |
|
860 |
bool deoptimize_for_volatile = false; |
|
23189
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
861 |
bool deoptimize_for_atomic = false; |
1 | 862 |
int patch_field_offset = -1; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
863 |
KlassHandle init_klass(THREAD, NULL); // klass needed by load_klass_patching code |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
864 |
KlassHandle load_klass(THREAD, NULL); // klass needed by load_klass_patching code |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
865 |
Handle mirror(THREAD, NULL); // oop needed by load_mirror_patching code |
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
866 |
Handle appendix(THREAD, NULL); // oop needed by appendix_patching code |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
867 |
bool load_klass_or_mirror_patch_id = |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
868 |
(stub_id == Runtime1::load_klass_patching_id || stub_id == Runtime1::load_mirror_patching_id); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
869 |
|
1 | 870 |
if (stub_id == Runtime1::access_field_patching_id) { |
871 |
||
7913 | 872 |
Bytecode_field field_access(caller_method, bci); |
20017
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19710
diff
changeset
|
873 |
fieldDescriptor result; // initialize class if needed |
7913 | 874 |
Bytecodes::Code code = field_access.code(); |
1 | 875 |
constantPoolHandle constants(THREAD, caller_method->constants()); |
20017
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19710
diff
changeset
|
876 |
LinkResolver::resolve_field_access(result, constants, field_access.index(), Bytecodes::java_code(code), CHECK); |
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19710
diff
changeset
|
877 |
patch_field_offset = result.offset(); |
1 | 878 |
|
879 |
// If we're patching a field which is volatile then at compile it |
|
880 |
// must not have been know to be volatile, so the generated code |
|
881 |
// isn't correct for a volatile reference. The nmethod has to be |
|
882 |
// deoptimized so that the code can be regenerated correctly. |
|
883 |
// This check is only needed for access_field_patching since this |
|
884 |
// is the path for patching field offsets. load_klass is only |
|
885 |
// used for patching references to oops which don't need special |
|
886 |
// handling in the volatile case. |
|
23189
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
887 |
|
1 | 888 |
deoptimize_for_volatile = result.access_flags().is_volatile(); |
889 |
||
23189
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
890 |
// If we are patching a field which should be atomic, then |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
891 |
// the generated code is not correct either, force deoptimizing. |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
892 |
// We need to only cover T_LONG and T_DOUBLE fields, as we can |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
893 |
// break access atomicity only for them. |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
894 |
|
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
895 |
// Strictly speaking, the deoptimizaation on 64-bit platforms |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
896 |
// is unnecessary, and T_LONG stores on 32-bit platforms need |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
897 |
// to be handled by special patching code when AlwaysAtomicAccesses |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
898 |
// becomes product feature. At this point, we are still going |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
899 |
// for the deoptimization for consistency against volatile |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
900 |
// accesses. |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
901 |
|
1 | 902 |
patch_field_type = result.field_type(); |
23189
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
903 |
deoptimize_for_atomic = (AlwaysAtomicAccesses && (patch_field_type == T_DOUBLE || patch_field_type == T_LONG)); |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
904 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
905 |
} else if (load_klass_or_mirror_patch_id) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
906 |
Klass* k = NULL; |
1 | 907 |
switch (code) { |
908 |
case Bytecodes::_putstatic: |
|
909 |
case Bytecodes::_getstatic: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
910 |
{ Klass* klass = resolve_field_return_klass(caller_method, bci, CHECK); |
1 | 911 |
init_klass = KlassHandle(THREAD, klass); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
912 |
mirror = Handle(THREAD, klass->java_mirror()); |
1 | 913 |
} |
914 |
break; |
|
915 |
case Bytecodes::_new: |
|
7913 | 916 |
{ Bytecode_new bnew(caller_method(), caller_method->bcp_from(bci)); |
917 |
k = caller_method->constants()->klass_at(bnew.index(), CHECK); |
|
1 | 918 |
} |
919 |
break; |
|
920 |
case Bytecodes::_multianewarray: |
|
7913 | 921 |
{ Bytecode_multianewarray mna(caller_method(), caller_method->bcp_from(bci)); |
922 |
k = caller_method->constants()->klass_at(mna.index(), CHECK); |
|
1 | 923 |
} |
924 |
break; |
|
925 |
case Bytecodes::_instanceof: |
|
7913 | 926 |
{ Bytecode_instanceof io(caller_method(), caller_method->bcp_from(bci)); |
927 |
k = caller_method->constants()->klass_at(io.index(), CHECK); |
|
1 | 928 |
} |
929 |
break; |
|
930 |
case Bytecodes::_checkcast: |
|
7913 | 931 |
{ Bytecode_checkcast cc(caller_method(), caller_method->bcp_from(bci)); |
932 |
k = caller_method->constants()->klass_at(cc.index(), CHECK); |
|
1 | 933 |
} |
934 |
break; |
|
935 |
case Bytecodes::_anewarray: |
|
7913 | 936 |
{ Bytecode_anewarray anew(caller_method(), caller_method->bcp_from(bci)); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
937 |
Klass* ek = caller_method->constants()->klass_at(anew.index(), CHECK); |
14488 | 938 |
k = ek->array_klass(CHECK); |
1 | 939 |
} |
940 |
break; |
|
941 |
case Bytecodes::_ldc: |
|
942 |
case Bytecodes::_ldc_w: |
|
943 |
{ |
|
7913 | 944 |
Bytecode_loadconstant cc(caller_method, bci); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
945 |
oop m = cc.resolve_constant(CHECK); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
946 |
mirror = Handle(THREAD, m); |
1 | 947 |
} |
948 |
break; |
|
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
949 |
default: fatal("unexpected bytecode for load_klass_or_mirror_patch_id"); |
1 | 950 |
} |
951 |
// convert to handle |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
952 |
load_klass = KlassHandle(THREAD, k); |
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
953 |
} else if (stub_id == load_appendix_patching_id) { |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
954 |
Bytecode_invoke bytecode(caller_method, bci); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
955 |
Bytecodes::Code bc = bytecode.invoke_code(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
956 |
|
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
957 |
CallInfo info; |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
958 |
constantPoolHandle pool(thread, caller_method->constants()); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
959 |
int index = bytecode.index(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
960 |
LinkResolver::resolve_invoke(info, Handle(), pool, index, bc, CHECK); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
961 |
switch (bc) { |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
962 |
case Bytecodes::_invokehandle: { |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
963 |
int cache_index = ConstantPool::decode_cpcache_index(index, true); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
964 |
assert(cache_index >= 0 && cache_index < pool->cache()->length(), "unexpected cache index"); |
35543
0961315f4016
8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents:
35542
diff
changeset
|
965 |
ConstantPoolCacheEntry* cpce = pool->cache()->entry_at(cache_index); |
0961315f4016
8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents:
35542
diff
changeset
|
966 |
cpce->set_method_handle(pool, info); |
0961315f4016
8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents:
35542
diff
changeset
|
967 |
appendix = info.resolved_appendix(); // just in case somebody already resolved the entry |
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
968 |
break; |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
969 |
} |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
970 |
case Bytecodes::_invokedynamic: { |
35543
0961315f4016
8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents:
35542
diff
changeset
|
971 |
ConstantPoolCacheEntry* cpce = pool->invokedynamic_cp_cache_entry_at(index); |
0961315f4016
8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents:
35542
diff
changeset
|
972 |
cpce->set_dynamic_call(pool, info); |
0961315f4016
8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents:
35542
diff
changeset
|
973 |
appendix = cpce->appendix_if_resolved(pool); // just in case somebody already resolved the entry |
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
974 |
break; |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
975 |
} |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
976 |
default: fatal("unexpected bytecode for load_appendix_patching_id"); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
977 |
} |
35543
0961315f4016
8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents:
35542
diff
changeset
|
978 |
assert(appendix.not_null(), "%s @ %d (%s)", |
0961315f4016
8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents:
35542
diff
changeset
|
979 |
caller_method->name_and_sig_as_C_string(), bci, Bytecodes::name(bc)); |
1 | 980 |
} else { |
981 |
ShouldNotReachHere(); |
|
982 |
} |
|
983 |
||
23189
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
984 |
if (deoptimize_for_volatile || deoptimize_for_atomic) { |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
985 |
// At compile time we assumed the field wasn't volatile/atomic but after |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
986 |
// loading it turns out it was volatile/atomic so we have to throw the |
1 | 987 |
// compiled code out and let it be regenerated. |
988 |
if (TracePatching) { |
|
23189
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
989 |
if (deoptimize_for_volatile) { |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
990 |
tty->print_cr("Deoptimizing for patching volatile field reference"); |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
991 |
} |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
992 |
if (deoptimize_for_atomic) { |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
993 |
tty->print_cr("Deoptimizing for patching atomic field reference"); |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
994 |
} |
1 | 995 |
} |
23189
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
20703
diff
changeset
|
996 |
|
1672
ae4d91125c2d
6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents:
1394
diff
changeset
|
997 |
// It's possible the nmethod was invalidated in the last |
ae4d91125c2d
6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents:
1394
diff
changeset
|
998 |
// safepoint, but if it's still alive then make it not_entrant. |
ae4d91125c2d
6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents:
1394
diff
changeset
|
999 |
nmethod* nm = CodeCache::find_nmethod(caller_frame.pc()); |
ae4d91125c2d
6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents:
1394
diff
changeset
|
1000 |
if (nm != NULL) { |
ae4d91125c2d
6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents:
1394
diff
changeset
|
1001 |
nm->make_not_entrant(); |
ae4d91125c2d
6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents:
1394
diff
changeset
|
1002 |
} |
ae4d91125c2d
6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents:
1394
diff
changeset
|
1003 |
|
7106
867c9d296c6b
6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents:
6453
diff
changeset
|
1004 |
Deoptimization::deoptimize_frame(thread, caller_frame.id()); |
1 | 1005 |
|
1006 |
// Return to the now deoptimized frame. |
|
1007 |
} |
|
1008 |
||
1009 |
// Now copy code back |
|
1010 |
||
1011 |
{ |
|
1012 |
MutexLockerEx ml_patch (Patching_lock, Mutex::_no_safepoint_check_flag); |
|
1013 |
// |
|
1014 |
// Deoptimization may have happened while we waited for the lock. |
|
1015 |
// In that case we don't bother to do any patching we just return |
|
1016 |
// and let the deopt happen |
|
1017 |
if (!caller_is_deopted()) { |
|
1018 |
NativeGeneralJump* jump = nativeGeneralJump_at(caller_frame.pc()); |
|
1019 |
address instr_pc = jump->jump_destination(); |
|
1020 |
NativeInstruction* ni = nativeInstruction_at(instr_pc); |
|
1021 |
if (ni->is_jump() ) { |
|
1022 |
// the jump has not been patched yet |
|
1023 |
// The jump destination is slow case and therefore not part of the stubs |
|
1024 |
// (stubs are only for StaticCalls) |
|
1025 |
||
1026 |
// format of buffer |
|
1027 |
// .... |
|
1028 |
// instr byte 0 <-- copy_buff |
|
1029 |
// instr byte 1 |
|
1030 |
// .. |
|
1031 |
// instr byte n-1 |
|
1032 |
// n |
|
1033 |
// .... <-- call destination |
|
1034 |
||
1035 |
address stub_location = caller_frame.pc() + PatchingStub::patch_info_offset(); |
|
1036 |
unsigned char* byte_count = (unsigned char*) (stub_location - 1); |
|
1037 |
unsigned char* byte_skip = (unsigned char*) (stub_location - 2); |
|
1038 |
unsigned char* being_initialized_entry_offset = (unsigned char*) (stub_location - 3); |
|
1039 |
address copy_buff = stub_location - *byte_skip - *byte_count; |
|
1040 |
address being_initialized_entry = stub_location - *being_initialized_entry_offset; |
|
1041 |
if (TracePatching) { |
|
35542
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
35540
diff
changeset
|
1042 |
ttyLocker ttyl; |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
23189
diff
changeset
|
1043 |
tty->print_cr(" Patching %s at bci %d at address " INTPTR_FORMAT " (%s)", Bytecodes::name(code), bci, |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
23189
diff
changeset
|
1044 |
p2i(instr_pc), (stub_id == Runtime1::access_field_patching_id) ? "field" : "klass"); |
1 | 1045 |
nmethod* caller_code = CodeCache::find_nmethod(caller_frame.pc()); |
1046 |
assert(caller_code != NULL, "nmethod not found"); |
|
1047 |
||
1048 |
// NOTE we use pc() not original_pc() because we already know they are |
|
1049 |
// identical otherwise we'd have never entered this block of code |
|
1050 |
||
30590 | 1051 |
const ImmutableOopMap* map = caller_code->oop_map_for_return_address(caller_frame.pc()); |
1 | 1052 |
assert(map != NULL, "null check"); |
1053 |
map->print(); |
|
1054 |
tty->cr(); |
|
1055 |
||
1056 |
Disassembler::decode(copy_buff, copy_buff + *byte_count, tty); |
|
1057 |
} |
|
1058 |
// depending on the code below, do_patch says whether to copy the patch body back into the nmethod |
|
1059 |
bool do_patch = true; |
|
1060 |
if (stub_id == Runtime1::access_field_patching_id) { |
|
1061 |
// The offset may not be correct if the class was not loaded at code generation time. |
|
1062 |
// Set it now. |
|
1063 |
NativeMovRegMem* n_move = nativeMovRegMem_at(copy_buff); |
|
1064 |
assert(n_move->offset() == 0 || (n_move->offset() == 4 && (patch_field_type == T_DOUBLE || patch_field_type == T_LONG)), "illegal offset for type"); |
|
1065 |
assert(patch_field_offset >= 0, "illegal offset"); |
|
1066 |
n_move->add_offset_in_bytes(patch_field_offset); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1067 |
} else if (load_klass_or_mirror_patch_id) { |
1 | 1068 |
// If a getstatic or putstatic is referencing a klass which |
1069 |
// isn't fully initialized, the patch body isn't copied into |
|
1070 |
// place until initialization is complete. In this case the |
|
1071 |
// patch site is setup so that any threads besides the |
|
1072 |
// initializing thread are forced to come into the VM and |
|
1073 |
// block. |
|
1074 |
do_patch = (code != Bytecodes::_getstatic && code != Bytecodes::_putstatic) || |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1075 |
InstanceKlass::cast(init_klass())->is_initialized(); |
1 | 1076 |
NativeGeneralJump* jump = nativeGeneralJump_at(instr_pc); |
1077 |
if (jump->jump_destination() == being_initialized_entry) { |
|
1078 |
assert(do_patch == true, "initialization must be complete at this point"); |
|
1079 |
} else { |
|
1080 |
// patch the instruction <move reg, klass> |
|
1081 |
NativeMovConstReg* n_copy = nativeMovConstReg_at(copy_buff); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1082 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1083 |
assert(n_copy->data() == 0 || |
6453 | 1084 |
n_copy->data() == (intptr_t)Universe::non_oop_word(), |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1085 |
"illegal init value"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1086 |
if (stub_id == Runtime1::load_klass_patching_id) { |
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1087 |
assert(load_klass() != NULL, "klass not set"); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1088 |
n_copy->set_data((intx) (load_klass())); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1089 |
} else { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1090 |
assert(mirror() != NULL, "klass not set"); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1091 |
// Don't need a G1 pre-barrier here since we assert above that data isn't an oop. |
20282
7f9cbdf89af2
7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents:
20017
diff
changeset
|
1092 |
n_copy->set_data(cast_from_oop<intx>(mirror())); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1093 |
} |
1 | 1094 |
|
1095 |
if (TracePatching) { |
|
1096 |
Disassembler::decode(copy_buff, copy_buff + *byte_count, tty); |
|
1097 |
} |
|
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1098 |
} |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1099 |
} else if (stub_id == Runtime1::load_appendix_patching_id) { |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1100 |
NativeMovConstReg* n_copy = nativeMovConstReg_at(copy_buff); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1101 |
assert(n_copy->data() == 0 || |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1102 |
n_copy->data() == (intptr_t)Universe::non_oop_word(), |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1103 |
"illegal init value"); |
20282
7f9cbdf89af2
7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents:
20017
diff
changeset
|
1104 |
n_copy->set_data(cast_from_oop<intx>(appendix())); |
1 | 1105 |
|
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1106 |
if (TracePatching) { |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1107 |
Disassembler::decode(copy_buff, copy_buff + *byte_count, tty); |
1 | 1108 |
} |
1109 |
} else { |
|
1110 |
ShouldNotReachHere(); |
|
1111 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1112 |
|
34220 | 1113 |
#if defined(SPARC) || defined(PPC32) |
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1114 |
if (load_klass_or_mirror_patch_id || |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1115 |
stub_id == Runtime1::load_appendix_patching_id) { |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1116 |
// Update the location in the nmethod with the proper |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1117 |
// metadata. When the code was generated, a NULL was stuffed |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1118 |
// in the metadata table and that table needs to be update to |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1119 |
// have the right value. On intel the value is kept |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1120 |
// directly in the instruction instead of in the metadata |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1121 |
// table, so set_data above effectively updated the value. |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1122 |
nmethod* nm = CodeCache::find_nmethod(instr_pc); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1123 |
assert(nm != NULL, "invalid nmethod_pc"); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1124 |
RelocIterator mds(nm, copy_buff, copy_buff + 1); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1125 |
bool found = false; |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1126 |
while (mds.next() && !found) { |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1127 |
if (mds.type() == relocInfo::oop_type) { |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1128 |
assert(stub_id == Runtime1::load_mirror_patching_id || |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1129 |
stub_id == Runtime1::load_appendix_patching_id, "wrong stub id"); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1130 |
oop_Relocation* r = mds.oop_reloc(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1131 |
oop* oop_adr = r->oop_addr(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1132 |
*oop_adr = stub_id == Runtime1::load_mirror_patching_id ? mirror() : appendix(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1133 |
r->fix_oop_relocation(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1134 |
found = true; |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1135 |
} else if (mds.type() == relocInfo::metadata_type) { |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1136 |
assert(stub_id == Runtime1::load_klass_patching_id, "wrong stub id"); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1137 |
metadata_Relocation* r = mds.metadata_reloc(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1138 |
Metadata** metadata_adr = r->metadata_addr(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1139 |
*metadata_adr = load_klass(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1140 |
r->fix_metadata_relocation(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1141 |
found = true; |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1142 |
} |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1143 |
} |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1144 |
assert(found, "the metadata must exist!"); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1145 |
} |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1146 |
#endif |
1 | 1147 |
if (do_patch) { |
1148 |
// replace instructions |
|
1149 |
// first replace the tail, then the call |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1150 |
#ifdef ARM |
20301
7a16289e8bef
8024990: JT_JDK: 11 failures with SIGSEGV on arm-sflt platforms in nightly fastdebug build.
jiangli
parents:
19710
diff
changeset
|
1151 |
if((load_klass_or_mirror_patch_id || |
7a16289e8bef
8024990: JT_JDK: 11 failures with SIGSEGV on arm-sflt platforms in nightly fastdebug build.
jiangli
parents:
19710
diff
changeset
|
1152 |
stub_id == Runtime1::load_appendix_patching_id) && |
29474
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
1153 |
nativeMovConstReg_at(copy_buff)->is_pc_relative()) { |
9318
c7acc13a9226
7035861: linux-armsflt: assert(ni->data() == (int)(x + o)) failed: instructions must match
vladidan
parents:
9102
diff
changeset
|
1154 |
nmethod* nm = CodeCache::find_nmethod(instr_pc); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1155 |
address addr = NULL; |
9318
c7acc13a9226
7035861: linux-armsflt: assert(ni->data() == (int)(x + o)) failed: instructions must match
vladidan
parents:
9102
diff
changeset
|
1156 |
assert(nm != NULL, "invalid nmethod_pc"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1157 |
RelocIterator mds(nm, copy_buff, copy_buff + 1); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1158 |
while (mds.next()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1159 |
if (mds.type() == relocInfo::oop_type) { |
20301
7a16289e8bef
8024990: JT_JDK: 11 failures with SIGSEGV on arm-sflt platforms in nightly fastdebug build.
jiangli
parents:
19710
diff
changeset
|
1160 |
assert(stub_id == Runtime1::load_mirror_patching_id || |
7a16289e8bef
8024990: JT_JDK: 11 failures with SIGSEGV on arm-sflt platforms in nightly fastdebug build.
jiangli
parents:
19710
diff
changeset
|
1161 |
stub_id == Runtime1::load_appendix_patching_id, "wrong stub id"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1162 |
oop_Relocation* r = mds.oop_reloc(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1163 |
addr = (address)r->oop_addr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1164 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1165 |
} else if (mds.type() == relocInfo::metadata_type) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1166 |
assert(stub_id == Runtime1::load_klass_patching_id, "wrong stub id"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1167 |
metadata_Relocation* r = mds.metadata_reloc(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1168 |
addr = (address)r->metadata_addr(); |
9318
c7acc13a9226
7035861: linux-armsflt: assert(ni->data() == (int)(x + o)) failed: instructions must match
vladidan
parents:
9102
diff
changeset
|
1169 |
break; |
c7acc13a9226
7035861: linux-armsflt: assert(ni->data() == (int)(x + o)) failed: instructions must match
vladidan
parents:
9102
diff
changeset
|
1170 |
} |
c7acc13a9226
7035861: linux-armsflt: assert(ni->data() == (int)(x + o)) failed: instructions must match
vladidan
parents:
9102
diff
changeset
|
1171 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1172 |
assert(addr != NULL, "metadata relocation must exist"); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1173 |
copy_buff -= *byte_count; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1174 |
NativeMovConstReg* n_copy2 = nativeMovConstReg_at(copy_buff); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1175 |
n_copy2->set_pc_relative_offset(addr, instr_pc); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1176 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1177 |
#endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1178 |
|
34500
3c82f7ac03e6
8138896: C1: NativeGeneralJump is mixed up with NativeCall in C1 patching code
mdoerr
parents:
34220
diff
changeset
|
1179 |
for (int i = NativeGeneralJump::instruction_size; i < *byte_count; i++) { |
1 | 1180 |
address ptr = copy_buff + i; |
1181 |
int a_byte = (*ptr) & 0xFF; |
|
1182 |
address dst = instr_pc + i; |
|
1183 |
*(unsigned char*)dst = (unsigned char) a_byte; |
|
1184 |
} |
|
1185 |
ICache::invalidate_range(instr_pc, *byte_count); |
|
1186 |
NativeGeneralJump::replace_mt_safe(instr_pc, copy_buff); |
|
1187 |
||
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1188 |
if (load_klass_or_mirror_patch_id || |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1189 |
stub_id == Runtime1::load_appendix_patching_id) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1190 |
relocInfo::relocType rtype = |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1191 |
(stub_id == Runtime1::load_klass_patching_id) ? |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1192 |
relocInfo::metadata_type : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1193 |
relocInfo::oop_type; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1194 |
// update relocInfo to metadata |
1 | 1195 |
nmethod* nm = CodeCache::find_nmethod(instr_pc); |
1196 |
assert(nm != NULL, "invalid nmethod_pc"); |
|
1197 |
||
1198 |
// The old patch site is now a move instruction so update |
|
1199 |
// the reloc info so that it will get updated during |
|
1200 |
// future GCs. |
|
1201 |
RelocIterator iter(nm, (address)instr_pc, (address)(instr_pc + 1)); |
|
1202 |
relocInfo::change_reloc_info_for_address(&iter, (address) instr_pc, |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1203 |
relocInfo::none, rtype); |
1 | 1204 |
#ifdef SPARC |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1205 |
// Sparc takes two relocations for an metadata so update the second one. |
1 | 1206 |
address instr_pc2 = instr_pc + NativeMovConstReg::add_offset; |
1207 |
RelocIterator iter2(nm, instr_pc2, instr_pc2 + 1); |
|
1208 |
relocInfo::change_reloc_info_for_address(&iter2, (address) instr_pc2, |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1209 |
relocInfo::none, rtype); |
1 | 1210 |
#endif |
34220 | 1211 |
#ifdef PPC32 |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1212 |
{ address instr_pc2 = instr_pc + NativeMovConstReg::lo_offset; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1213 |
RelocIterator iter2(nm, instr_pc2, instr_pc2 + 1); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1214 |
relocInfo::change_reloc_info_for_address(&iter2, (address) instr_pc2, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1215 |
relocInfo::none, rtype); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1216 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5883
diff
changeset
|
1217 |
#endif |
1 | 1218 |
} |
1219 |
||
1220 |
} else { |
|
1221 |
ICache::invalidate_range(copy_buff, *byte_count); |
|
1222 |
NativeGeneralJump::insert_unconditional(instr_pc, being_initialized_entry); |
|
1223 |
} |
|
1224 |
} |
|
1225 |
} |
|
1226 |
} |
|
19339 | 1227 |
|
1228 |
// If we are patching in a non-perm oop, make sure the nmethod |
|
1229 |
// is on the right list. |
|
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1230 |
if (ScavengeRootsInCode && ((mirror.not_null() && mirror()->is_scavengable()) || |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1231 |
(appendix.not_null() && appendix->is_scavengable()))) { |
19339 | 1232 |
MutexLockerEx ml_code (CodeCache_lock, Mutex::_no_safepoint_check_flag); |
1233 |
nmethod* nm = CodeCache::find_nmethod(caller_frame.pc()); |
|
1234 |
guarantee(nm != NULL, "only nmethods can contain non-perm oops"); |
|
1235 |
if (!nm->on_scavenge_root_list()) { |
|
1236 |
CodeCache::add_scavenge_root_nmethod(nm); |
|
1237 |
} |
|
1238 |
||
1239 |
// Since we've patched some oops in the nmethod, |
|
1240 |
// (re)register it with the heap. |
|
1241 |
Universe::heap()->register_nmethod(nm); |
|
1242 |
} |
|
1 | 1243 |
JRT_END |
1244 |
||
29180 | 1245 |
#else // DEOPTIMIZE_WHEN_PATCHING |
1246 |
||
1247 |
JRT_ENTRY(void, Runtime1::patch_code(JavaThread* thread, Runtime1::StubID stub_id )) |
|
1248 |
RegisterMap reg_map(thread, false); |
|
1249 |
||
1250 |
NOT_PRODUCT(_patch_code_slowcase_cnt++;) |
|
1251 |
if (TracePatching) { |
|
1252 |
tty->print_cr("Deoptimizing because patch is needed"); |
|
1253 |
} |
|
1254 |
||
1255 |
frame runtime_frame = thread->last_frame(); |
|
1256 |
frame caller_frame = runtime_frame.sender(®_map); |
|
1257 |
||
1258 |
// It's possible the nmethod was invalidated in the last |
|
1259 |
// safepoint, but if it's still alive then make it not_entrant. |
|
1260 |
nmethod* nm = CodeCache::find_nmethod(caller_frame.pc()); |
|
1261 |
if (nm != NULL) { |
|
1262 |
nm->make_not_entrant(); |
|
1263 |
} |
|
1264 |
||
1265 |
Deoptimization::deoptimize_frame(thread, caller_frame.id()); |
|
1266 |
||
1267 |
// Return to the now deoptimized frame. |
|
1268 |
JRT_END |
|
1269 |
||
1270 |
#endif // DEOPTIMIZE_WHEN_PATCHING |
|
1271 |
||
1 | 1272 |
// |
1273 |
// Entry point for compiled code. We want to patch a nmethod. |
|
1274 |
// We don't do a normal VM transition here because we want to |
|
1275 |
// know after the patching is complete and any safepoint(s) are taken |
|
1276 |
// if the calling nmethod was deoptimized. We do this by calling a |
|
1277 |
// helper method which does the normal VM transition and when it |
|
1278 |
// completes we can check for deoptimization. This simplifies the |
|
1279 |
// assembly code in the cpu directories. |
|
1280 |
// |
|
1281 |
int Runtime1::move_klass_patching(JavaThread* thread) { |
|
1282 |
// |
|
1283 |
// NOTE: we are still in Java |
|
1284 |
// |
|
1285 |
Thread* THREAD = thread; |
|
1286 |
debug_only(NoHandleMark nhm;) |
|
1287 |
{ |
|
1288 |
// Enter VM mode |
|
1289 |
||
1290 |
ResetNoHandleMark rnhm; |
|
1291 |
patch_code(thread, load_klass_patching_id); |
|
1292 |
} |
|
1293 |
// Back in JAVA, use no oops DON'T safepoint |
|
1294 |
||
1295 |
// Return true if calling code is deoptimized |
|
1296 |
||
1297 |
return caller_is_deopted(); |
|
1298 |
} |
|
1299 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1300 |
int Runtime1::move_mirror_patching(JavaThread* thread) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1301 |
// |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1302 |
// NOTE: we are still in Java |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1303 |
// |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1304 |
Thread* THREAD = thread; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1305 |
debug_only(NoHandleMark nhm;) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1306 |
{ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1307 |
// Enter VM mode |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1308 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1309 |
ResetNoHandleMark rnhm; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1310 |
patch_code(thread, load_mirror_patching_id); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1311 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1312 |
// Back in JAVA, use no oops DON'T safepoint |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1313 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1314 |
// Return true if calling code is deoptimized |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1315 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1316 |
return caller_is_deopted(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1317 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1318 |
|
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1319 |
int Runtime1::move_appendix_patching(JavaThread* thread) { |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1320 |
// |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1321 |
// NOTE: we are still in Java |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1322 |
// |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1323 |
Thread* THREAD = thread; |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1324 |
debug_only(NoHandleMark nhm;) |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1325 |
{ |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1326 |
// Enter VM mode |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1327 |
|
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1328 |
ResetNoHandleMark rnhm; |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1329 |
patch_code(thread, load_appendix_patching_id); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1330 |
} |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1331 |
// Back in JAVA, use no oops DON'T safepoint |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1332 |
|
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1333 |
// Return true if calling code is deoptimized |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1334 |
|
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1335 |
return caller_is_deopted(); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
19339
diff
changeset
|
1336 |
} |
1 | 1337 |
// |
1338 |
// Entry point for compiled code. We want to patch a nmethod. |
|
1339 |
// We don't do a normal VM transition here because we want to |
|
1340 |
// know after the patching is complete and any safepoint(s) are taken |
|
1341 |
// if the calling nmethod was deoptimized. We do this by calling a |
|
1342 |
// helper method which does the normal VM transition and when it |
|
1343 |
// completes we can check for deoptimization. This simplifies the |
|
1344 |
// assembly code in the cpu directories. |
|
1345 |
// |
|
1346 |
||
1347 |
int Runtime1::access_field_patching(JavaThread* thread) { |
|
1348 |
// |
|
1349 |
// NOTE: we are still in Java |
|
1350 |
// |
|
1351 |
Thread* THREAD = thread; |
|
1352 |
debug_only(NoHandleMark nhm;) |
|
1353 |
{ |
|
1354 |
// Enter VM mode |
|
1355 |
||
1356 |
ResetNoHandleMark rnhm; |
|
1357 |
patch_code(thread, access_field_patching_id); |
|
1358 |
} |
|
1359 |
// Back in JAVA, use no oops DON'T safepoint |
|
1360 |
||
1361 |
// Return true if calling code is deoptimized |
|
1362 |
||
1363 |
return caller_is_deopted(); |
|
1364 |
JRT_END |
|
1365 |
||
1366 |
||
1367 |
JRT_LEAF(void, Runtime1::trace_block_entry(jint block_id)) |
|
1368 |
// for now we just print out the block id |
|
1369 |
tty->print("%d ", block_id); |
|
1370 |
JRT_END |
|
1371 |
||
1372 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1373 |
// Array copy return codes. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1374 |
enum { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1375 |
ac_failed = -1, // arraycopy failed |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1376 |
ac_ok = 0 // arraycopy succeeded |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1377 |
}; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1378 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1379 |
|
4886
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1380 |
// Below length is the # elements copied. |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1381 |
template <class T> int obj_arraycopy_work(oopDesc* src, T* src_addr, |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1382 |
oopDesc* dst, T* dst_addr, |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1383 |
int length) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1384 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1385 |
// For performance reasons, we assume we are using a card marking write |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1386 |
// barrier. The assert will fail if this is not the case. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1387 |
// Note that we use the non-virtual inlineable variant of write_ref_array. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1388 |
BarrierSet* bs = Universe::heap()->barrier_set(); |
4886
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1389 |
assert(bs->has_write_ref_array_opt(), "Barrier set must have ref array opt"); |
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1390 |
assert(bs->has_write_ref_array_pre_opt(), "For pre-barrier as well."); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1391 |
if (src == dst) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1392 |
// same object, no check |
4886
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1393 |
bs->write_ref_array_pre(dst_addr, length); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1394 |
Copy::conjoint_oops_atomic(src_addr, dst_addr, length); |
4886
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1395 |
bs->write_ref_array((HeapWord*)dst_addr, length); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1396 |
return ac_ok; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1397 |
} else { |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
1398 |
Klass* bound = ObjArrayKlass::cast(dst->klass())->element_klass(); |
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
1399 |
Klass* stype = ObjArrayKlass::cast(src->klass())->element_klass(); |
14488 | 1400 |
if (stype == bound || stype->is_subtype_of(bound)) { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1401 |
// Elements are guaranteed to be subtypes, so no check necessary |
4886
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1402 |
bs->write_ref_array_pre(dst_addr, length); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1403 |
Copy::conjoint_oops_atomic(src_addr, dst_addr, length); |
4886
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1404 |
bs->write_ref_array((HeapWord*)dst_addr, length); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1405 |
return ac_ok; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1406 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1407 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1408 |
return ac_failed; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1409 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1410 |
|
1 | 1411 |
// fast and direct copy of arrays; returning -1, means that an exception may be thrown |
1412 |
// and we did not copy anything |
|
1413 |
JRT_LEAF(int, Runtime1::arraycopy(oopDesc* src, int src_pos, oopDesc* dst, int dst_pos, int length)) |
|
1414 |
#ifndef PRODUCT |
|
1415 |
_generic_arraycopy_cnt++; // Slow-path oop array copy |
|
1416 |
#endif |
|
1417 |
||
1418 |
if (src == NULL || dst == NULL || src_pos < 0 || dst_pos < 0 || length < 0) return ac_failed; |
|
1419 |
if (!dst->is_array() || !src->is_array()) return ac_failed; |
|
1420 |
if ((unsigned int) arrayOop(src)->length() < (unsigned int)src_pos + (unsigned int)length) return ac_failed; |
|
1421 |
if ((unsigned int) arrayOop(dst)->length() < (unsigned int)dst_pos + (unsigned int)length) return ac_failed; |
|
1422 |
||
1423 |
if (length == 0) return ac_ok; |
|
1424 |
if (src->is_typeArray()) { |
|
17370
59a0620561fa
8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents:
16611
diff
changeset
|
1425 |
Klass* klass_oop = src->klass(); |
1 | 1426 |
if (klass_oop != dst->klass()) return ac_failed; |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
1427 |
TypeArrayKlass* klass = TypeArrayKlass::cast(klass_oop); |
1 | 1428 |
const int l2es = klass->log2_element_size(); |
1429 |
const int ihs = klass->array_header_in_bytes() / wordSize; |
|
1430 |
char* src_addr = (char*) ((oopDesc**)src + ihs) + (src_pos << l2es); |
|
1431 |
char* dst_addr = (char*) ((oopDesc**)dst + ihs) + (dst_pos << l2es); |
|
1432 |
// Potential problem: memmove is not guaranteed to be word atomic |
|
1433 |
// Revisit in Merlin |
|
1434 |
memmove(dst_addr, src_addr, length << l2es); |
|
1435 |
return ac_ok; |
|
1436 |
} else if (src->is_objArray() && dst->is_objArray()) { |
|
7427 | 1437 |
if (UseCompressedOops) { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1438 |
narrowOop *src_addr = objArrayOop(src)->obj_at_addr<narrowOop>(src_pos); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1439 |
narrowOop *dst_addr = objArrayOop(dst)->obj_at_addr<narrowOop>(dst_pos); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1440 |
return obj_arraycopy_work(src, src_addr, dst, dst_addr, length); |
1 | 1441 |
} else { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1442 |
oop *src_addr = objArrayOop(src)->obj_at_addr<oop>(src_pos); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1443 |
oop *dst_addr = objArrayOop(dst)->obj_at_addr<oop>(dst_pos); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1444 |
return obj_arraycopy_work(src, src_addr, dst, dst_addr, length); |
1 | 1445 |
} |
1446 |
} |
|
1447 |
return ac_failed; |
|
1448 |
JRT_END |
|
1449 |
||
1450 |
||
1451 |
JRT_LEAF(void, Runtime1::primitive_arraycopy(HeapWord* src, HeapWord* dst, int length)) |
|
1452 |
#ifndef PRODUCT |
|
1453 |
_primitive_arraycopy_cnt++; |
|
1454 |
#endif |
|
1455 |
||
1456 |
if (length == 0) return; |
|
1457 |
// Not guaranteed to be word atomic, but that doesn't matter |
|
1458 |
// for anything but an oop array, which is covered by oop_arraycopy. |
|
5883
8dc4bdc132d5
6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents:
5882
diff
changeset
|
1459 |
Copy::conjoint_jbytes(src, dst, length); |
1 | 1460 |
JRT_END |
1461 |
||
1462 |
JRT_LEAF(void, Runtime1::oop_arraycopy(HeapWord* src, HeapWord* dst, int num)) |
|
1463 |
#ifndef PRODUCT |
|
1464 |
_oop_arraycopy_cnt++; |
|
1465 |
#endif |
|
1466 |
||
1467 |
if (num == 0) return; |
|
4886
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1468 |
BarrierSet* bs = Universe::heap()->barrier_set(); |
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1469 |
assert(bs->has_write_ref_array_opt(), "Barrier set must have ref array opt"); |
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1470 |
assert(bs->has_write_ref_array_pre_opt(), "For pre-barrier as well."); |
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1471 |
if (UseCompressedOops) { |
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1472 |
bs->write_ref_array_pre((narrowOop*)dst, num); |
7427 | 1473 |
Copy::conjoint_oops_atomic((narrowOop*) src, (narrowOop*) dst, num); |
4886
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1474 |
} else { |
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1475 |
bs->write_ref_array_pre((oop*)dst, num); |
7427 | 1476 |
Copy::conjoint_oops_atomic((oop*) src, (oop*) dst, num); |
4886
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1477 |
} |
a2f9a66475b3
6904516: More object array barrier fixes, following up on 6906727
ysr
parents:
4571
diff
changeset
|
1478 |
bs->write_ref_array(dst, num); |
1 | 1479 |
JRT_END |
1480 |
||
1481 |
||
12949 | 1482 |
JRT_LEAF(int, Runtime1::is_instance_of(oopDesc* mirror, oopDesc* obj)) |
1483 |
// had to return int instead of bool, otherwise there may be a mismatch |
|
1484 |
// between the C calling convention and the Java one. |
|
1485 |
// e.g., on x86, GCC may clear only %al when returning a bool false, but |
|
1486 |
// JVM takes the whole %eax as the return value, which may misinterpret |
|
1487 |
// the return value as a boolean true. |
|
1488 |
||
1489 |
assert(mirror != NULL, "should null-check on mirror before calling"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
1490 |
Klass* k = java_lang_Class::as_Klass(mirror); |
12949 | 1491 |
return (k != NULL && obj != NULL && obj->is_a(k)) ? 1 : 0; |
1492 |
JRT_END |
|
1493 |
||
16611 | 1494 |
JRT_ENTRY(void, Runtime1::predicate_failed_trap(JavaThread* thread)) |
1495 |
ResourceMark rm; |
|
1496 |
||
1497 |
assert(!TieredCompilation, "incompatible with tiered compilation"); |
|
1498 |
||
1499 |
RegisterMap reg_map(thread, false); |
|
1500 |
frame runtime_frame = thread->last_frame(); |
|
1501 |
frame caller_frame = runtime_frame.sender(®_map); |
|
1502 |
||
1503 |
nmethod* nm = CodeCache::find_nmethod(caller_frame.pc()); |
|
1504 |
assert (nm != NULL, "no more nmethod?"); |
|
1505 |
nm->make_not_entrant(); |
|
1506 |
||
1507 |
methodHandle m(nm->method()); |
|
1508 |
MethodData* mdo = m->method_data(); |
|
1509 |
||
1510 |
if (mdo == NULL && !HAS_PENDING_EXCEPTION) { |
|
1511 |
// Build an MDO. Ignore errors like OutOfMemory; |
|
1512 |
// that simply means we won't have an MDO to update. |
|
1513 |
Method::build_interpreter_method_data(m, THREAD); |
|
1514 |
if (HAS_PENDING_EXCEPTION) { |
|
1515 |
assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())), "we expect only an OOM error here"); |
|
1516 |
CLEAR_PENDING_EXCEPTION; |
|
1517 |
} |
|
1518 |
mdo = m->method_data(); |
|
1519 |
} |
|
1520 |
||
1521 |
if (mdo != NULL) { |
|
1522 |
mdo->inc_trap_count(Deoptimization::Reason_none); |
|
1523 |
} |
|
1524 |
||
1525 |
if (TracePredicateFailedTraps) { |
|
1526 |
stringStream ss1, ss2; |
|
1527 |
vframeStream vfst(thread); |
|
1528 |
methodHandle inlinee = methodHandle(vfst.method()); |
|
1529 |
inlinee->print_short_name(&ss1); |
|
1530 |
m->print_short_name(&ss2); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
23189
diff
changeset
|
1531 |
tty->print_cr("Predicate failed trap in method %s at bci %d inlined in %s at pc " INTPTR_FORMAT, ss1.as_string(), vfst.bci(), ss2.as_string(), p2i(caller_frame.pc())); |
16611 | 1532 |
} |
1533 |
||
1534 |
||
1535 |
Deoptimization::deoptimize_frame(thread, caller_frame.id()); |
|
1536 |
||
1537 |
JRT_END |
|
12949 | 1538 |
|
1 | 1539 |
#ifndef PRODUCT |
1540 |
void Runtime1::print_statistics() { |
|
1541 |
tty->print_cr("C1 Runtime statistics:"); |
|
1542 |
tty->print_cr(" _resolve_invoke_virtual_cnt: %d", SharedRuntime::_resolve_virtual_ctr); |
|
1543 |
tty->print_cr(" _resolve_invoke_opt_virtual_cnt: %d", SharedRuntime::_resolve_opt_virtual_ctr); |
|
1544 |
tty->print_cr(" _resolve_invoke_static_cnt: %d", SharedRuntime::_resolve_static_ctr); |
|
1545 |
tty->print_cr(" _handle_wrong_method_cnt: %d", SharedRuntime::_wrong_method_ctr); |
|
1546 |
tty->print_cr(" _ic_miss_cnt: %d", SharedRuntime::_ic_miss_ctr); |
|
1547 |
tty->print_cr(" _generic_arraycopy_cnt: %d", _generic_arraycopy_cnt); |
|
9102 | 1548 |
tty->print_cr(" _generic_arraycopystub_cnt: %d", _generic_arraycopystub_cnt); |
24944
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
1549 |
tty->print_cr(" _byte_arraycopy_cnt: %d", _byte_arraycopy_stub_cnt); |
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
1550 |
tty->print_cr(" _short_arraycopy_cnt: %d", _short_arraycopy_stub_cnt); |
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
1551 |
tty->print_cr(" _int_arraycopy_cnt: %d", _int_arraycopy_stub_cnt); |
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
1552 |
tty->print_cr(" _long_arraycopy_cnt: %d", _long_arraycopy_stub_cnt); |
1 | 1553 |
tty->print_cr(" _primitive_arraycopy_cnt: %d", _primitive_arraycopy_cnt); |
9102 | 1554 |
tty->print_cr(" _oop_arraycopy_cnt (C): %d", Runtime1::_oop_arraycopy_cnt); |
24944
5b01505efb7a
8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents:
24442
diff
changeset
|
1555 |
tty->print_cr(" _oop_arraycopy_cnt (stub): %d", _oop_arraycopy_stub_cnt); |
1 | 1556 |
tty->print_cr(" _arraycopy_slowcase_cnt: %d", _arraycopy_slowcase_cnt); |
9102 | 1557 |
tty->print_cr(" _arraycopy_checkcast_cnt: %d", _arraycopy_checkcast_cnt); |
1558 |
tty->print_cr(" _arraycopy_checkcast_attempt_cnt:%d", _arraycopy_checkcast_attempt_cnt); |
|
1 | 1559 |
|
1560 |
tty->print_cr(" _new_type_array_slowcase_cnt: %d", _new_type_array_slowcase_cnt); |
|
1561 |
tty->print_cr(" _new_object_array_slowcase_cnt: %d", _new_object_array_slowcase_cnt); |
|
1562 |
tty->print_cr(" _new_instance_slowcase_cnt: %d", _new_instance_slowcase_cnt); |
|
1563 |
tty->print_cr(" _new_multi_array_slowcase_cnt: %d", _new_multi_array_slowcase_cnt); |
|
1564 |
tty->print_cr(" _monitorenter_slowcase_cnt: %d", _monitorenter_slowcase_cnt); |
|
1565 |
tty->print_cr(" _monitorexit_slowcase_cnt: %d", _monitorexit_slowcase_cnt); |
|
1566 |
tty->print_cr(" _patch_code_slowcase_cnt: %d", _patch_code_slowcase_cnt); |
|
1567 |
||
1568 |
tty->print_cr(" _throw_range_check_exception_count: %d:", _throw_range_check_exception_count); |
|
1569 |
tty->print_cr(" _throw_index_exception_count: %d:", _throw_index_exception_count); |
|
1570 |
tty->print_cr(" _throw_div0_exception_count: %d:", _throw_div0_exception_count); |
|
1571 |
tty->print_cr(" _throw_null_pointer_exception_count: %d:", _throw_null_pointer_exception_count); |
|
1572 |
tty->print_cr(" _throw_class_cast_exception_count: %d:", _throw_class_cast_exception_count); |
|
1573 |
tty->print_cr(" _throw_incompatible_class_change_error_count: %d:", _throw_incompatible_class_change_error_count); |
|
1574 |
tty->print_cr(" _throw_array_store_exception_count: %d:", _throw_array_store_exception_count); |
|
1575 |
tty->print_cr(" _throw_count: %d:", _throw_count); |
|
1576 |
||
1577 |
SharedRuntime::print_ic_miss_histogram(); |
|
1578 |
tty->cr(); |
|
1579 |
} |
|
1580 |
#endif // PRODUCT |