annotate src/share/vm/c1/c1_Runtime1.cpp @ 113:ba764ed4b6f2

6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
author coleenp
date Sun, 13 Apr 2008 17:43:42 -0400
parents a61af66fc99e
children d1605aabd0a1 37f87013dfd8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_c1_Runtime1.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Implementation of StubAssembler
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 StubAssembler::StubAssembler(CodeBuffer* code, const char * name, int stub_id) : C1_MacroAssembler(code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 _name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 _must_gc_arguments = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 _frame_size = no_frame_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 _num_rt_args = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 _stub_id = stub_id;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 }
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 void StubAssembler::set_info(const char* name, bool must_gc_arguments) {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 _must_gc_arguments = must_gc_arguments;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 }
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 void StubAssembler::set_frame_size(int size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 if (_frame_size == no_frame_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 _frame_size = size;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 }
a61af66fc99e Initial load
duke
parents:
diff changeset
50 assert(_frame_size == size, "can't change the frame size");
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 void StubAssembler::set_num_rt_args(int args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 if (_num_rt_args == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 _num_rt_args = args;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 }
a61af66fc99e Initial load
duke
parents:
diff changeset
58 assert(_num_rt_args == args, "can't change the number of args");
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // Implementation of Runtime1
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 bool Runtime1::_is_initialized = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 CodeBlob* Runtime1::_blobs[Runtime1::number_of_ids];
a61af66fc99e Initial load
duke
parents:
diff changeset
65 const char *Runtime1::_blob_names[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 RUNTIME1_STUBS(STUB_NAME, LAST_STUB_NAME)
a61af66fc99e Initial load
duke
parents:
diff changeset
67 };
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
71 int Runtime1::_generic_arraycopy_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 int Runtime1::_primitive_arraycopy_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 int Runtime1::_oop_arraycopy_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 int Runtime1::_arraycopy_slowcase_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 int Runtime1::_new_type_array_slowcase_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 int Runtime1::_new_object_array_slowcase_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 int Runtime1::_new_instance_slowcase_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 int Runtime1::_new_multi_array_slowcase_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 int Runtime1::_monitorenter_slowcase_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 int Runtime1::_monitorexit_slowcase_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 int Runtime1::_patch_code_slowcase_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 int Runtime1::_throw_range_check_exception_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 int Runtime1::_throw_index_exception_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 int Runtime1::_throw_div0_exception_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 int Runtime1::_throw_null_pointer_exception_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 int Runtime1::_throw_class_cast_exception_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 int Runtime1::_throw_incompatible_class_change_error_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 int Runtime1::_throw_array_store_exception_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 int Runtime1::_throw_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 BufferBlob* Runtime1::_buffer_blob = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // Simple helper to see if the caller of a runtime stub which
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // entered the VM has been deoptimized
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 static bool caller_is_deopted() {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
99 RegisterMap reg_map(thread, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 frame runtime_frame = thread->last_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 frame caller_frame = runtime_frame.sender(&reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 assert(caller_frame.is_compiled_frame(), "must be compiled");
a61af66fc99e Initial load
duke
parents:
diff changeset
103 return caller_frame.is_deoptimized_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Stress deoptimization
a61af66fc99e Initial load
duke
parents:
diff changeset
107 static void deopt_caller() {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 if ( !caller_is_deopted()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
110 RegisterMap reg_map(thread, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 frame runtime_frame = thread->last_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
112 frame caller_frame = runtime_frame.sender(&reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 VM_DeoptimizeFrame deopt(thread, caller_frame.id());
a61af66fc99e Initial load
duke
parents:
diff changeset
114 VMThread::execute(&deopt);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 assert(caller_is_deopted(), "Must be deoptimized");
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 BufferBlob* Runtime1::get_buffer_blob() {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Allocate code buffer space only once
a61af66fc99e Initial load
duke
parents:
diff changeset
122 BufferBlob* blob = _buffer_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 if (blob == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // setup CodeBuffer. Preallocate a BufferBlob of size
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // NMethodSizeLimit plus some extra space for constants.
a61af66fc99e Initial load
duke
parents:
diff changeset
126 int code_buffer_size = desired_max_code_buffer_size() + desired_max_constant_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
127 blob = BufferBlob::create("Compiler1 temporary CodeBuffer",
a61af66fc99e Initial load
duke
parents:
diff changeset
128 code_buffer_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 guarantee(blob != NULL, "must create initial code buffer");
a61af66fc99e Initial load
duke
parents:
diff changeset
130 _buffer_blob = blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 return _buffer_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void Runtime1::setup_code_buffer(CodeBuffer* code, int call_stub_estimate) {
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Preinitialize the consts section to some large size:
a61af66fc99e Initial load
duke
parents:
diff changeset
137 int locs_buffer_size = 20 * (relocInfo::length_limit + sizeof(relocInfo));
a61af66fc99e Initial load
duke
parents:
diff changeset
138 char* locs_buffer = NEW_RESOURCE_ARRAY(char, locs_buffer_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 code->insts()->initialize_shared_locs((relocInfo*)locs_buffer,
a61af66fc99e Initial load
duke
parents:
diff changeset
140 locs_buffer_size / sizeof(relocInfo));
a61af66fc99e Initial load
duke
parents:
diff changeset
141 code->initialize_consts_size(desired_max_constant_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // Call stubs + deopt/exception handler
a61af66fc99e Initial load
duke
parents:
diff changeset
143 code->initialize_stubs_size((call_stub_estimate * LIR_Assembler::call_stub_size) +
a61af66fc99e Initial load
duke
parents:
diff changeset
144 LIR_Assembler::exception_handler_size +
a61af66fc99e Initial load
duke
parents:
diff changeset
145 LIR_Assembler::deopt_handler_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 void Runtime1::generate_blob_for(StubID id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 assert(0 <= id && id < number_of_ids, "illegal stub id");
a61af66fc99e Initial load
duke
parents:
diff changeset
151 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // create code buffer for code storage
a61af66fc99e Initial load
duke
parents:
diff changeset
153 CodeBuffer code(get_buffer_blob()->instructions_begin(),
a61af66fc99e Initial load
duke
parents:
diff changeset
154 get_buffer_blob()->instructions_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 setup_code_buffer(&code, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // create assembler for code generation
a61af66fc99e Initial load
duke
parents:
diff changeset
159 StubAssembler* sasm = new StubAssembler(&code, name_for(id), id);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // generate code for runtime stub
a61af66fc99e Initial load
duke
parents:
diff changeset
161 OopMapSet* oop_maps;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 oop_maps = generate_code_for(id, sasm);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 assert(oop_maps == NULL || sasm->frame_size() != no_frame_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
164 "if stub has an oop map it must have a valid frame size");
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // Make sure that stubs that need oopmaps have them
a61af66fc99e Initial load
duke
parents:
diff changeset
168 switch (id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // These stubs don't need to have an oopmap
a61af66fc99e Initial load
duke
parents:
diff changeset
170 case dtrace_object_alloc_id:
a61af66fc99e Initial load
duke
parents:
diff changeset
171 case slow_subtype_check_id:
a61af66fc99e Initial load
duke
parents:
diff changeset
172 case fpu2long_stub_id:
a61af66fc99e Initial load
duke
parents:
diff changeset
173 case unwind_exception_id:
a61af66fc99e Initial load
duke
parents:
diff changeset
174 #ifndef TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
175 case counter_overflow_id: // Not generated outside the tiered world
a61af66fc99e Initial load
duke
parents:
diff changeset
176 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
177 #ifdef SPARC
a61af66fc99e Initial load
duke
parents:
diff changeset
178 case handle_exception_nofpu_id: // Unused on sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
179 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
180 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // All other stubs should have oopmaps
a61af66fc99e Initial load
duke
parents:
diff changeset
183 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
184 assert(oop_maps != NULL, "must have an oopmap");
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // align so printing shows nop's instead of random code at the end (SimpleStubs are aligned)
a61af66fc99e Initial load
duke
parents:
diff changeset
189 sasm->align(BytesPerWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // make sure all code is in code buffer
a61af66fc99e Initial load
duke
parents:
diff changeset
191 sasm->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // create blob - distinguish a few special cases
a61af66fc99e Initial load
duke
parents:
diff changeset
193 CodeBlob* blob = RuntimeStub::new_runtime_stub(name_for(id),
a61af66fc99e Initial load
duke
parents:
diff changeset
194 &code,
a61af66fc99e Initial load
duke
parents:
diff changeset
195 CodeOffsets::frame_never_safe,
a61af66fc99e Initial load
duke
parents:
diff changeset
196 sasm->frame_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
197 oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
198 sasm->must_gc_arguments());
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // install blob
a61af66fc99e Initial load
duke
parents:
diff changeset
200 assert(blob != NULL, "blob must exist");
a61af66fc99e Initial load
duke
parents:
diff changeset
201 _blobs[id] = blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void Runtime1::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // Warning: If we have more than one compilation running in parallel, we
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // need a lock here with the current setup (lazy initialization).
a61af66fc99e Initial load
duke
parents:
diff changeset
208 if (!is_initialized()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
209 _is_initialized = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // platform-dependent initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
212 initialize_pd();
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // generate stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
214 for (int id = 0; id < number_of_ids; id++) generate_blob_for((StubID)id);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // printing
a61af66fc99e Initial load
duke
parents:
diff changeset
216 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
217 if (PrintSimpleStubs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 for (int id = 0; id < number_of_ids; id++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 _blobs[id]->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
221 if (_blobs[id]->oop_maps() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 _blobs[id]->oop_maps()->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 CodeBlob* Runtime1::blob_for(StubID id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 assert(0 <= id && id < number_of_ids, "illegal stub id");
a61af66fc99e Initial load
duke
parents:
diff changeset
233 if (!is_initialized()) initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
234 return _blobs[id];
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 const char* Runtime1::name_for(StubID id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 assert(0 <= id && id < number_of_ids, "illegal stub id");
a61af66fc99e Initial load
duke
parents:
diff changeset
240 return _blob_names[id];
a61af66fc99e Initial load
duke
parents:
diff changeset
241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243 const char* Runtime1::name_for_address(address entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 for (int id = 0; id < number_of_ids; id++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
245 if (entry == entry_for((StubID)id)) return name_for((StubID)id);
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 #define FUNCTION_CASE(a, f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
249 if ((intptr_t)a == CAST_FROM_FN_PTR(intptr_t, f)) return #f
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 FUNCTION_CASE(entry, os::javaTimeMillis);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 FUNCTION_CASE(entry, os::javaTimeNanos);
a61af66fc99e Initial load
duke
parents:
diff changeset
253 FUNCTION_CASE(entry, SharedRuntime::OSR_migration_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
254 FUNCTION_CASE(entry, SharedRuntime::d2f);
a61af66fc99e Initial load
duke
parents:
diff changeset
255 FUNCTION_CASE(entry, SharedRuntime::d2i);
a61af66fc99e Initial load
duke
parents:
diff changeset
256 FUNCTION_CASE(entry, SharedRuntime::d2l);
a61af66fc99e Initial load
duke
parents:
diff changeset
257 FUNCTION_CASE(entry, SharedRuntime::dcos);
a61af66fc99e Initial load
duke
parents:
diff changeset
258 FUNCTION_CASE(entry, SharedRuntime::dexp);
a61af66fc99e Initial load
duke
parents:
diff changeset
259 FUNCTION_CASE(entry, SharedRuntime::dlog);
a61af66fc99e Initial load
duke
parents:
diff changeset
260 FUNCTION_CASE(entry, SharedRuntime::dlog10);
a61af66fc99e Initial load
duke
parents:
diff changeset
261 FUNCTION_CASE(entry, SharedRuntime::dpow);
a61af66fc99e Initial load
duke
parents:
diff changeset
262 FUNCTION_CASE(entry, SharedRuntime::drem);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 FUNCTION_CASE(entry, SharedRuntime::dsin);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 FUNCTION_CASE(entry, SharedRuntime::dtan);
a61af66fc99e Initial load
duke
parents:
diff changeset
265 FUNCTION_CASE(entry, SharedRuntime::f2i);
a61af66fc99e Initial load
duke
parents:
diff changeset
266 FUNCTION_CASE(entry, SharedRuntime::f2l);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 FUNCTION_CASE(entry, SharedRuntime::frem);
a61af66fc99e Initial load
duke
parents:
diff changeset
268 FUNCTION_CASE(entry, SharedRuntime::l2d);
a61af66fc99e Initial load
duke
parents:
diff changeset
269 FUNCTION_CASE(entry, SharedRuntime::l2f);
a61af66fc99e Initial load
duke
parents:
diff changeset
270 FUNCTION_CASE(entry, SharedRuntime::ldiv);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 FUNCTION_CASE(entry, SharedRuntime::lmul);
a61af66fc99e Initial load
duke
parents:
diff changeset
272 FUNCTION_CASE(entry, SharedRuntime::lrem);
a61af66fc99e Initial load
duke
parents:
diff changeset
273 FUNCTION_CASE(entry, SharedRuntime::lrem);
a61af66fc99e Initial load
duke
parents:
diff changeset
274 FUNCTION_CASE(entry, SharedRuntime::dtrace_method_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
275 FUNCTION_CASE(entry, SharedRuntime::dtrace_method_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
276 FUNCTION_CASE(entry, trace_block_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 #undef FUNCTION_CASE
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 return "<unknown function>";
a61af66fc99e Initial load
duke
parents:
diff changeset
281 }
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 JRT_ENTRY(void, Runtime1::new_instance(JavaThread* thread, klassOopDesc* klass))
a61af66fc99e Initial load
duke
parents:
diff changeset
285 NOT_PRODUCT(_new_instance_slowcase_cnt++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 assert(oop(klass)->is_klass(), "not a class");
a61af66fc99e Initial load
duke
parents:
diff changeset
288 instanceKlassHandle h(thread, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 h->check_valid_for_instantiation(true, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // make sure klass is initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
291 h->initialize(CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // allocate instance and return via TLS
a61af66fc99e Initial load
duke
parents:
diff changeset
293 oop obj = h->allocate_instance(CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
294 thread->set_vm_result(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 JRT_ENTRY(void, Runtime1::new_type_array(JavaThread* thread, klassOopDesc* klass, jint length))
a61af66fc99e Initial load
duke
parents:
diff changeset
299 NOT_PRODUCT(_new_type_array_slowcase_cnt++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // Note: no handle for klass needed since they are not used
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // anymore after new_typeArray() and no GC can happen before.
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // (This may have to change if this code changes!)
a61af66fc99e Initial load
duke
parents:
diff changeset
303 assert(oop(klass)->is_klass(), "not a class");
a61af66fc99e Initial load
duke
parents:
diff changeset
304 BasicType elt_type = typeArrayKlass::cast(klass)->element_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
305 oop obj = oopFactory::new_typeArray(elt_type, length, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 thread->set_vm_result(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // This is pretty rare but this runtime patch is stressful to deoptimization
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // if we deoptimize here so force a deopt to stress the path.
a61af66fc99e Initial load
duke
parents:
diff changeset
309 if (DeoptimizeALot) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 deopt_caller();
a61af66fc99e Initial load
duke
parents:
diff changeset
311 }
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315
a61af66fc99e Initial load
duke
parents:
diff changeset
316 JRT_ENTRY(void, Runtime1::new_object_array(JavaThread* thread, klassOopDesc* array_klass, jint length))
a61af66fc99e Initial load
duke
parents:
diff changeset
317 NOT_PRODUCT(_new_object_array_slowcase_cnt++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // Note: no handle for klass needed since they are not used
a61af66fc99e Initial load
duke
parents:
diff changeset
320 // anymore after new_objArray() and no GC can happen before.
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // (This may have to change if this code changes!)
a61af66fc99e Initial load
duke
parents:
diff changeset
322 assert(oop(array_klass)->is_klass(), "not a class");
a61af66fc99e Initial load
duke
parents:
diff changeset
323 klassOop elem_klass = objArrayKlass::cast(array_klass)->element_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
324 objArrayOop obj = oopFactory::new_objArray(elem_klass, length, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
325 thread->set_vm_result(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
326 // This is pretty rare but this runtime patch is stressful to deoptimization
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // if we deoptimize here so force a deopt to stress the path.
a61af66fc99e Initial load
duke
parents:
diff changeset
328 if (DeoptimizeALot) {
a61af66fc99e Initial load
duke
parents:
diff changeset
329 deopt_caller();
a61af66fc99e Initial load
duke
parents:
diff changeset
330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
331 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 JRT_ENTRY(void, Runtime1::new_multi_array(JavaThread* thread, klassOopDesc* klass, int rank, jint* dims))
a61af66fc99e Initial load
duke
parents:
diff changeset
335 NOT_PRODUCT(_new_multi_array_slowcase_cnt++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 assert(oop(klass)->is_klass(), "not a class");
a61af66fc99e Initial load
duke
parents:
diff changeset
338 assert(rank >= 1, "rank must be nonzero");
a61af66fc99e Initial load
duke
parents:
diff changeset
339 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // In 64 bit mode, the sizes are stored in the top 32 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // of each 64 bit stack entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // dims is actually an intptr_t * because the arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // are pushed onto a 64 bit stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // We must create an array of jints to pass to multi_allocate.
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // We reuse the current stack because it will be popped
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // after this bytecode is completed.
a61af66fc99e Initial load
duke
parents:
diff changeset
347 if ( rank > 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
348 int index;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 for ( index = 1; index < rank; index++ ) { // First size is ok
a61af66fc99e Initial load
duke
parents:
diff changeset
350 dims[index] = dims[index*2];
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352 }
a61af66fc99e Initial load
duke
parents:
diff changeset
353 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
354 oop obj = arrayKlass::cast(klass)->multi_allocate(rank, dims, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
355 thread->set_vm_result(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
356 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 JRT_ENTRY(void, Runtime1::unimplemented_entry(JavaThread* thread, StubID id))
a61af66fc99e Initial load
duke
parents:
diff changeset
360 tty->print_cr("Runtime1::entry_for(%d) returned unimplemented entry point", id);
a61af66fc99e Initial load
duke
parents:
diff changeset
361 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 JRT_ENTRY(void, Runtime1::throw_array_store_exception(JavaThread* thread))
a61af66fc99e Initial load
duke
parents:
diff changeset
365 THROW(vmSymbolHandles::java_lang_ArrayStoreException());
a61af66fc99e Initial load
duke
parents:
diff changeset
366 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 JRT_ENTRY(void, Runtime1::post_jvmti_exception_throw(JavaThread* thread))
a61af66fc99e Initial load
duke
parents:
diff changeset
370 if (JvmtiExport::can_post_exceptions()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
371 vframeStream vfst(thread, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
372 address bcp = vfst.method()->bcp_from(vfst.bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
373 JvmtiExport::post_exception_throw(thread, vfst.method(), bcp, thread->exception_oop());
a61af66fc99e Initial load
duke
parents:
diff changeset
374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 #ifdef TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
378 JRT_ENTRY(void, Runtime1::counter_overflow(JavaThread* thread, int bci))
a61af66fc99e Initial load
duke
parents:
diff changeset
379 RegisterMap map(thread, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
380 frame fr = thread->last_frame().sender(&map);
a61af66fc99e Initial load
duke
parents:
diff changeset
381 nmethod* nm = (nmethod*) fr.cb();
a61af66fc99e Initial load
duke
parents:
diff changeset
382 assert(nm!= NULL && nm->is_nmethod(), "what?");
a61af66fc99e Initial load
duke
parents:
diff changeset
383 methodHandle method(thread, nm->method());
a61af66fc99e Initial load
duke
parents:
diff changeset
384 if (bci == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // invocation counter overflow
a61af66fc99e Initial load
duke
parents:
diff changeset
386 if (!Tier1CountOnly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
387 CompilationPolicy::policy()->method_invocation_event(method, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
389 method()->invocation_counter()->reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
392 if (!Tier1CountOnly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // Twe have a bci but not the destination bci and besides a backedge
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // event is more for OSR which we don't want here.
a61af66fc99e Initial load
duke
parents:
diff changeset
395 CompilationPolicy::policy()->method_invocation_event(method, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
396 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
397 method()->backedge_counter()->reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
398 }
a61af66fc99e Initial load
duke
parents:
diff changeset
399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
400 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
401 #endif // TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
402
a61af66fc99e Initial load
duke
parents:
diff changeset
403 extern void vm_exit(int code);
a61af66fc99e Initial load
duke
parents:
diff changeset
404
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // Enter this method from compiled code handler below. This is where we transition
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // to VM mode. This is done as a helper routine so that the method called directly
a61af66fc99e Initial load
duke
parents:
diff changeset
407 // from compiled code does not have to transition to VM. This allows the entry
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // method to see if the nmethod that we have just looked up a handler for has
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // been deoptimized while we were in the vm. This simplifies the assembly code
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // cpu directories.
a61af66fc99e Initial load
duke
parents:
diff changeset
411 //
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // We are entering here from exception stub (via the entry method below)
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // If there is a compiled exception handler in this method, we will continue there;
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // otherwise we will unwind the stack and continue at the caller of top frame method
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // Note: we enter in Java using a special JRT wrapper. This wrapper allows us to
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // control the area where we can allow a safepoint. After we exit the safepoint area we can
a61af66fc99e Initial load
duke
parents:
diff changeset
417 // check to see if the handler we are going to return is now in a nmethod that has
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // been deoptimized. If that is the case we return the deopt blob
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // unpack_with_exception entry instead. This makes life for the exception blob easier
a61af66fc99e Initial load
duke
parents:
diff changeset
420 // because making that same check and diverting is painful from assembly language.
a61af66fc99e Initial load
duke
parents:
diff changeset
421 //
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424 JRT_ENTRY_NO_ASYNC(static address, exception_handler_for_pc_helper(JavaThread* thread, oopDesc* ex, address pc, nmethod*& nm))
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 Handle exception(thread, ex);
a61af66fc99e Initial load
duke
parents:
diff changeset
427 nm = CodeCache::find_nmethod(pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
428 assert(nm != NULL, "this is not an nmethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // Adjust the pc as needed/
a61af66fc99e Initial load
duke
parents:
diff changeset
430 if (nm->is_deopt_pc(pc)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 RegisterMap map(thread, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
432 frame exception_frame = thread->last_frame().sender(&map);
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // if the frame isn't deopted then pc must not correspond to the caller of last_frame
a61af66fc99e Initial load
duke
parents:
diff changeset
434 assert(exception_frame.is_deoptimized_frame(), "must be deopted");
a61af66fc99e Initial load
duke
parents:
diff changeset
435 pc = exception_frame.pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
437 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
438 assert(exception.not_null(), "NULL exceptions should be handled by throw_exception");
a61af66fc99e Initial load
duke
parents:
diff changeset
439 assert(exception->is_oop(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // Check that exception is a subclass of Throwable, otherwise we have a VerifyError
a61af66fc99e Initial load
duke
parents:
diff changeset
441 if (!(exception->is_a(SystemDictionary::throwable_klass()))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
442 if (ExitVMOnVerifyError) vm_exit(-1);
a61af66fc99e Initial load
duke
parents:
diff changeset
443 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
445 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
446
a61af66fc99e Initial load
duke
parents:
diff changeset
447 // Check the stack guard pages and reenable them if necessary and there is
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // enough space on the stack to do so. Use fast exceptions only if the guard
a61af66fc99e Initial load
duke
parents:
diff changeset
449 // pages are enabled.
a61af66fc99e Initial load
duke
parents:
diff changeset
450 bool guard_pages_enabled = thread->stack_yellow_zone_enabled();
a61af66fc99e Initial load
duke
parents:
diff changeset
451 if (!guard_pages_enabled) guard_pages_enabled = thread->reguard_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 if (JvmtiExport::can_post_exceptions()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
454 // To ensure correct notification of exception catches and throws
a61af66fc99e Initial load
duke
parents:
diff changeset
455 // we have to deoptimize here. If we attempted to notify the
a61af66fc99e Initial load
duke
parents:
diff changeset
456 // catches and throws during this exception lookup it's possible
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // we could deoptimize on the way out of the VM and end back in
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // the interpreter at the throw site. This would result in double
a61af66fc99e Initial load
duke
parents:
diff changeset
459 // notifications since the interpreter would also notify about
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // these same catches and throws as it unwound the frame.
a61af66fc99e Initial load
duke
parents:
diff changeset
461
a61af66fc99e Initial load
duke
parents:
diff changeset
462 RegisterMap reg_map(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
463 frame stub_frame = thread->last_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
464 frame caller_frame = stub_frame.sender(&reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
465
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // We don't really want to deoptimize the nmethod itself since we
a61af66fc99e Initial load
duke
parents:
diff changeset
467 // can actually continue in the exception handler ourselves but I
a61af66fc99e Initial load
duke
parents:
diff changeset
468 // don't see an easy way to have the desired effect.
a61af66fc99e Initial load
duke
parents:
diff changeset
469 VM_DeoptimizeFrame deopt(thread, caller_frame.id());
a61af66fc99e Initial load
duke
parents:
diff changeset
470 VMThread::execute(&deopt);
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472 return SharedRuntime::deopt_blob()->unpack_with_exception_in_tls();
a61af66fc99e Initial load
duke
parents:
diff changeset
473 }
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 // ExceptionCache is used only for exceptions at call and not for implicit exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
476 if (guard_pages_enabled) {
a61af66fc99e Initial load
duke
parents:
diff changeset
477 address fast_continuation = nm->handler_for_exception_and_pc(exception, pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
478 if (fast_continuation != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
479 if (fast_continuation == ExceptionCache::unwind_handler()) fast_continuation = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
480 return fast_continuation;
a61af66fc99e Initial load
duke
parents:
diff changeset
481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
482 }
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 // If the stack guard pages are enabled, check whether there is a handler in
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // the current method. Otherwise (guard pages disabled), force an unwind and
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // skip the exception cache update (i.e., just leave continuation==NULL).
a61af66fc99e Initial load
duke
parents:
diff changeset
487 address continuation = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
488 if (guard_pages_enabled) {
a61af66fc99e Initial load
duke
parents:
diff changeset
489
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // New exception handling mechanism can support inlined methods
a61af66fc99e Initial load
duke
parents:
diff changeset
491 // with exception handlers since the mappings are from PC to PC
a61af66fc99e Initial load
duke
parents:
diff changeset
492
a61af66fc99e Initial load
duke
parents:
diff changeset
493 // debugging support
a61af66fc99e Initial load
duke
parents:
diff changeset
494 // tracing
a61af66fc99e Initial load
duke
parents:
diff changeset
495 if (TraceExceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
496 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
497 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
498 tty->print_cr("Exception <%s> (0x%x) thrown in compiled method <%s> at PC " PTR_FORMAT " for thread 0x%x",
a61af66fc99e Initial load
duke
parents:
diff changeset
499 exception->print_value_string(), (address)exception(), nm->method()->print_value_string(), pc, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
500 }
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // for AbortVMOnException flag
a61af66fc99e Initial load
duke
parents:
diff changeset
502 NOT_PRODUCT(Exceptions::debug_check_abort(exception));
a61af66fc99e Initial load
duke
parents:
diff changeset
503
a61af66fc99e Initial load
duke
parents:
diff changeset
504 // Clear out the exception oop and pc since looking up an
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // exception handler can cause class loading, which might throw an
a61af66fc99e Initial load
duke
parents:
diff changeset
506 // exception and those fields are expected to be clear during
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // normal bytecode execution.
a61af66fc99e Initial load
duke
parents:
diff changeset
508 thread->set_exception_oop(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
509 thread->set_exception_pc(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
510
a61af66fc99e Initial load
duke
parents:
diff changeset
511 continuation = SharedRuntime::compute_compiled_exc_handler(nm, pc, exception, false, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
512 // If an exception was thrown during exception dispatch, the exception oop may have changed
a61af66fc99e Initial load
duke
parents:
diff changeset
513 thread->set_exception_oop(exception());
a61af66fc99e Initial load
duke
parents:
diff changeset
514 thread->set_exception_pc(pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
515
a61af66fc99e Initial load
duke
parents:
diff changeset
516 // the exception cache is used only by non-implicit exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
517 if (continuation == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
518 nm->add_handler_for_exception_and_pc(exception, pc, ExceptionCache::unwind_handler());
a61af66fc99e Initial load
duke
parents:
diff changeset
519 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
520 nm->add_handler_for_exception_and_pc(exception, pc, continuation);
a61af66fc99e Initial load
duke
parents:
diff changeset
521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
522 }
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524 thread->set_vm_result(exception());
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 if (TraceExceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
528 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
529 tty->print_cr("Thread " PTR_FORMAT " continuing at PC " PTR_FORMAT " for exception thrown at PC " PTR_FORMAT,
a61af66fc99e Initial load
duke
parents:
diff changeset
530 thread, continuation, pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
531 }
a61af66fc99e Initial load
duke
parents:
diff changeset
532
a61af66fc99e Initial load
duke
parents:
diff changeset
533 return continuation;
a61af66fc99e Initial load
duke
parents:
diff changeset
534 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 // Enter this method from compiled code only if there is a Java exception handler
a61af66fc99e Initial load
duke
parents:
diff changeset
537 // in the method handling the exception
a61af66fc99e Initial load
duke
parents:
diff changeset
538 // We are entering here from exception stub. We don't do a normal VM transition here.
a61af66fc99e Initial load
duke
parents:
diff changeset
539 // We do it in a helper. This is so we can check to see if the nmethod we have just
a61af66fc99e Initial load
duke
parents:
diff changeset
540 // searched for an exception handler has been deoptimized in the meantime.
a61af66fc99e Initial load
duke
parents:
diff changeset
541 address Runtime1::exception_handler_for_pc(JavaThread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
542 oop exception = thread->exception_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
543 address pc = thread->exception_pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
544 // Still in Java mode
a61af66fc99e Initial load
duke
parents:
diff changeset
545 debug_only(ResetNoHandleMark rnhm);
a61af66fc99e Initial load
duke
parents:
diff changeset
546 nmethod* nm = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
547 address continuation = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
548 {
a61af66fc99e Initial load
duke
parents:
diff changeset
549 // Enter VM mode by calling the helper
a61af66fc99e Initial load
duke
parents:
diff changeset
550
a61af66fc99e Initial load
duke
parents:
diff changeset
551 ResetNoHandleMark rnhm;
a61af66fc99e Initial load
duke
parents:
diff changeset
552 continuation = exception_handler_for_pc_helper(thread, exception, pc, nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
553 }
a61af66fc99e Initial load
duke
parents:
diff changeset
554 // Back in JAVA, use no oops DON'T safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
555
a61af66fc99e Initial load
duke
parents:
diff changeset
556 // Now check to see if the nmethod we were called from is now deoptimized.
a61af66fc99e Initial load
duke
parents:
diff changeset
557 // If so we must return to the deopt blob and deoptimize the nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559 if (nm != NULL && caller_is_deopted()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
560 continuation = SharedRuntime::deopt_blob()->unpack_with_exception_in_tls();
a61af66fc99e Initial load
duke
parents:
diff changeset
561 }
a61af66fc99e Initial load
duke
parents:
diff changeset
562
a61af66fc99e Initial load
duke
parents:
diff changeset
563 return continuation;
a61af66fc99e Initial load
duke
parents:
diff changeset
564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566
a61af66fc99e Initial load
duke
parents:
diff changeset
567 JRT_ENTRY(void, Runtime1::throw_range_check_exception(JavaThread* thread, int index))
a61af66fc99e Initial load
duke
parents:
diff changeset
568 NOT_PRODUCT(_throw_range_check_exception_count++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
569 Events::log("throw_range_check");
a61af66fc99e Initial load
duke
parents:
diff changeset
570 char message[jintAsStringSize];
a61af66fc99e Initial load
duke
parents:
diff changeset
571 sprintf(message, "%d", index);
a61af66fc99e Initial load
duke
parents:
diff changeset
572 SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), message);
a61af66fc99e Initial load
duke
parents:
diff changeset
573 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
574
a61af66fc99e Initial load
duke
parents:
diff changeset
575
a61af66fc99e Initial load
duke
parents:
diff changeset
576 JRT_ENTRY(void, Runtime1::throw_index_exception(JavaThread* thread, int index))
a61af66fc99e Initial load
duke
parents:
diff changeset
577 NOT_PRODUCT(_throw_index_exception_count++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
578 Events::log("throw_index");
a61af66fc99e Initial load
duke
parents:
diff changeset
579 char message[16];
a61af66fc99e Initial load
duke
parents:
diff changeset
580 sprintf(message, "%d", index);
a61af66fc99e Initial load
duke
parents:
diff changeset
581 SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IndexOutOfBoundsException(), message);
a61af66fc99e Initial load
duke
parents:
diff changeset
582 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
583
a61af66fc99e Initial load
duke
parents:
diff changeset
584
a61af66fc99e Initial load
duke
parents:
diff changeset
585 JRT_ENTRY(void, Runtime1::throw_div0_exception(JavaThread* thread))
a61af66fc99e Initial load
duke
parents:
diff changeset
586 NOT_PRODUCT(_throw_div0_exception_count++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
587 SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArithmeticException(), "/ by zero");
a61af66fc99e Initial load
duke
parents:
diff changeset
588 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
589
a61af66fc99e Initial load
duke
parents:
diff changeset
590
a61af66fc99e Initial load
duke
parents:
diff changeset
591 JRT_ENTRY(void, Runtime1::throw_null_pointer_exception(JavaThread* thread))
a61af66fc99e Initial load
duke
parents:
diff changeset
592 NOT_PRODUCT(_throw_null_pointer_exception_count++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
593 SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
594 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
595
a61af66fc99e Initial load
duke
parents:
diff changeset
596
a61af66fc99e Initial load
duke
parents:
diff changeset
597 JRT_ENTRY(void, Runtime1::throw_class_cast_exception(JavaThread* thread, oopDesc* object))
a61af66fc99e Initial load
duke
parents:
diff changeset
598 NOT_PRODUCT(_throw_class_cast_exception_count++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
599 ResourceMark rm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
600 char* message = SharedRuntime::generate_class_cast_message(
a61af66fc99e Initial load
duke
parents:
diff changeset
601 thread, Klass::cast(object->klass())->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
602 SharedRuntime::throw_and_post_jvmti_exception(
a61af66fc99e Initial load
duke
parents:
diff changeset
603 thread, vmSymbols::java_lang_ClassCastException(), message);
a61af66fc99e Initial load
duke
parents:
diff changeset
604 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
605
a61af66fc99e Initial load
duke
parents:
diff changeset
606
a61af66fc99e Initial load
duke
parents:
diff changeset
607 JRT_ENTRY(void, Runtime1::throw_incompatible_class_change_error(JavaThread* thread))
a61af66fc99e Initial load
duke
parents:
diff changeset
608 NOT_PRODUCT(_throw_incompatible_class_change_error_count++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
609 ResourceMark rm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
610 SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IncompatibleClassChangeError());
a61af66fc99e Initial load
duke
parents:
diff changeset
611 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
612
a61af66fc99e Initial load
duke
parents:
diff changeset
613
a61af66fc99e Initial load
duke
parents:
diff changeset
614 JRT_ENTRY_NO_ASYNC(void, Runtime1::monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock))
a61af66fc99e Initial load
duke
parents:
diff changeset
615 NOT_PRODUCT(_monitorenter_slowcase_cnt++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
616 if (PrintBiasedLockingStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
617 Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
619 Handle h_obj(thread, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
620 assert(h_obj()->is_oop(), "must be NULL or an object");
a61af66fc99e Initial load
duke
parents:
diff changeset
621 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
622 // Retry fast entry if bias is revoked to avoid unnecessary inflation
a61af66fc99e Initial load
duke
parents:
diff changeset
623 ObjectSynchronizer::fast_enter(h_obj, lock->lock(), true, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
624 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
625 if (UseFastLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
626 // When using fast locking, the compiled code has already tried the fast case
a61af66fc99e Initial load
duke
parents:
diff changeset
627 assert(obj == lock->obj(), "must match");
a61af66fc99e Initial load
duke
parents:
diff changeset
628 ObjectSynchronizer::slow_enter(h_obj, lock->lock(), THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
629 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
630 lock->set_obj(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
631 ObjectSynchronizer::fast_enter(h_obj, lock->lock(), false, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
632 }
a61af66fc99e Initial load
duke
parents:
diff changeset
633 }
a61af66fc99e Initial load
duke
parents:
diff changeset
634 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 JRT_LEAF(void, Runtime1::monitorexit(JavaThread* thread, BasicObjectLock* lock))
a61af66fc99e Initial load
duke
parents:
diff changeset
638 NOT_PRODUCT(_monitorexit_slowcase_cnt++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
639 assert(thread == JavaThread::current(), "threads must correspond");
a61af66fc99e Initial load
duke
parents:
diff changeset
640 assert(thread->last_Java_sp(), "last_Java_sp must be set");
a61af66fc99e Initial load
duke
parents:
diff changeset
641 // monitorexit is non-blocking (leaf routine) => no exceptions can be thrown
a61af66fc99e Initial load
duke
parents:
diff changeset
642 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
643
a61af66fc99e Initial load
duke
parents:
diff changeset
644 oop obj = lock->obj();
a61af66fc99e Initial load
duke
parents:
diff changeset
645 assert(obj->is_oop(), "must be NULL or an object");
a61af66fc99e Initial load
duke
parents:
diff changeset
646 if (UseFastLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
647 // When using fast locking, the compiled code has already tried the fast case
a61af66fc99e Initial load
duke
parents:
diff changeset
648 ObjectSynchronizer::slow_exit(obj, lock->lock(), THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
649 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
650 ObjectSynchronizer::fast_exit(obj, lock->lock(), THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
651 }
a61af66fc99e Initial load
duke
parents:
diff changeset
652 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
653
a61af66fc99e Initial load
duke
parents:
diff changeset
654
a61af66fc99e Initial load
duke
parents:
diff changeset
655 static klassOop resolve_field_return_klass(methodHandle caller, int bci, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
656 Bytecode_field* field_access = Bytecode_field_at(caller(), caller->bcp_from(bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
657 // This can be static or non-static field access
a61af66fc99e Initial load
duke
parents:
diff changeset
658 Bytecodes::Code code = field_access->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
659
a61af66fc99e Initial load
duke
parents:
diff changeset
660 // We must load class, initialize class and resolvethe field
a61af66fc99e Initial load
duke
parents:
diff changeset
661 FieldAccessInfo result; // initialize class if needed
a61af66fc99e Initial load
duke
parents:
diff changeset
662 constantPoolHandle constants(THREAD, caller->constants());
a61af66fc99e Initial load
duke
parents:
diff changeset
663 LinkResolver::resolve_field(result, constants, field_access->index(), Bytecodes::java_code(code), false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
664 return result.klass()();
a61af66fc99e Initial load
duke
parents:
diff changeset
665 }
a61af66fc99e Initial load
duke
parents:
diff changeset
666
a61af66fc99e Initial load
duke
parents:
diff changeset
667
a61af66fc99e Initial load
duke
parents:
diff changeset
668 //
a61af66fc99e Initial load
duke
parents:
diff changeset
669 // This routine patches sites where a class wasn't loaded or
a61af66fc99e Initial load
duke
parents:
diff changeset
670 // initialized at the time the code was generated. It handles
a61af66fc99e Initial load
duke
parents:
diff changeset
671 // references to classes, fields and forcing of initialization. Most
a61af66fc99e Initial load
duke
parents:
diff changeset
672 // of the cases are straightforward and involving simply forcing
a61af66fc99e Initial load
duke
parents:
diff changeset
673 // resolution of a class, rewriting the instruction stream with the
a61af66fc99e Initial load
duke
parents:
diff changeset
674 // needed constant and replacing the call in this function with the
a61af66fc99e Initial load
duke
parents:
diff changeset
675 // patched code. The case for static field is more complicated since
a61af66fc99e Initial load
duke
parents:
diff changeset
676 // the thread which is in the process of initializing a class can
a61af66fc99e Initial load
duke
parents:
diff changeset
677 // access it's static fields but other threads can't so the code
a61af66fc99e Initial load
duke
parents:
diff changeset
678 // either has to deoptimize when this case is detected or execute a
a61af66fc99e Initial load
duke
parents:
diff changeset
679 // check that the current thread is the initializing thread. The
a61af66fc99e Initial load
duke
parents:
diff changeset
680 // current
a61af66fc99e Initial load
duke
parents:
diff changeset
681 //
a61af66fc99e Initial load
duke
parents:
diff changeset
682 // Patches basically look like this:
a61af66fc99e Initial load
duke
parents:
diff changeset
683 //
a61af66fc99e Initial load
duke
parents:
diff changeset
684 //
a61af66fc99e Initial load
duke
parents:
diff changeset
685 // patch_site: jmp patch stub ;; will be patched
a61af66fc99e Initial load
duke
parents:
diff changeset
686 // continue: ...
a61af66fc99e Initial load
duke
parents:
diff changeset
687 // ...
a61af66fc99e Initial load
duke
parents:
diff changeset
688 // ...
a61af66fc99e Initial load
duke
parents:
diff changeset
689 // ...
a61af66fc99e Initial load
duke
parents:
diff changeset
690 //
a61af66fc99e Initial load
duke
parents:
diff changeset
691 // They have a stub which looks like this:
a61af66fc99e Initial load
duke
parents:
diff changeset
692 //
a61af66fc99e Initial load
duke
parents:
diff changeset
693 // ;; patch body
a61af66fc99e Initial load
duke
parents:
diff changeset
694 // movl <const>, reg (for class constants)
a61af66fc99e Initial load
duke
parents:
diff changeset
695 // <or> movl [reg1 + <const>], reg (for field offsets)
a61af66fc99e Initial load
duke
parents:
diff changeset
696 // <or> movl reg, [reg1 + <const>] (for field offsets)
a61af66fc99e Initial load
duke
parents:
diff changeset
697 // <being_init offset> <bytes to copy> <bytes to skip>
a61af66fc99e Initial load
duke
parents:
diff changeset
698 // patch_stub: call Runtime1::patch_code (through a runtime stub)
a61af66fc99e Initial load
duke
parents:
diff changeset
699 // jmp patch_site
a61af66fc99e Initial load
duke
parents:
diff changeset
700 //
a61af66fc99e Initial load
duke
parents:
diff changeset
701 //
a61af66fc99e Initial load
duke
parents:
diff changeset
702 // A normal patch is done by rewriting the patch body, usually a move,
a61af66fc99e Initial load
duke
parents:
diff changeset
703 // and then copying it into place over top of the jmp instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
704 // being careful to flush caches and doing it in an MP-safe way. The
a61af66fc99e Initial load
duke
parents:
diff changeset
705 // constants following the patch body are used to find various pieces
a61af66fc99e Initial load
duke
parents:
diff changeset
706 // of the patch relative to the call site for Runtime1::patch_code.
a61af66fc99e Initial load
duke
parents:
diff changeset
707 // The case for getstatic and putstatic is more complicated because
a61af66fc99e Initial load
duke
parents:
diff changeset
708 // getstatic and putstatic have special semantics when executing while
a61af66fc99e Initial load
duke
parents:
diff changeset
709 // the class is being initialized. getstatic/putstatic on a class
a61af66fc99e Initial load
duke
parents:
diff changeset
710 // which is being_initialized may be executed by the initializing
a61af66fc99e Initial load
duke
parents:
diff changeset
711 // thread but other threads have to block when they execute it. This
a61af66fc99e Initial load
duke
parents:
diff changeset
712 // is accomplished in compiled code by executing a test of the current
a61af66fc99e Initial load
duke
parents:
diff changeset
713 // thread against the initializing thread of the class. It's emitted
a61af66fc99e Initial load
duke
parents:
diff changeset
714 // as boilerplate in their stub which allows the patched code to be
a61af66fc99e Initial load
duke
parents:
diff changeset
715 // executed before it's copied back into the main body of the nmethod.
a61af66fc99e Initial load
duke
parents:
diff changeset
716 //
a61af66fc99e Initial load
duke
parents:
diff changeset
717 // being_init: get_thread(<tmp reg>
a61af66fc99e Initial load
duke
parents:
diff changeset
718 // cmpl [reg1 + <init_thread_offset>], <tmp reg>
a61af66fc99e Initial load
duke
parents:
diff changeset
719 // jne patch_stub
a61af66fc99e Initial load
duke
parents:
diff changeset
720 // movl [reg1 + <const>], reg (for field offsets) <or>
a61af66fc99e Initial load
duke
parents:
diff changeset
721 // movl reg, [reg1 + <const>] (for field offsets)
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // jmp continue
a61af66fc99e Initial load
duke
parents:
diff changeset
723 // <being_init offset> <bytes to copy> <bytes to skip>
a61af66fc99e Initial load
duke
parents:
diff changeset
724 // patch_stub: jmp Runtim1::patch_code (through a runtime stub)
a61af66fc99e Initial load
duke
parents:
diff changeset
725 // jmp patch_site
a61af66fc99e Initial load
duke
parents:
diff changeset
726 //
a61af66fc99e Initial load
duke
parents:
diff changeset
727 // If the class is being initialized the patch body is rewritten and
a61af66fc99e Initial load
duke
parents:
diff changeset
728 // the patch site is rewritten to jump to being_init, instead of
a61af66fc99e Initial load
duke
parents:
diff changeset
729 // patch_stub. Whenever this code is executed it checks the current
a61af66fc99e Initial load
duke
parents:
diff changeset
730 // thread against the intializing thread so other threads will enter
a61af66fc99e Initial load
duke
parents:
diff changeset
731 // the runtime and end up blocked waiting the class to finish
a61af66fc99e Initial load
duke
parents:
diff changeset
732 // initializing inside the calls to resolve_field below. The
a61af66fc99e Initial load
duke
parents:
diff changeset
733 // initializing class will continue on it's way. Once the class is
a61af66fc99e Initial load
duke
parents:
diff changeset
734 // fully_initialized, the intializing_thread of the class becomes
a61af66fc99e Initial load
duke
parents:
diff changeset
735 // NULL, so the next thread to execute this code will fail the test,
a61af66fc99e Initial load
duke
parents:
diff changeset
736 // call into patch_code and complete the patching process by copying
a61af66fc99e Initial load
duke
parents:
diff changeset
737 // the patch body back into the main part of the nmethod and resume
a61af66fc99e Initial load
duke
parents:
diff changeset
738 // executing.
a61af66fc99e Initial load
duke
parents:
diff changeset
739 //
a61af66fc99e Initial load
duke
parents:
diff changeset
740 //
a61af66fc99e Initial load
duke
parents:
diff changeset
741
a61af66fc99e Initial load
duke
parents:
diff changeset
742 JRT_ENTRY(void, Runtime1::patch_code(JavaThread* thread, Runtime1::StubID stub_id ))
a61af66fc99e Initial load
duke
parents:
diff changeset
743 NOT_PRODUCT(_patch_code_slowcase_cnt++;)
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745 ResourceMark rm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
746 RegisterMap reg_map(thread, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
747 frame runtime_frame = thread->last_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
748 frame caller_frame = runtime_frame.sender(&reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
749
a61af66fc99e Initial load
duke
parents:
diff changeset
750 // last java frame on stack
a61af66fc99e Initial load
duke
parents:
diff changeset
751 vframeStream vfst(thread, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
752 assert(!vfst.at_end(), "Java frame must exist");
a61af66fc99e Initial load
duke
parents:
diff changeset
753
a61af66fc99e Initial load
duke
parents:
diff changeset
754 methodHandle caller_method(THREAD, vfst.method());
a61af66fc99e Initial load
duke
parents:
diff changeset
755 // Note that caller_method->code() may not be same as caller_code because of OSR's
a61af66fc99e Initial load
duke
parents:
diff changeset
756 // Note also that in the presence of inlining it is not guaranteed
a61af66fc99e Initial load
duke
parents:
diff changeset
757 // that caller_method() == caller_code->method()
a61af66fc99e Initial load
duke
parents:
diff changeset
758
a61af66fc99e Initial load
duke
parents:
diff changeset
759
a61af66fc99e Initial load
duke
parents:
diff changeset
760 int bci = vfst.bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
761
a61af66fc99e Initial load
duke
parents:
diff changeset
762 Events::log("patch_code @ " INTPTR_FORMAT , caller_frame.pc());
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764 Bytecodes::Code code = Bytecode_at(caller_method->bcp_from(bci))->java_code();
a61af66fc99e Initial load
duke
parents:
diff changeset
765
a61af66fc99e Initial load
duke
parents:
diff changeset
766 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
767 // this is used by assertions in the access_field_patching_id
a61af66fc99e Initial load
duke
parents:
diff changeset
768 BasicType patch_field_type = T_ILLEGAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
769 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
770 bool deoptimize_for_volatile = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
771 int patch_field_offset = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
772 KlassHandle init_klass(THREAD, klassOop(NULL)); // klass needed by access_field_patching code
a61af66fc99e Initial load
duke
parents:
diff changeset
773 Handle load_klass(THREAD, NULL); // oop needed by load_klass_patching code
a61af66fc99e Initial load
duke
parents:
diff changeset
774 if (stub_id == Runtime1::access_field_patching_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
775
a61af66fc99e Initial load
duke
parents:
diff changeset
776 Bytecode_field* field_access = Bytecode_field_at(caller_method(), caller_method->bcp_from(bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
777 FieldAccessInfo result; // initialize class if needed
a61af66fc99e Initial load
duke
parents:
diff changeset
778 Bytecodes::Code code = field_access->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
779 constantPoolHandle constants(THREAD, caller_method->constants());
a61af66fc99e Initial load
duke
parents:
diff changeset
780 LinkResolver::resolve_field(result, constants, field_access->index(), Bytecodes::java_code(code), false, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
781 patch_field_offset = result.field_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
782
a61af66fc99e Initial load
duke
parents:
diff changeset
783 // If we're patching a field which is volatile then at compile it
a61af66fc99e Initial load
duke
parents:
diff changeset
784 // must not have been know to be volatile, so the generated code
a61af66fc99e Initial load
duke
parents:
diff changeset
785 // isn't correct for a volatile reference. The nmethod has to be
a61af66fc99e Initial load
duke
parents:
diff changeset
786 // deoptimized so that the code can be regenerated correctly.
a61af66fc99e Initial load
duke
parents:
diff changeset
787 // This check is only needed for access_field_patching since this
a61af66fc99e Initial load
duke
parents:
diff changeset
788 // is the path for patching field offsets. load_klass is only
a61af66fc99e Initial load
duke
parents:
diff changeset
789 // used for patching references to oops which don't need special
a61af66fc99e Initial load
duke
parents:
diff changeset
790 // handling in the volatile case.
a61af66fc99e Initial load
duke
parents:
diff changeset
791 deoptimize_for_volatile = result.access_flags().is_volatile();
a61af66fc99e Initial load
duke
parents:
diff changeset
792
a61af66fc99e Initial load
duke
parents:
diff changeset
793 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
794 patch_field_type = result.field_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
795 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
796 } else if (stub_id == Runtime1::load_klass_patching_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
797 oop k;
a61af66fc99e Initial load
duke
parents:
diff changeset
798 switch (code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
799 case Bytecodes::_putstatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
800 case Bytecodes::_getstatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
801 { klassOop klass = resolve_field_return_klass(caller_method, bci, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
802 // Save a reference to the class that has to be checked for initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
803 init_klass = KlassHandle(THREAD, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
804 k = klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
806 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
807 case Bytecodes::_new:
a61af66fc99e Initial load
duke
parents:
diff changeset
808 { Bytecode_new* bnew = Bytecode_new_at(caller_method->bcp_from(bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
809 k = caller_method->constants()->klass_at(bnew->index(), CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
810 }
a61af66fc99e Initial load
duke
parents:
diff changeset
811 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
812 case Bytecodes::_multianewarray:
a61af66fc99e Initial load
duke
parents:
diff changeset
813 { Bytecode_multianewarray* mna = Bytecode_multianewarray_at(caller_method->bcp_from(bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
814 k = caller_method->constants()->klass_at(mna->index(), CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
815 }
a61af66fc99e Initial load
duke
parents:
diff changeset
816 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
817 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
818 { Bytecode_instanceof* io = Bytecode_instanceof_at(caller_method->bcp_from(bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
819 k = caller_method->constants()->klass_at(io->index(), CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
820 }
a61af66fc99e Initial load
duke
parents:
diff changeset
821 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
822 case Bytecodes::_checkcast:
a61af66fc99e Initial load
duke
parents:
diff changeset
823 { Bytecode_checkcast* cc = Bytecode_checkcast_at(caller_method->bcp_from(bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
824 k = caller_method->constants()->klass_at(cc->index(), CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
825 }
a61af66fc99e Initial load
duke
parents:
diff changeset
826 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
827 case Bytecodes::_anewarray:
a61af66fc99e Initial load
duke
parents:
diff changeset
828 { Bytecode_anewarray* anew = Bytecode_anewarray_at(caller_method->bcp_from(bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
829 klassOop ek = caller_method->constants()->klass_at(anew->index(), CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
830 k = Klass::cast(ek)->array_klass(CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
831 }
a61af66fc99e Initial load
duke
parents:
diff changeset
832 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
833 case Bytecodes::_ldc:
a61af66fc99e Initial load
duke
parents:
diff changeset
834 case Bytecodes::_ldc_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
835 {
a61af66fc99e Initial load
duke
parents:
diff changeset
836 Bytecode_loadconstant* cc = Bytecode_loadconstant_at(caller_method(),
a61af66fc99e Initial load
duke
parents:
diff changeset
837 caller_method->bcp_from(bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
838 klassOop resolved = caller_method->constants()->klass_at(cc->index(), CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
839 // ldc wants the java mirror.
a61af66fc99e Initial load
duke
parents:
diff changeset
840 k = resolved->klass_part()->java_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
841 }
a61af66fc99e Initial load
duke
parents:
diff changeset
842 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
843 default: Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
844 }
a61af66fc99e Initial load
duke
parents:
diff changeset
845 // convert to handle
a61af66fc99e Initial load
duke
parents:
diff changeset
846 load_klass = Handle(THREAD, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
847 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
848 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
849 }
a61af66fc99e Initial load
duke
parents:
diff changeset
850
a61af66fc99e Initial load
duke
parents:
diff changeset
851 if (deoptimize_for_volatile) {
a61af66fc99e Initial load
duke
parents:
diff changeset
852 // At compile time we assumed the field wasn't volatile but after
a61af66fc99e Initial load
duke
parents:
diff changeset
853 // loading it turns out it was volatile so we have to throw the
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // compiled code out and let it be regenerated.
a61af66fc99e Initial load
duke
parents:
diff changeset
855 if (TracePatching) {
a61af66fc99e Initial load
duke
parents:
diff changeset
856 tty->print_cr("Deoptimizing for patching volatile field reference");
a61af66fc99e Initial load
duke
parents:
diff changeset
857 }
a61af66fc99e Initial load
duke
parents:
diff changeset
858 VM_DeoptimizeFrame deopt(thread, caller_frame.id());
a61af66fc99e Initial load
duke
parents:
diff changeset
859 VMThread::execute(&deopt);
a61af66fc99e Initial load
duke
parents:
diff changeset
860
a61af66fc99e Initial load
duke
parents:
diff changeset
861 // Return to the now deoptimized frame.
a61af66fc99e Initial load
duke
parents:
diff changeset
862 }
a61af66fc99e Initial load
duke
parents:
diff changeset
863
a61af66fc99e Initial load
duke
parents:
diff changeset
864
a61af66fc99e Initial load
duke
parents:
diff changeset
865 // Now copy code back
a61af66fc99e Initial load
duke
parents:
diff changeset
866
a61af66fc99e Initial load
duke
parents:
diff changeset
867 {
a61af66fc99e Initial load
duke
parents:
diff changeset
868 MutexLockerEx ml_patch (Patching_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
869 //
a61af66fc99e Initial load
duke
parents:
diff changeset
870 // Deoptimization may have happened while we waited for the lock.
a61af66fc99e Initial load
duke
parents:
diff changeset
871 // In that case we don't bother to do any patching we just return
a61af66fc99e Initial load
duke
parents:
diff changeset
872 // and let the deopt happen
a61af66fc99e Initial load
duke
parents:
diff changeset
873 if (!caller_is_deopted()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
874 NativeGeneralJump* jump = nativeGeneralJump_at(caller_frame.pc());
a61af66fc99e Initial load
duke
parents:
diff changeset
875 address instr_pc = jump->jump_destination();
a61af66fc99e Initial load
duke
parents:
diff changeset
876 NativeInstruction* ni = nativeInstruction_at(instr_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
877 if (ni->is_jump() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
878 // the jump has not been patched yet
a61af66fc99e Initial load
duke
parents:
diff changeset
879 // The jump destination is slow case and therefore not part of the stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
880 // (stubs are only for StaticCalls)
a61af66fc99e Initial load
duke
parents:
diff changeset
881
a61af66fc99e Initial load
duke
parents:
diff changeset
882 // format of buffer
a61af66fc99e Initial load
duke
parents:
diff changeset
883 // ....
a61af66fc99e Initial load
duke
parents:
diff changeset
884 // instr byte 0 <-- copy_buff
a61af66fc99e Initial load
duke
parents:
diff changeset
885 // instr byte 1
a61af66fc99e Initial load
duke
parents:
diff changeset
886 // ..
a61af66fc99e Initial load
duke
parents:
diff changeset
887 // instr byte n-1
a61af66fc99e Initial load
duke
parents:
diff changeset
888 // n
a61af66fc99e Initial load
duke
parents:
diff changeset
889 // .... <-- call destination
a61af66fc99e Initial load
duke
parents:
diff changeset
890
a61af66fc99e Initial load
duke
parents:
diff changeset
891 address stub_location = caller_frame.pc() + PatchingStub::patch_info_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
892 unsigned char* byte_count = (unsigned char*) (stub_location - 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
893 unsigned char* byte_skip = (unsigned char*) (stub_location - 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
894 unsigned char* being_initialized_entry_offset = (unsigned char*) (stub_location - 3);
a61af66fc99e Initial load
duke
parents:
diff changeset
895 address copy_buff = stub_location - *byte_skip - *byte_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
896 address being_initialized_entry = stub_location - *being_initialized_entry_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
897 if (TracePatching) {
a61af66fc99e Initial load
duke
parents:
diff changeset
898 tty->print_cr(" Patching %s at bci %d at address 0x%x (%s)", Bytecodes::name(code), bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
899 instr_pc, (stub_id == Runtime1::access_field_patching_id) ? "field" : "klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
900 nmethod* caller_code = CodeCache::find_nmethod(caller_frame.pc());
a61af66fc99e Initial load
duke
parents:
diff changeset
901 assert(caller_code != NULL, "nmethod not found");
a61af66fc99e Initial load
duke
parents:
diff changeset
902
a61af66fc99e Initial load
duke
parents:
diff changeset
903 // NOTE we use pc() not original_pc() because we already know they are
a61af66fc99e Initial load
duke
parents:
diff changeset
904 // identical otherwise we'd have never entered this block of code
a61af66fc99e Initial load
duke
parents:
diff changeset
905
a61af66fc99e Initial load
duke
parents:
diff changeset
906 OopMap* map = caller_code->oop_map_for_return_address(caller_frame.pc());
a61af66fc99e Initial load
duke
parents:
diff changeset
907 assert(map != NULL, "null check");
a61af66fc99e Initial load
duke
parents:
diff changeset
908 map->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
909 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
910
a61af66fc99e Initial load
duke
parents:
diff changeset
911 Disassembler::decode(copy_buff, copy_buff + *byte_count, tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
912 }
a61af66fc99e Initial load
duke
parents:
diff changeset
913 // depending on the code below, do_patch says whether to copy the patch body back into the nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
914 bool do_patch = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
915 if (stub_id == Runtime1::access_field_patching_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
916 // The offset may not be correct if the class was not loaded at code generation time.
a61af66fc99e Initial load
duke
parents:
diff changeset
917 // Set it now.
a61af66fc99e Initial load
duke
parents:
diff changeset
918 NativeMovRegMem* n_move = nativeMovRegMem_at(copy_buff);
a61af66fc99e Initial load
duke
parents:
diff changeset
919 assert(n_move->offset() == 0 || (n_move->offset() == 4 && (patch_field_type == T_DOUBLE || patch_field_type == T_LONG)), "illegal offset for type");
a61af66fc99e Initial load
duke
parents:
diff changeset
920 assert(patch_field_offset >= 0, "illegal offset");
a61af66fc99e Initial load
duke
parents:
diff changeset
921 n_move->add_offset_in_bytes(patch_field_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
922 } else if (stub_id == Runtime1::load_klass_patching_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
923 // If a getstatic or putstatic is referencing a klass which
a61af66fc99e Initial load
duke
parents:
diff changeset
924 // isn't fully initialized, the patch body isn't copied into
a61af66fc99e Initial load
duke
parents:
diff changeset
925 // place until initialization is complete. In this case the
a61af66fc99e Initial load
duke
parents:
diff changeset
926 // patch site is setup so that any threads besides the
a61af66fc99e Initial load
duke
parents:
diff changeset
927 // initializing thread are forced to come into the VM and
a61af66fc99e Initial load
duke
parents:
diff changeset
928 // block.
a61af66fc99e Initial load
duke
parents:
diff changeset
929 do_patch = (code != Bytecodes::_getstatic && code != Bytecodes::_putstatic) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
930 instanceKlass::cast(init_klass())->is_initialized();
a61af66fc99e Initial load
duke
parents:
diff changeset
931 NativeGeneralJump* jump = nativeGeneralJump_at(instr_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
932 if (jump->jump_destination() == being_initialized_entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
933 assert(do_patch == true, "initialization must be complete at this point");
a61af66fc99e Initial load
duke
parents:
diff changeset
934 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
935 // patch the instruction <move reg, klass>
a61af66fc99e Initial load
duke
parents:
diff changeset
936 NativeMovConstReg* n_copy = nativeMovConstReg_at(copy_buff);
a61af66fc99e Initial load
duke
parents:
diff changeset
937 assert(n_copy->data() == 0, "illegal init value");
a61af66fc99e Initial load
duke
parents:
diff changeset
938 assert(load_klass() != NULL, "klass not set");
a61af66fc99e Initial load
duke
parents:
diff changeset
939 n_copy->set_data((intx) (load_klass()));
a61af66fc99e Initial load
duke
parents:
diff changeset
940
a61af66fc99e Initial load
duke
parents:
diff changeset
941 if (TracePatching) {
a61af66fc99e Initial load
duke
parents:
diff changeset
942 Disassembler::decode(copy_buff, copy_buff + *byte_count, tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
943 }
a61af66fc99e Initial load
duke
parents:
diff changeset
944
a61af66fc99e Initial load
duke
parents:
diff changeset
945 #ifdef SPARC
a61af66fc99e Initial load
duke
parents:
diff changeset
946 // Update the oop location in the nmethod with the proper
a61af66fc99e Initial load
duke
parents:
diff changeset
947 // oop. When the code was generated, a NULL was stuffed
a61af66fc99e Initial load
duke
parents:
diff changeset
948 // in the oop table and that table needs to be update to
a61af66fc99e Initial load
duke
parents:
diff changeset
949 // have the right value. On intel the value is kept
a61af66fc99e Initial load
duke
parents:
diff changeset
950 // directly in the instruction instead of in the oop
a61af66fc99e Initial load
duke
parents:
diff changeset
951 // table, so set_data above effectively updated the value.
a61af66fc99e Initial load
duke
parents:
diff changeset
952 nmethod* nm = CodeCache::find_nmethod(instr_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
953 assert(nm != NULL, "invalid nmethod_pc");
a61af66fc99e Initial load
duke
parents:
diff changeset
954 RelocIterator oops(nm, copy_buff, copy_buff + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
955 bool found = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
956 while (oops.next() && !found) {
a61af66fc99e Initial load
duke
parents:
diff changeset
957 if (oops.type() == relocInfo::oop_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
958 oop_Relocation* r = oops.oop_reloc();
a61af66fc99e Initial load
duke
parents:
diff changeset
959 oop* oop_adr = r->oop_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
960 *oop_adr = load_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
961 r->fix_oop_relocation();
a61af66fc99e Initial load
duke
parents:
diff changeset
962 found = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
963 }
a61af66fc99e Initial load
duke
parents:
diff changeset
964 }
a61af66fc99e Initial load
duke
parents:
diff changeset
965 assert(found, "the oop must exist!");
a61af66fc99e Initial load
duke
parents:
diff changeset
966 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
967
a61af66fc99e Initial load
duke
parents:
diff changeset
968 }
a61af66fc99e Initial load
duke
parents:
diff changeset
969 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
970 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
971 }
a61af66fc99e Initial load
duke
parents:
diff changeset
972 if (do_patch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
973 // replace instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
974 // first replace the tail, then the call
a61af66fc99e Initial load
duke
parents:
diff changeset
975 for (int i = NativeCall::instruction_size; i < *byte_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
976 address ptr = copy_buff + i;
a61af66fc99e Initial load
duke
parents:
diff changeset
977 int a_byte = (*ptr) & 0xFF;
a61af66fc99e Initial load
duke
parents:
diff changeset
978 address dst = instr_pc + i;
a61af66fc99e Initial load
duke
parents:
diff changeset
979 *(unsigned char*)dst = (unsigned char) a_byte;
a61af66fc99e Initial load
duke
parents:
diff changeset
980 }
a61af66fc99e Initial load
duke
parents:
diff changeset
981 ICache::invalidate_range(instr_pc, *byte_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
982 NativeGeneralJump::replace_mt_safe(instr_pc, copy_buff);
a61af66fc99e Initial load
duke
parents:
diff changeset
983
a61af66fc99e Initial load
duke
parents:
diff changeset
984 if (stub_id == Runtime1::load_klass_patching_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
985 // update relocInfo to oop
a61af66fc99e Initial load
duke
parents:
diff changeset
986 nmethod* nm = CodeCache::find_nmethod(instr_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
987 assert(nm != NULL, "invalid nmethod_pc");
a61af66fc99e Initial load
duke
parents:
diff changeset
988
a61af66fc99e Initial load
duke
parents:
diff changeset
989 // The old patch site is now a move instruction so update
a61af66fc99e Initial load
duke
parents:
diff changeset
990 // the reloc info so that it will get updated during
a61af66fc99e Initial load
duke
parents:
diff changeset
991 // future GCs.
a61af66fc99e Initial load
duke
parents:
diff changeset
992 RelocIterator iter(nm, (address)instr_pc, (address)(instr_pc + 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
993 relocInfo::change_reloc_info_for_address(&iter, (address) instr_pc,
a61af66fc99e Initial load
duke
parents:
diff changeset
994 relocInfo::none, relocInfo::oop_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
995 #ifdef SPARC
a61af66fc99e Initial load
duke
parents:
diff changeset
996 // Sparc takes two relocations for an oop so update the second one.
a61af66fc99e Initial load
duke
parents:
diff changeset
997 address instr_pc2 = instr_pc + NativeMovConstReg::add_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
998 RelocIterator iter2(nm, instr_pc2, instr_pc2 + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
999 relocInfo::change_reloc_info_for_address(&iter2, (address) instr_pc2,
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 relocInfo::none, relocInfo::oop_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1003
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 ICache::invalidate_range(copy_buff, *byte_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 NativeGeneralJump::insert_unconditional(instr_pc, being_initialized_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1012
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 // Entry point for compiled code. We want to patch a nmethod.
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 // We don't do a normal VM transition here because we want to
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 // know after the patching is complete and any safepoint(s) are taken
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 // if the calling nmethod was deoptimized. We do this by calling a
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 // helper method which does the normal VM transition and when it
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 // completes we can check for deoptimization. This simplifies the
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 // assembly code in the cpu directories.
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 int Runtime1::move_klass_patching(JavaThread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 // NOTE: we are still in Java
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 Thread* THREAD = thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 debug_only(NoHandleMark nhm;)
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 // Enter VM mode
a61af66fc99e Initial load
duke
parents:
diff changeset
1030
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 ResetNoHandleMark rnhm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 patch_code(thread, load_klass_patching_id);
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 // Back in JAVA, use no oops DON'T safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
1035
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 // Return true if calling code is deoptimized
a61af66fc99e Initial load
duke
parents:
diff changeset
1037
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 return caller_is_deopted();
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1040
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 // Entry point for compiled code. We want to patch a nmethod.
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 // We don't do a normal VM transition here because we want to
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 // know after the patching is complete and any safepoint(s) are taken
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 // if the calling nmethod was deoptimized. We do this by calling a
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 // helper method which does the normal VM transition and when it
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 // completes we can check for deoptimization. This simplifies the
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 // assembly code in the cpu directories.
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1050
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 int Runtime1::access_field_patching(JavaThread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 // NOTE: we are still in Java
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 Thread* THREAD = thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 debug_only(NoHandleMark nhm;)
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 // Enter VM mode
a61af66fc99e Initial load
duke
parents:
diff changeset
1059
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 ResetNoHandleMark rnhm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 patch_code(thread, access_field_patching_id);
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 // Back in JAVA, use no oops DON'T safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
1064
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 // Return true if calling code is deoptimized
a61af66fc99e Initial load
duke
parents:
diff changeset
1066
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 return caller_is_deopted();
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1069
a61af66fc99e Initial load
duke
parents:
diff changeset
1070
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 JRT_LEAF(void, Runtime1::trace_block_entry(jint block_id))
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 // for now we just print out the block id
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 tty->print("%d ", block_id);
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1075
a61af66fc99e Initial load
duke
parents:
diff changeset
1076
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1077 // Array copy return codes.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1078 enum {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1079 ac_failed = -1, // arraycopy failed
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1080 ac_ok = 0 // arraycopy succeeded
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1081 };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1082
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1083
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1084 template <class T> int obj_arraycopy_work(oopDesc* src, T* src_addr,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1085 oopDesc* dst, T* dst_addr,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1086 int length) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1087
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1088 // For performance reasons, we assume we are using a card marking write
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1089 // barrier. The assert will fail if this is not the case.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1090 // Note that we use the non-virtual inlineable variant of write_ref_array.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1091 BarrierSet* bs = Universe::heap()->barrier_set();
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1092 assert(bs->has_write_ref_array_opt(),
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1093 "Barrier set must have ref array opt");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1094 if (src == dst) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1095 // same object, no check
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1096 Copy::conjoint_oops_atomic(src_addr, dst_addr, length);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1097 bs->write_ref_array(MemRegion((HeapWord*)dst_addr,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1098 (HeapWord*)(dst_addr + length)));
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1099 return ac_ok;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1100 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1101 klassOop bound = objArrayKlass::cast(dst->klass())->element_klass();
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1102 klassOop stype = objArrayKlass::cast(src->klass())->element_klass();
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1103 if (stype == bound || Klass::cast(stype)->is_subtype_of(bound)) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1104 // Elements are guaranteed to be subtypes, so no check necessary
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1105 Copy::conjoint_oops_atomic(src_addr, dst_addr, length);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1106 bs->write_ref_array(MemRegion((HeapWord*)dst_addr,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1107 (HeapWord*)(dst_addr + length)));
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1108 return ac_ok;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1109 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1110 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1111 return ac_failed;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1112 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1113
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 // fast and direct copy of arrays; returning -1, means that an exception may be thrown
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 // and we did not copy anything
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 JRT_LEAF(int, Runtime1::arraycopy(oopDesc* src, int src_pos, oopDesc* dst, int dst_pos, int length))
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 _generic_arraycopy_cnt++; // Slow-path oop array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1120
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 if (src == NULL || dst == NULL || src_pos < 0 || dst_pos < 0 || length < 0) return ac_failed;
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 if (!dst->is_array() || !src->is_array()) return ac_failed;
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 if ((unsigned int) arrayOop(src)->length() < (unsigned int)src_pos + (unsigned int)length) return ac_failed;
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 if ((unsigned int) arrayOop(dst)->length() < (unsigned int)dst_pos + (unsigned int)length) return ac_failed;
a61af66fc99e Initial load
duke
parents:
diff changeset
1125
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 if (length == 0) return ac_ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 if (src->is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 const klassOop klass_oop = src->klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 if (klass_oop != dst->klass()) return ac_failed;
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 typeArrayKlass* klass = typeArrayKlass::cast(klass_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 const int l2es = klass->log2_element_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 const int ihs = klass->array_header_in_bytes() / wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 char* src_addr = (char*) ((oopDesc**)src + ihs) + (src_pos << l2es);
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 char* dst_addr = (char*) ((oopDesc**)dst + ihs) + (dst_pos << l2es);
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 // Potential problem: memmove is not guaranteed to be word atomic
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 // Revisit in Merlin
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 memmove(dst_addr, src_addr, length << l2es);
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 return ac_ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 } else if (src->is_objArray() && dst->is_objArray()) {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1140 if (UseCompressedOops) { // will need for tiered
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1141 narrowOop *src_addr = objArrayOop(src)->obj_at_addr<narrowOop>(src_pos);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1142 narrowOop *dst_addr = objArrayOop(dst)->obj_at_addr<narrowOop>(dst_pos);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1143 return obj_arraycopy_work(src, src_addr, dst, dst_addr, length);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 } else {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1145 oop *src_addr = objArrayOop(src)->obj_at_addr<oop>(src_pos);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1146 oop *dst_addr = objArrayOop(dst)->obj_at_addr<oop>(dst_pos);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1147 return obj_arraycopy_work(src, src_addr, dst, dst_addr, length);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 return ac_failed;
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1152
a61af66fc99e Initial load
duke
parents:
diff changeset
1153
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 JRT_LEAF(void, Runtime1::primitive_arraycopy(HeapWord* src, HeapWord* dst, int length))
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 _primitive_arraycopy_cnt++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1158
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 if (length == 0) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 // Not guaranteed to be word atomic, but that doesn't matter
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 // for anything but an oop array, which is covered by oop_arraycopy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 Copy::conjoint_bytes(src, dst, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1164
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 JRT_LEAF(void, Runtime1::oop_arraycopy(HeapWord* src, HeapWord* dst, int num))
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 _oop_arraycopy_cnt++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1169
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 if (num == 0) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 Copy::conjoint_oops_atomic((oop*) src, (oop*) dst, num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 BarrierSet* bs = Universe::heap()->barrier_set();
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 bs->write_ref_array(MemRegion(dst, dst + num));
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1175
a61af66fc99e Initial load
duke
parents:
diff changeset
1176
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 void Runtime1::print_statistics() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 tty->print_cr("C1 Runtime statistics:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 tty->print_cr(" _resolve_invoke_virtual_cnt: %d", SharedRuntime::_resolve_virtual_ctr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 tty->print_cr(" _resolve_invoke_opt_virtual_cnt: %d", SharedRuntime::_resolve_opt_virtual_ctr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 tty->print_cr(" _resolve_invoke_static_cnt: %d", SharedRuntime::_resolve_static_ctr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 tty->print_cr(" _handle_wrong_method_cnt: %d", SharedRuntime::_wrong_method_ctr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 tty->print_cr(" _ic_miss_cnt: %d", SharedRuntime::_ic_miss_ctr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 tty->print_cr(" _generic_arraycopy_cnt: %d", _generic_arraycopy_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 tty->print_cr(" _primitive_arraycopy_cnt: %d", _primitive_arraycopy_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 tty->print_cr(" _oop_arraycopy_cnt: %d", _oop_arraycopy_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 tty->print_cr(" _arraycopy_slowcase_cnt: %d", _arraycopy_slowcase_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1189
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 tty->print_cr(" _new_type_array_slowcase_cnt: %d", _new_type_array_slowcase_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 tty->print_cr(" _new_object_array_slowcase_cnt: %d", _new_object_array_slowcase_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 tty->print_cr(" _new_instance_slowcase_cnt: %d", _new_instance_slowcase_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 tty->print_cr(" _new_multi_array_slowcase_cnt: %d", _new_multi_array_slowcase_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 tty->print_cr(" _monitorenter_slowcase_cnt: %d", _monitorenter_slowcase_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 tty->print_cr(" _monitorexit_slowcase_cnt: %d", _monitorexit_slowcase_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 tty->print_cr(" _patch_code_slowcase_cnt: %d", _patch_code_slowcase_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1197
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 tty->print_cr(" _throw_range_check_exception_count: %d:", _throw_range_check_exception_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 tty->print_cr(" _throw_index_exception_count: %d:", _throw_index_exception_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 tty->print_cr(" _throw_div0_exception_count: %d:", _throw_div0_exception_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 tty->print_cr(" _throw_null_pointer_exception_count: %d:", _throw_null_pointer_exception_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 tty->print_cr(" _throw_class_cast_exception_count: %d:", _throw_class_cast_exception_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 tty->print_cr(" _throw_incompatible_class_change_error_count: %d:", _throw_incompatible_class_change_error_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 tty->print_cr(" _throw_array_store_exception_count: %d:", _throw_array_store_exception_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 tty->print_cr(" _throw_count: %d:", _throw_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1206
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 SharedRuntime::print_ic_miss_histogram();
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 #endif // PRODUCT