src/cpu/x86/vm/interp_masm_x86_32.cpp

Tue, 21 Apr 2009 23:21:04 -0700

author
jrose
date
Tue, 21 Apr 2009 23:21:04 -0700
changeset 1161
be93aad57795
parent 1145
e5b0439ef4ae
child 1261
3f06f139ef53
permissions
-rw-r--r--

6655646: dynamic languages need dynamically linked call sites
Summary: invokedynamic instruction (JSR 292 RI)
Reviewed-by: twisti, never

duke@435 1 /*
xdono@1014 2 * Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 #include "incls/_precompiled.incl"
duke@435 26 #include "incls/_interp_masm_x86_32.cpp.incl"
duke@435 27
duke@435 28
duke@435 29 // Implementation of InterpreterMacroAssembler
duke@435 30 #ifdef CC_INTERP
duke@435 31 void InterpreterMacroAssembler::get_method(Register reg) {
never@739 32 movptr(reg, Address(rbp, -(sizeof(BytecodeInterpreter) + 2 * wordSize)));
never@739 33 movptr(reg, Address(reg, byte_offset_of(BytecodeInterpreter, _method)));
duke@435 34 }
duke@435 35 #endif // CC_INTERP
duke@435 36
duke@435 37
duke@435 38 #ifndef CC_INTERP
duke@435 39 void InterpreterMacroAssembler::call_VM_leaf_base(
duke@435 40 address entry_point,
duke@435 41 int number_of_arguments
duke@435 42 ) {
duke@435 43 // interpreter specific
duke@435 44 //
duke@435 45 // Note: No need to save/restore bcp & locals (rsi & rdi) pointer
duke@435 46 // since these are callee saved registers and no blocking/
duke@435 47 // GC can happen in leaf calls.
duke@435 48 // Further Note: DO NOT save/restore bcp/locals. If a caller has
duke@435 49 // already saved them so that it can use rsi/rdi as temporaries
duke@435 50 // then a save/restore here will DESTROY the copy the caller
duke@435 51 // saved! There used to be a save_bcp() that only happened in
duke@435 52 // the ASSERT path (no restore_bcp). Which caused bizarre failures
duke@435 53 // when jvm built with ASSERTs.
duke@435 54 #ifdef ASSERT
duke@435 55 { Label L;
never@739 56 cmpptr(Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize), (int32_t)NULL_WORD);
duke@435 57 jcc(Assembler::equal, L);
duke@435 58 stop("InterpreterMacroAssembler::call_VM_leaf_base: last_sp != NULL");
duke@435 59 bind(L);
duke@435 60 }
duke@435 61 #endif
duke@435 62 // super call
duke@435 63 MacroAssembler::call_VM_leaf_base(entry_point, number_of_arguments);
duke@435 64 // interpreter specific
duke@435 65
duke@435 66 // Used to ASSERT that rsi/rdi were equal to frame's bcp/locals
duke@435 67 // but since they may not have been saved (and we don't want to
duke@435 68 // save them here (see note above) the assert is invalid.
duke@435 69 }
duke@435 70
duke@435 71
duke@435 72 void InterpreterMacroAssembler::call_VM_base(
duke@435 73 Register oop_result,
duke@435 74 Register java_thread,
duke@435 75 Register last_java_sp,
duke@435 76 address entry_point,
duke@435 77 int number_of_arguments,
duke@435 78 bool check_exceptions
duke@435 79 ) {
duke@435 80 #ifdef ASSERT
duke@435 81 { Label L;
never@739 82 cmpptr(Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize), (int32_t)NULL_WORD);
duke@435 83 jcc(Assembler::equal, L);
duke@435 84 stop("InterpreterMacroAssembler::call_VM_base: last_sp != NULL");
duke@435 85 bind(L);
duke@435 86 }
duke@435 87 #endif /* ASSERT */
duke@435 88 // interpreter specific
duke@435 89 //
duke@435 90 // Note: Could avoid restoring locals ptr (callee saved) - however doesn't
duke@435 91 // really make a difference for these runtime calls, since they are
duke@435 92 // slow anyway. Btw., bcp must be saved/restored since it may change
duke@435 93 // due to GC.
duke@435 94 assert(java_thread == noreg , "not expecting a precomputed java thread");
duke@435 95 save_bcp();
duke@435 96 // super call
duke@435 97 MacroAssembler::call_VM_base(oop_result, java_thread, last_java_sp, entry_point, number_of_arguments, check_exceptions);
duke@435 98 // interpreter specific
duke@435 99 restore_bcp();
duke@435 100 restore_locals();
duke@435 101 }
duke@435 102
duke@435 103
duke@435 104 void InterpreterMacroAssembler::check_and_handle_popframe(Register java_thread) {
duke@435 105 if (JvmtiExport::can_pop_frame()) {
duke@435 106 Label L;
duke@435 107 // Initiate popframe handling only if it is not already being processed. If the flag
duke@435 108 // has the popframe_processing bit set, it means that this code is called *during* popframe
duke@435 109 // handling - we don't want to reenter.
duke@435 110 Register pop_cond = java_thread; // Not clear if any other register is available...
duke@435 111 movl(pop_cond, Address(java_thread, JavaThread::popframe_condition_offset()));
duke@435 112 testl(pop_cond, JavaThread::popframe_pending_bit);
duke@435 113 jcc(Assembler::zero, L);
duke@435 114 testl(pop_cond, JavaThread::popframe_processing_bit);
duke@435 115 jcc(Assembler::notZero, L);
duke@435 116 // Call Interpreter::remove_activation_preserving_args_entry() to get the
duke@435 117 // address of the same-named entrypoint in the generated interpreter code.
duke@435 118 call_VM_leaf(CAST_FROM_FN_PTR(address, Interpreter::remove_activation_preserving_args_entry));
duke@435 119 jmp(rax);
duke@435 120 bind(L);
duke@435 121 get_thread(java_thread);
duke@435 122 }
duke@435 123 }
duke@435 124
duke@435 125
duke@435 126 void InterpreterMacroAssembler::load_earlyret_value(TosState state) {
duke@435 127 get_thread(rcx);
duke@435 128 movl(rcx, Address(rcx, JavaThread::jvmti_thread_state_offset()));
duke@435 129 const Address tos_addr (rcx, JvmtiThreadState::earlyret_tos_offset());
duke@435 130 const Address oop_addr (rcx, JvmtiThreadState::earlyret_oop_offset());
duke@435 131 const Address val_addr (rcx, JvmtiThreadState::earlyret_value_offset());
duke@435 132 const Address val_addr1(rcx, JvmtiThreadState::earlyret_value_offset()
duke@435 133 + in_ByteSize(wordSize));
duke@435 134 switch (state) {
never@739 135 case atos: movptr(rax, oop_addr);
xlu@947 136 movptr(oop_addr, NULL_WORD);
duke@435 137 verify_oop(rax, state); break;
never@739 138 case ltos:
never@739 139 movl(rdx, val_addr1); // fall through
duke@435 140 case btos: // fall through
duke@435 141 case ctos: // fall through
duke@435 142 case stos: // fall through
duke@435 143 case itos: movl(rax, val_addr); break;
duke@435 144 case ftos: fld_s(val_addr); break;
duke@435 145 case dtos: fld_d(val_addr); break;
duke@435 146 case vtos: /* nothing to do */ break;
duke@435 147 default : ShouldNotReachHere();
duke@435 148 }
duke@435 149 // Clean up tos value in the thread object
never@739 150 movl(tos_addr, (int32_t) ilgl);
xlu@947 151 movptr(val_addr, NULL_WORD);
xlu@968 152 NOT_LP64(movptr(val_addr1, NULL_WORD));
duke@435 153 }
duke@435 154
duke@435 155
duke@435 156 void InterpreterMacroAssembler::check_and_handle_earlyret(Register java_thread) {
duke@435 157 if (JvmtiExport::can_force_early_return()) {
duke@435 158 Label L;
duke@435 159 Register tmp = java_thread;
never@739 160 movptr(tmp, Address(tmp, JavaThread::jvmti_thread_state_offset()));
never@739 161 testptr(tmp, tmp);
duke@435 162 jcc(Assembler::zero, L); // if (thread->jvmti_thread_state() == NULL) exit;
duke@435 163
duke@435 164 // Initiate earlyret handling only if it is not already being processed.
duke@435 165 // If the flag has the earlyret_processing bit set, it means that this code
duke@435 166 // is called *during* earlyret handling - we don't want to reenter.
duke@435 167 movl(tmp, Address(tmp, JvmtiThreadState::earlyret_state_offset()));
duke@435 168 cmpl(tmp, JvmtiThreadState::earlyret_pending);
duke@435 169 jcc(Assembler::notEqual, L);
duke@435 170
duke@435 171 // Call Interpreter::remove_activation_early_entry() to get the address of the
duke@435 172 // same-named entrypoint in the generated interpreter code.
duke@435 173 get_thread(java_thread);
never@739 174 movptr(tmp, Address(java_thread, JavaThread::jvmti_thread_state_offset()));
duke@435 175 pushl(Address(tmp, JvmtiThreadState::earlyret_tos_offset()));
duke@435 176 call_VM_leaf(CAST_FROM_FN_PTR(address, Interpreter::remove_activation_early_entry), 1);
duke@435 177 jmp(rax);
duke@435 178 bind(L);
duke@435 179 get_thread(java_thread);
duke@435 180 }
duke@435 181 }
duke@435 182
duke@435 183
duke@435 184 void InterpreterMacroAssembler::get_unsigned_2_byte_index_at_bcp(Register reg, int bcp_offset) {
duke@435 185 assert(bcp_offset >= 0, "bcp is still pointing to start of bytecode");
duke@435 186 movl(reg, Address(rsi, bcp_offset));
never@739 187 bswapl(reg);
duke@435 188 shrl(reg, 16);
duke@435 189 }
duke@435 190
duke@435 191
jrose@1161 192 void InterpreterMacroAssembler::get_cache_index_at_bcp(Register reg, int bcp_offset, bool giant_index) {
duke@435 193 assert(bcp_offset > 0, "bcp is still pointing to start of bytecode");
jrose@1161 194 if (!giant_index) {
jrose@1161 195 load_unsigned_short(reg, Address(rsi, bcp_offset));
jrose@1161 196 } else {
jrose@1161 197 assert(EnableInvokeDynamic, "giant index used only for EnableInvokeDynamic");
jrose@1161 198 movl(reg, Address(rsi, bcp_offset));
jrose@1161 199 assert(constantPoolCacheOopDesc::decode_secondary_index(~123) == 123, "else change next line");
jrose@1161 200 notl(reg); // convert to plain index
jrose@1161 201 }
jrose@1161 202 }
jrose@1161 203
jrose@1161 204
jrose@1161 205 void InterpreterMacroAssembler::get_cache_and_index_at_bcp(Register cache, Register index,
jrose@1161 206 int bcp_offset, bool giant_index) {
duke@435 207 assert(cache != index, "must use different registers");
jrose@1161 208 get_cache_index_at_bcp(index, bcp_offset, giant_index);
never@739 209 movptr(cache, Address(rbp, frame::interpreter_frame_cache_offset * wordSize));
duke@435 210 assert(sizeof(ConstantPoolCacheEntry) == 4*wordSize, "adjust code below");
never@739 211 shlptr(index, 2); // convert from field index to ConstantPoolCacheEntry index
duke@435 212 }
duke@435 213
duke@435 214
jrose@1161 215 void InterpreterMacroAssembler::get_cache_entry_pointer_at_bcp(Register cache, Register tmp,
jrose@1161 216 int bcp_offset, bool giant_index) {
duke@435 217 assert(cache != tmp, "must use different register");
jrose@1161 218 get_cache_index_at_bcp(tmp, bcp_offset, giant_index);
duke@435 219 assert(sizeof(ConstantPoolCacheEntry) == 4*wordSize, "adjust code below");
duke@435 220 // convert from field index to ConstantPoolCacheEntry index
duke@435 221 // and from word offset to byte offset
duke@435 222 shll(tmp, 2 + LogBytesPerWord);
never@739 223 movptr(cache, Address(rbp, frame::interpreter_frame_cache_offset * wordSize));
duke@435 224 // skip past the header
never@739 225 addptr(cache, in_bytes(constantPoolCacheOopDesc::base_offset()));
never@739 226 addptr(cache, tmp); // construct pointer to cache entry
duke@435 227 }
duke@435 228
duke@435 229
duke@435 230 // Generate a subtype check: branch to ok_is_subtype if sub_klass is
duke@435 231 // a subtype of super_klass. EAX holds the super_klass. Blows ECX.
duke@435 232 // Resets EDI to locals. Register sub_klass cannot be any of the above.
duke@435 233 void InterpreterMacroAssembler::gen_subtype_check( Register Rsub_klass, Label &ok_is_subtype ) {
duke@435 234 assert( Rsub_klass != rax, "rax, holds superklass" );
jrose@1079 235 assert( Rsub_klass != rcx, "used as a temp" );
jrose@1079 236 assert( Rsub_klass != rdi, "used as a temp, restored from locals" );
duke@435 237
duke@435 238 // Profile the not-null value's klass.
jrose@1079 239 profile_typecheck(rcx, Rsub_klass, rdi); // blows rcx, reloads rdi
duke@435 240
jrose@1079 241 // Do the check.
jrose@1079 242 check_klass_subtype(Rsub_klass, rax, rcx, ok_is_subtype); // blows rcx
duke@435 243
jrose@1079 244 // Profile the failure of the check.
duke@435 245 profile_typecheck_failed(rcx); // blows rcx
duke@435 246 }
duke@435 247
duke@435 248 void InterpreterMacroAssembler::f2ieee() {
duke@435 249 if (IEEEPrecision) {
duke@435 250 fstp_s(Address(rsp, 0));
duke@435 251 fld_s(Address(rsp, 0));
duke@435 252 }
duke@435 253 }
duke@435 254
duke@435 255
duke@435 256 void InterpreterMacroAssembler::d2ieee() {
duke@435 257 if (IEEEPrecision) {
duke@435 258 fstp_d(Address(rsp, 0));
duke@435 259 fld_d(Address(rsp, 0));
duke@435 260 }
duke@435 261 }
duke@435 262
duke@435 263 // Java Expression Stack
duke@435 264
duke@435 265 #ifdef ASSERT
duke@435 266 void InterpreterMacroAssembler::verify_stack_tag(frame::Tag t) {
duke@435 267 if (TaggedStackInterpreter) {
duke@435 268 Label okay;
never@739 269 cmpptr(Address(rsp, wordSize), (int32_t)t);
duke@435 270 jcc(Assembler::equal, okay);
duke@435 271 // Also compare if the stack value is zero, then the tag might
duke@435 272 // not have been set coming from deopt.
never@739 273 cmpptr(Address(rsp, 0), 0);
duke@435 274 jcc(Assembler::equal, okay);
duke@435 275 stop("Java Expression stack tag value is bad");
duke@435 276 bind(okay);
duke@435 277 }
duke@435 278 }
duke@435 279 #endif // ASSERT
duke@435 280
duke@435 281 void InterpreterMacroAssembler::pop_ptr(Register r) {
duke@435 282 debug_only(verify_stack_tag(frame::TagReference));
never@739 283 pop(r);
never@739 284 if (TaggedStackInterpreter) addptr(rsp, 1 * wordSize);
duke@435 285 }
duke@435 286
duke@435 287 void InterpreterMacroAssembler::pop_ptr(Register r, Register tag) {
never@739 288 pop(r);
duke@435 289 // Tag may not be reference for jsr, can be returnAddress
never@739 290 if (TaggedStackInterpreter) pop(tag);
duke@435 291 }
duke@435 292
duke@435 293 void InterpreterMacroAssembler::pop_i(Register r) {
duke@435 294 debug_only(verify_stack_tag(frame::TagValue));
never@739 295 pop(r);
never@739 296 if (TaggedStackInterpreter) addptr(rsp, 1 * wordSize);
duke@435 297 }
duke@435 298
duke@435 299 void InterpreterMacroAssembler::pop_l(Register lo, Register hi) {
duke@435 300 debug_only(verify_stack_tag(frame::TagValue));
never@739 301 pop(lo);
never@739 302 if (TaggedStackInterpreter) addptr(rsp, 1 * wordSize);
duke@435 303 debug_only(verify_stack_tag(frame::TagValue));
never@739 304 pop(hi);
never@739 305 if (TaggedStackInterpreter) addptr(rsp, 1 * wordSize);
duke@435 306 }
duke@435 307
duke@435 308 void InterpreterMacroAssembler::pop_f() {
duke@435 309 debug_only(verify_stack_tag(frame::TagValue));
duke@435 310 fld_s(Address(rsp, 0));
never@739 311 addptr(rsp, 1 * wordSize);
never@739 312 if (TaggedStackInterpreter) addptr(rsp, 1 * wordSize);
duke@435 313 }
duke@435 314
duke@435 315 void InterpreterMacroAssembler::pop_d() {
duke@435 316 // Write double to stack contiguously and load into ST0
duke@435 317 pop_dtos_to_rsp();
duke@435 318 fld_d(Address(rsp, 0));
never@739 319 addptr(rsp, 2 * wordSize);
duke@435 320 }
duke@435 321
duke@435 322
duke@435 323 // Pop the top of the java expression stack to execution stack (which
duke@435 324 // happens to be the same place).
duke@435 325 void InterpreterMacroAssembler::pop_dtos_to_rsp() {
duke@435 326 if (TaggedStackInterpreter) {
duke@435 327 // Pop double value into scratch registers
duke@435 328 debug_only(verify_stack_tag(frame::TagValue));
never@739 329 pop(rax);
never@739 330 addptr(rsp, 1* wordSize);
duke@435 331 debug_only(verify_stack_tag(frame::TagValue));
never@739 332 pop(rdx);
never@739 333 addptr(rsp, 1* wordSize);
never@739 334 push(rdx);
never@739 335 push(rax);
duke@435 336 }
duke@435 337 }
duke@435 338
duke@435 339 void InterpreterMacroAssembler::pop_ftos_to_rsp() {
duke@435 340 if (TaggedStackInterpreter) {
duke@435 341 debug_only(verify_stack_tag(frame::TagValue));
never@739 342 pop(rax);
never@739 343 addptr(rsp, 1 * wordSize);
never@739 344 push(rax); // ftos is at rsp
duke@435 345 }
duke@435 346 }
duke@435 347
duke@435 348 void InterpreterMacroAssembler::pop(TosState state) {
duke@435 349 switch (state) {
duke@435 350 case atos: pop_ptr(rax); break;
duke@435 351 case btos: // fall through
duke@435 352 case ctos: // fall through
duke@435 353 case stos: // fall through
duke@435 354 case itos: pop_i(rax); break;
duke@435 355 case ltos: pop_l(rax, rdx); break;
duke@435 356 case ftos: pop_f(); break;
duke@435 357 case dtos: pop_d(); break;
duke@435 358 case vtos: /* nothing to do */ break;
duke@435 359 default : ShouldNotReachHere();
duke@435 360 }
duke@435 361 verify_oop(rax, state);
duke@435 362 }
duke@435 363
duke@435 364 void InterpreterMacroAssembler::push_ptr(Register r) {
never@739 365 if (TaggedStackInterpreter) push(frame::TagReference);
never@739 366 push(r);
duke@435 367 }
duke@435 368
duke@435 369 void InterpreterMacroAssembler::push_ptr(Register r, Register tag) {
never@739 370 if (TaggedStackInterpreter) push(tag); // tag first
never@739 371 push(r);
duke@435 372 }
duke@435 373
duke@435 374 void InterpreterMacroAssembler::push_i(Register r) {
never@739 375 if (TaggedStackInterpreter) push(frame::TagValue);
never@739 376 push(r);
duke@435 377 }
duke@435 378
duke@435 379 void InterpreterMacroAssembler::push_l(Register lo, Register hi) {
never@739 380 if (TaggedStackInterpreter) push(frame::TagValue);
never@739 381 push(hi);
never@739 382 if (TaggedStackInterpreter) push(frame::TagValue);
never@739 383 push(lo);
duke@435 384 }
duke@435 385
duke@435 386 void InterpreterMacroAssembler::push_f() {
never@739 387 if (TaggedStackInterpreter) push(frame::TagValue);
duke@435 388 // Do not schedule for no AGI! Never write beyond rsp!
never@739 389 subptr(rsp, 1 * wordSize);
duke@435 390 fstp_s(Address(rsp, 0));
duke@435 391 }
duke@435 392
duke@435 393 void InterpreterMacroAssembler::push_d(Register r) {
duke@435 394 if (TaggedStackInterpreter) {
duke@435 395 // Double values are stored as:
duke@435 396 // tag
duke@435 397 // high
duke@435 398 // tag
duke@435 399 // low
never@739 400 push(frame::TagValue);
never@739 401 subptr(rsp, 3 * wordSize);
duke@435 402 fstp_d(Address(rsp, 0));
duke@435 403 // move high word up to slot n-1
duke@435 404 movl(r, Address(rsp, 1*wordSize));
duke@435 405 movl(Address(rsp, 2*wordSize), r);
duke@435 406 // move tag
duke@435 407 movl(Address(rsp, 1*wordSize), frame::TagValue);
duke@435 408 } else {
duke@435 409 // Do not schedule for no AGI! Never write beyond rsp!
never@739 410 subptr(rsp, 2 * wordSize);
duke@435 411 fstp_d(Address(rsp, 0));
duke@435 412 }
duke@435 413 }
duke@435 414
duke@435 415
duke@435 416 void InterpreterMacroAssembler::push(TosState state) {
duke@435 417 verify_oop(rax, state);
duke@435 418 switch (state) {
duke@435 419 case atos: push_ptr(rax); break;
duke@435 420 case btos: // fall through
duke@435 421 case ctos: // fall through
duke@435 422 case stos: // fall through
duke@435 423 case itos: push_i(rax); break;
duke@435 424 case ltos: push_l(rax, rdx); break;
duke@435 425 case ftos: push_f(); break;
duke@435 426 case dtos: push_d(rax); break;
duke@435 427 case vtos: /* nothing to do */ break;
duke@435 428 default : ShouldNotReachHere();
duke@435 429 }
duke@435 430 }
duke@435 431
duke@435 432
duke@435 433 // Tagged stack helpers for swap and dup
duke@435 434 void InterpreterMacroAssembler::load_ptr_and_tag(int n, Register val,
duke@435 435 Register tag) {
never@739 436 movptr(val, Address(rsp, Interpreter::expr_offset_in_bytes(n)));
duke@435 437 if (TaggedStackInterpreter) {
never@739 438 movptr(tag, Address(rsp, Interpreter::expr_tag_offset_in_bytes(n)));
duke@435 439 }
duke@435 440 }
duke@435 441
duke@435 442 void InterpreterMacroAssembler::store_ptr_and_tag(int n, Register val,
duke@435 443 Register tag) {
never@739 444 movptr(Address(rsp, Interpreter::expr_offset_in_bytes(n)), val);
duke@435 445 if (TaggedStackInterpreter) {
never@739 446 movptr(Address(rsp, Interpreter::expr_tag_offset_in_bytes(n)), tag);
duke@435 447 }
duke@435 448 }
duke@435 449
duke@435 450
duke@435 451 // Tagged local support
duke@435 452 void InterpreterMacroAssembler::tag_local(frame::Tag tag, int n) {
duke@435 453 if (TaggedStackInterpreter) {
duke@435 454 if (tag == frame::TagCategory2) {
never@739 455 movptr(Address(rdi, Interpreter::local_tag_offset_in_bytes(n+1)), (int32_t)frame::TagValue);
never@739 456 movptr(Address(rdi, Interpreter::local_tag_offset_in_bytes(n)), (int32_t)frame::TagValue);
duke@435 457 } else {
never@739 458 movptr(Address(rdi, Interpreter::local_tag_offset_in_bytes(n)), (int32_t)tag);
duke@435 459 }
duke@435 460 }
duke@435 461 }
duke@435 462
duke@435 463 void InterpreterMacroAssembler::tag_local(frame::Tag tag, Register idx) {
duke@435 464 if (TaggedStackInterpreter) {
duke@435 465 if (tag == frame::TagCategory2) {
never@739 466 movptr(Address(rdi, idx, Interpreter::stackElementScale(),
never@739 467 Interpreter::local_tag_offset_in_bytes(1)), (int32_t)frame::TagValue);
never@739 468 movptr(Address(rdi, idx, Interpreter::stackElementScale(),
never@739 469 Interpreter::local_tag_offset_in_bytes(0)), (int32_t)frame::TagValue);
duke@435 470 } else {
never@739 471 movptr(Address(rdi, idx, Interpreter::stackElementScale(),
never@739 472 Interpreter::local_tag_offset_in_bytes(0)), (int32_t)tag);
duke@435 473 }
duke@435 474 }
duke@435 475 }
duke@435 476
duke@435 477 void InterpreterMacroAssembler::tag_local(Register tag, Register idx) {
duke@435 478 if (TaggedStackInterpreter) {
duke@435 479 // can only be TagValue or TagReference
never@739 480 movptr(Address(rdi, idx, Interpreter::stackElementScale(),
duke@435 481 Interpreter::local_tag_offset_in_bytes(0)), tag);
duke@435 482 }
duke@435 483 }
duke@435 484
duke@435 485
duke@435 486 void InterpreterMacroAssembler::tag_local(Register tag, int n) {
duke@435 487 if (TaggedStackInterpreter) {
duke@435 488 // can only be TagValue or TagReference
never@739 489 movptr(Address(rdi, Interpreter::local_tag_offset_in_bytes(n)), tag);
duke@435 490 }
duke@435 491 }
duke@435 492
duke@435 493 #ifdef ASSERT
duke@435 494 void InterpreterMacroAssembler::verify_local_tag(frame::Tag tag, int n) {
duke@435 495 if (TaggedStackInterpreter) {
duke@435 496 frame::Tag t = tag;
duke@435 497 if (tag == frame::TagCategory2) {
duke@435 498 Label nbl;
duke@435 499 t = frame::TagValue; // change to what is stored in locals
never@739 500 cmpptr(Address(rdi, Interpreter::local_tag_offset_in_bytes(n+1)), (int32_t)t);
duke@435 501 jcc(Assembler::equal, nbl);
duke@435 502 stop("Local tag is bad for long/double");
duke@435 503 bind(nbl);
duke@435 504 }
duke@435 505 Label notBad;
never@739 506 cmpptr(Address(rdi, Interpreter::local_tag_offset_in_bytes(n)), (int32_t)t);
duke@435 507 jcc(Assembler::equal, notBad);
duke@435 508 // Also compare if the local value is zero, then the tag might
duke@435 509 // not have been set coming from deopt.
never@739 510 cmpptr(Address(rdi, Interpreter::local_offset_in_bytes(n)), 0);
duke@435 511 jcc(Assembler::equal, notBad);
duke@435 512 stop("Local tag is bad");
duke@435 513 bind(notBad);
duke@435 514 }
duke@435 515 }
duke@435 516
duke@435 517 void InterpreterMacroAssembler::verify_local_tag(frame::Tag tag, Register idx) {
duke@435 518 if (TaggedStackInterpreter) {
duke@435 519 frame::Tag t = tag;
duke@435 520 if (tag == frame::TagCategory2) {
duke@435 521 Label nbl;
duke@435 522 t = frame::TagValue; // change to what is stored in locals
never@739 523 cmpptr(Address(rdi, idx, Interpreter::stackElementScale(),
never@739 524 Interpreter::local_tag_offset_in_bytes(1)), (int32_t)t);
duke@435 525 jcc(Assembler::equal, nbl);
duke@435 526 stop("Local tag is bad for long/double");
duke@435 527 bind(nbl);
duke@435 528 }
duke@435 529 Label notBad;
duke@435 530 cmpl(Address(rdi, idx, Interpreter::stackElementScale(),
never@739 531 Interpreter::local_tag_offset_in_bytes(0)), (int32_t)t);
duke@435 532 jcc(Assembler::equal, notBad);
duke@435 533 // Also compare if the local value is zero, then the tag might
duke@435 534 // not have been set coming from deopt.
never@739 535 cmpptr(Address(rdi, idx, Interpreter::stackElementScale(),
duke@435 536 Interpreter::local_offset_in_bytes(0)), 0);
duke@435 537 jcc(Assembler::equal, notBad);
duke@435 538 stop("Local tag is bad");
duke@435 539 bind(notBad);
duke@435 540
duke@435 541 }
duke@435 542 }
duke@435 543 #endif // ASSERT
duke@435 544
duke@435 545 void InterpreterMacroAssembler::super_call_VM_leaf(address entry_point) {
duke@435 546 MacroAssembler::call_VM_leaf_base(entry_point, 0);
duke@435 547 }
duke@435 548
duke@435 549
duke@435 550 void InterpreterMacroAssembler::super_call_VM_leaf(address entry_point, Register arg_1) {
never@739 551 push(arg_1);
duke@435 552 MacroAssembler::call_VM_leaf_base(entry_point, 1);
duke@435 553 }
duke@435 554
duke@435 555
duke@435 556 void InterpreterMacroAssembler::super_call_VM_leaf(address entry_point, Register arg_1, Register arg_2) {
never@739 557 push(arg_2);
never@739 558 push(arg_1);
duke@435 559 MacroAssembler::call_VM_leaf_base(entry_point, 2);
duke@435 560 }
duke@435 561
duke@435 562
duke@435 563 void InterpreterMacroAssembler::super_call_VM_leaf(address entry_point, Register arg_1, Register arg_2, Register arg_3) {
never@739 564 push(arg_3);
never@739 565 push(arg_2);
never@739 566 push(arg_1);
duke@435 567 MacroAssembler::call_VM_leaf_base(entry_point, 3);
duke@435 568 }
duke@435 569
duke@435 570
jrose@1145 571 void InterpreterMacroAssembler::prepare_to_jump_from_interpreted() {
duke@435 572 // set sender sp
never@739 573 lea(rsi, Address(rsp, wordSize));
duke@435 574 // record last_sp
never@739 575 movptr(Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize), rsi);
jrose@1145 576 }
jrose@1145 577
jrose@1145 578
jrose@1145 579 // Jump to from_interpreted entry of a call unless single stepping is possible
jrose@1145 580 // in this thread in which case we must call the i2i entry
jrose@1145 581 void InterpreterMacroAssembler::jump_from_interpreted(Register method, Register temp) {
jrose@1145 582 prepare_to_jump_from_interpreted();
duke@435 583
duke@435 584 if (JvmtiExport::can_post_interpreter_events()) {
duke@435 585 Label run_compiled_code;
duke@435 586 // JVMTI events, such as single-stepping, are implemented partly by avoiding running
duke@435 587 // compiled code in threads for which the event is enabled. Check here for
duke@435 588 // interp_only_mode if these events CAN be enabled.
duke@435 589 get_thread(temp);
duke@435 590 // interp_only is an int, on little endian it is sufficient to test the byte only
duke@435 591 // Is a cmpl faster (ce
duke@435 592 cmpb(Address(temp, JavaThread::interp_only_mode_offset()), 0);
duke@435 593 jcc(Assembler::zero, run_compiled_code);
duke@435 594 jmp(Address(method, methodOopDesc::interpreter_entry_offset()));
duke@435 595 bind(run_compiled_code);
duke@435 596 }
duke@435 597
duke@435 598 jmp(Address(method, methodOopDesc::from_interpreted_offset()));
duke@435 599
duke@435 600 }
duke@435 601
duke@435 602
duke@435 603 // The following two routines provide a hook so that an implementation
duke@435 604 // can schedule the dispatch in two parts. Intel does not do this.
duke@435 605 void InterpreterMacroAssembler::dispatch_prolog(TosState state, int step) {
duke@435 606 // Nothing Intel-specific to be done here.
duke@435 607 }
duke@435 608
duke@435 609 void InterpreterMacroAssembler::dispatch_epilog(TosState state, int step) {
duke@435 610 dispatch_next(state, step);
duke@435 611 }
duke@435 612
duke@435 613 void InterpreterMacroAssembler::dispatch_base(TosState state, address* table,
duke@435 614 bool verifyoop) {
duke@435 615 verify_FPU(1, state);
duke@435 616 if (VerifyActivationFrameSize) {
duke@435 617 Label L;
never@739 618 mov(rcx, rbp);
never@739 619 subptr(rcx, rsp);
duke@435 620 int min_frame_size = (frame::link_offset - frame::interpreter_frame_initial_sp_offset) * wordSize;
never@739 621 cmpptr(rcx, min_frame_size);
duke@435 622 jcc(Assembler::greaterEqual, L);
duke@435 623 stop("broken stack frame");
duke@435 624 bind(L);
duke@435 625 }
duke@435 626 if (verifyoop) verify_oop(rax, state);
never@739 627 Address index(noreg, rbx, Address::times_ptr);
duke@435 628 ExternalAddress tbl((address)table);
duke@435 629 ArrayAddress dispatch(tbl, index);
duke@435 630 jump(dispatch);
duke@435 631 }
duke@435 632
duke@435 633
duke@435 634 void InterpreterMacroAssembler::dispatch_only(TosState state) {
duke@435 635 dispatch_base(state, Interpreter::dispatch_table(state));
duke@435 636 }
duke@435 637
duke@435 638
duke@435 639 void InterpreterMacroAssembler::dispatch_only_normal(TosState state) {
duke@435 640 dispatch_base(state, Interpreter::normal_table(state));
duke@435 641 }
duke@435 642
duke@435 643 void InterpreterMacroAssembler::dispatch_only_noverify(TosState state) {
duke@435 644 dispatch_base(state, Interpreter::normal_table(state), false);
duke@435 645 }
duke@435 646
duke@435 647
duke@435 648 void InterpreterMacroAssembler::dispatch_next(TosState state, int step) {
duke@435 649 // load next bytecode (load before advancing rsi to prevent AGI)
duke@435 650 load_unsigned_byte(rbx, Address(rsi, step));
duke@435 651 // advance rsi
duke@435 652 increment(rsi, step);
duke@435 653 dispatch_base(state, Interpreter::dispatch_table(state));
duke@435 654 }
duke@435 655
duke@435 656
duke@435 657 void InterpreterMacroAssembler::dispatch_via(TosState state, address* table) {
duke@435 658 // load current bytecode
duke@435 659 load_unsigned_byte(rbx, Address(rsi, 0));
duke@435 660 dispatch_base(state, table);
duke@435 661 }
duke@435 662
duke@435 663 // remove activation
duke@435 664 //
duke@435 665 // Unlock the receiver if this is a synchronized method.
duke@435 666 // Unlock any Java monitors from syncronized blocks.
duke@435 667 // Remove the activation from the stack.
duke@435 668 //
duke@435 669 // If there are locked Java monitors
duke@435 670 // If throw_monitor_exception
duke@435 671 // throws IllegalMonitorStateException
duke@435 672 // Else if install_monitor_exception
duke@435 673 // installs IllegalMonitorStateException
duke@435 674 // Else
duke@435 675 // no error processing
duke@435 676 void InterpreterMacroAssembler::remove_activation(TosState state, Register ret_addr,
duke@435 677 bool throw_monitor_exception,
duke@435 678 bool install_monitor_exception,
duke@435 679 bool notify_jvmdi) {
duke@435 680 // Note: Registers rax, rdx and FPU ST(0) may be in use for the result
duke@435 681 // check if synchronized method
duke@435 682 Label unlocked, unlock, no_unlock;
duke@435 683
duke@435 684 get_thread(rcx);
duke@435 685 const Address do_not_unlock_if_synchronized(rcx,
duke@435 686 in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()));
duke@435 687
duke@435 688 movbool(rbx, do_not_unlock_if_synchronized);
never@739 689 mov(rdi,rbx);
duke@435 690 movbool(do_not_unlock_if_synchronized, false); // reset the flag
duke@435 691
never@739 692 movptr(rbx, Address(rbp, frame::interpreter_frame_method_offset * wordSize)); // get method access flags
duke@435 693 movl(rcx, Address(rbx, methodOopDesc::access_flags_offset()));
duke@435 694
duke@435 695 testl(rcx, JVM_ACC_SYNCHRONIZED);
duke@435 696 jcc(Assembler::zero, unlocked);
duke@435 697
duke@435 698 // Don't unlock anything if the _do_not_unlock_if_synchronized flag
duke@435 699 // is set.
never@739 700 mov(rcx,rdi);
duke@435 701 testbool(rcx);
duke@435 702 jcc(Assembler::notZero, no_unlock);
duke@435 703
duke@435 704 // unlock monitor
duke@435 705 push(state); // save result
duke@435 706
duke@435 707 // BasicObjectLock will be first in list, since this is a synchronized method. However, need
duke@435 708 // to check that the object has not been unlocked by an explicit monitorexit bytecode.
duke@435 709 const Address monitor(rbp, frame::interpreter_frame_initial_sp_offset * wordSize - (int)sizeof(BasicObjectLock));
never@739 710 lea (rdx, monitor); // address of first monitor
duke@435 711
never@739 712 movptr (rax, Address(rdx, BasicObjectLock::obj_offset_in_bytes()));
never@739 713 testptr(rax, rax);
never@739 714 jcc (Assembler::notZero, unlock);
duke@435 715
duke@435 716 pop(state);
duke@435 717 if (throw_monitor_exception) {
duke@435 718 empty_FPU_stack(); // remove possible return value from FPU-stack, otherwise stack could overflow
duke@435 719
duke@435 720 // Entry already unlocked, need to throw exception
duke@435 721 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_illegal_monitor_state_exception));
duke@435 722 should_not_reach_here();
duke@435 723 } else {
duke@435 724 // Monitor already unlocked during a stack unroll.
duke@435 725 // If requested, install an illegal_monitor_state_exception.
duke@435 726 // Continue with stack unrolling.
duke@435 727 if (install_monitor_exception) {
duke@435 728 empty_FPU_stack(); // remove possible return value from FPU-stack, otherwise stack could overflow
duke@435 729 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::new_illegal_monitor_state_exception));
duke@435 730 }
duke@435 731 jmp(unlocked);
duke@435 732 }
duke@435 733
duke@435 734 bind(unlock);
duke@435 735 unlock_object(rdx);
duke@435 736 pop(state);
duke@435 737
duke@435 738 // Check that for block-structured locking (i.e., that all locked objects has been unlocked)
duke@435 739 bind(unlocked);
duke@435 740
duke@435 741 // rax, rdx: Might contain return value
duke@435 742
duke@435 743 // Check that all monitors are unlocked
duke@435 744 {
duke@435 745 Label loop, exception, entry, restart;
duke@435 746 const int entry_size = frame::interpreter_frame_monitor_size() * wordSize;
duke@435 747 const Address monitor_block_top(rbp, frame::interpreter_frame_monitor_block_top_offset * wordSize);
duke@435 748 const Address monitor_block_bot(rbp, frame::interpreter_frame_initial_sp_offset * wordSize);
duke@435 749
duke@435 750 bind(restart);
never@739 751 movptr(rcx, monitor_block_top); // points to current entry, starting with top-most entry
never@739 752 lea(rbx, monitor_block_bot); // points to word before bottom of monitor block
duke@435 753 jmp(entry);
duke@435 754
duke@435 755 // Entry already locked, need to throw exception
duke@435 756 bind(exception);
duke@435 757
duke@435 758 if (throw_monitor_exception) {
duke@435 759 empty_FPU_stack(); // remove possible return value from FPU-stack, otherwise stack could overflow
duke@435 760
duke@435 761 // Throw exception
duke@435 762 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_illegal_monitor_state_exception));
duke@435 763 should_not_reach_here();
duke@435 764 } else {
duke@435 765 // Stack unrolling. Unlock object and install illegal_monitor_exception
duke@435 766 // Unlock does not block, so don't have to worry about the frame
duke@435 767
duke@435 768 push(state);
never@739 769 mov(rdx, rcx);
duke@435 770 unlock_object(rdx);
duke@435 771 pop(state);
duke@435 772
duke@435 773 if (install_monitor_exception) {
duke@435 774 empty_FPU_stack(); // remove possible return value from FPU-stack, otherwise stack could overflow
duke@435 775 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::new_illegal_monitor_state_exception));
duke@435 776 }
duke@435 777
duke@435 778 jmp(restart);
duke@435 779 }
duke@435 780
duke@435 781 bind(loop);
never@739 782 cmpptr(Address(rcx, BasicObjectLock::obj_offset_in_bytes()), (int32_t)NULL_WORD); // check if current entry is used
duke@435 783 jcc(Assembler::notEqual, exception);
duke@435 784
never@739 785 addptr(rcx, entry_size); // otherwise advance to next entry
duke@435 786 bind(entry);
never@739 787 cmpptr(rcx, rbx); // check if bottom reached
duke@435 788 jcc(Assembler::notEqual, loop); // if not at bottom then check this entry
duke@435 789 }
duke@435 790
duke@435 791 bind(no_unlock);
duke@435 792
duke@435 793 // jvmti support
duke@435 794 if (notify_jvmdi) {
duke@435 795 notify_method_exit(state, NotifyJVMTI); // preserve TOSCA
duke@435 796 } else {
duke@435 797 notify_method_exit(state, SkipNotifyJVMTI); // preserve TOSCA
duke@435 798 }
duke@435 799
duke@435 800 // remove activation
never@739 801 movptr(rbx, Address(rbp, frame::interpreter_frame_sender_sp_offset * wordSize)); // get sender sp
duke@435 802 leave(); // remove frame anchor
never@739 803 pop(ret_addr); // get return address
never@739 804 mov(rsp, rbx); // set sp to sender sp
duke@435 805 if (UseSSE) {
duke@435 806 // float and double are returned in xmm register in SSE-mode
duke@435 807 if (state == ftos && UseSSE >= 1) {
never@739 808 subptr(rsp, wordSize);
duke@435 809 fstp_s(Address(rsp, 0));
duke@435 810 movflt(xmm0, Address(rsp, 0));
never@739 811 addptr(rsp, wordSize);
duke@435 812 } else if (state == dtos && UseSSE >= 2) {
never@739 813 subptr(rsp, 2*wordSize);
duke@435 814 fstp_d(Address(rsp, 0));
duke@435 815 movdbl(xmm0, Address(rsp, 0));
never@739 816 addptr(rsp, 2*wordSize);
duke@435 817 }
duke@435 818 }
duke@435 819 }
duke@435 820
duke@435 821 #endif /* !CC_INTERP */
duke@435 822
duke@435 823
duke@435 824 // Lock object
duke@435 825 //
duke@435 826 // Argument: rdx : Points to BasicObjectLock to be used for locking. Must
duke@435 827 // be initialized with object to lock
duke@435 828 void InterpreterMacroAssembler::lock_object(Register lock_reg) {
duke@435 829 assert(lock_reg == rdx, "The argument is only for looks. It must be rdx");
duke@435 830
duke@435 831 if (UseHeavyMonitors) {
duke@435 832 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorenter), lock_reg);
duke@435 833 } else {
duke@435 834
duke@435 835 Label done;
duke@435 836
duke@435 837 const Register swap_reg = rax; // Must use rax, for cmpxchg instruction
duke@435 838 const Register obj_reg = rcx; // Will contain the oop
duke@435 839
duke@435 840 const int obj_offset = BasicObjectLock::obj_offset_in_bytes();
duke@435 841 const int lock_offset = BasicObjectLock::lock_offset_in_bytes ();
duke@435 842 const int mark_offset = lock_offset + BasicLock::displaced_header_offset_in_bytes();
duke@435 843
duke@435 844 Label slow_case;
duke@435 845
duke@435 846 // Load object pointer into obj_reg %rcx
never@739 847 movptr(obj_reg, Address(lock_reg, obj_offset));
duke@435 848
duke@435 849 if (UseBiasedLocking) {
duke@435 850 // Note: we use noreg for the temporary register since it's hard
duke@435 851 // to come up with a free register on all incoming code paths
duke@435 852 biased_locking_enter(lock_reg, obj_reg, swap_reg, noreg, false, done, &slow_case);
duke@435 853 }
duke@435 854
duke@435 855 // Load immediate 1 into swap_reg %rax,
never@739 856 movptr(swap_reg, (int32_t)1);
duke@435 857
duke@435 858 // Load (object->mark() | 1) into swap_reg %rax,
never@739 859 orptr(swap_reg, Address(obj_reg, 0));
duke@435 860
duke@435 861 // Save (object->mark() | 1) into BasicLock's displaced header
never@739 862 movptr(Address(lock_reg, mark_offset), swap_reg);
duke@435 863
duke@435 864 assert(lock_offset == 0, "displached header must be first word in BasicObjectLock");
duke@435 865 if (os::is_MP()) {
duke@435 866 lock();
duke@435 867 }
never@739 868 cmpxchgptr(lock_reg, Address(obj_reg, 0));
duke@435 869 if (PrintBiasedLockingStatistics) {
duke@435 870 cond_inc32(Assembler::zero,
duke@435 871 ExternalAddress((address) BiasedLocking::fast_path_entry_count_addr()));
duke@435 872 }
duke@435 873 jcc(Assembler::zero, done);
duke@435 874
duke@435 875 // Test if the oopMark is an obvious stack pointer, i.e.,
duke@435 876 // 1) (mark & 3) == 0, and
duke@435 877 // 2) rsp <= mark < mark + os::pagesize()
duke@435 878 //
duke@435 879 // These 3 tests can be done by evaluating the following
duke@435 880 // expression: ((mark - rsp) & (3 - os::vm_page_size())),
duke@435 881 // assuming both stack pointer and pagesize have their
duke@435 882 // least significant 2 bits clear.
duke@435 883 // NOTE: the oopMark is in swap_reg %rax, as the result of cmpxchg
never@739 884 subptr(swap_reg, rsp);
never@739 885 andptr(swap_reg, 3 - os::vm_page_size());
duke@435 886
duke@435 887 // Save the test result, for recursive case, the result is zero
never@739 888 movptr(Address(lock_reg, mark_offset), swap_reg);
duke@435 889
duke@435 890 if (PrintBiasedLockingStatistics) {
duke@435 891 cond_inc32(Assembler::zero,
duke@435 892 ExternalAddress((address) BiasedLocking::fast_path_entry_count_addr()));
duke@435 893 }
duke@435 894 jcc(Assembler::zero, done);
duke@435 895
duke@435 896 bind(slow_case);
duke@435 897
duke@435 898 // Call the runtime routine for slow case
duke@435 899 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorenter), lock_reg);
duke@435 900
duke@435 901 bind(done);
duke@435 902 }
duke@435 903 }
duke@435 904
duke@435 905
duke@435 906 // Unlocks an object. Used in monitorexit bytecode and remove_activation.
duke@435 907 //
duke@435 908 // Argument: rdx : Points to BasicObjectLock structure for lock
duke@435 909 // Throw an IllegalMonitorException if object is not locked by current thread
duke@435 910 //
duke@435 911 // Uses: rax, rbx, rcx, rdx
duke@435 912 void InterpreterMacroAssembler::unlock_object(Register lock_reg) {
duke@435 913 assert(lock_reg == rdx, "The argument is only for looks. It must be rdx");
duke@435 914
duke@435 915 if (UseHeavyMonitors) {
duke@435 916 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorexit), lock_reg);
duke@435 917 } else {
duke@435 918 Label done;
duke@435 919
duke@435 920 const Register swap_reg = rax; // Must use rax, for cmpxchg instruction
duke@435 921 const Register header_reg = rbx; // Will contain the old oopMark
duke@435 922 const Register obj_reg = rcx; // Will contain the oop
duke@435 923
duke@435 924 save_bcp(); // Save in case of exception
duke@435 925
duke@435 926 // Convert from BasicObjectLock structure to object and BasicLock structure
duke@435 927 // Store the BasicLock address into %rax,
never@739 928 lea(swap_reg, Address(lock_reg, BasicObjectLock::lock_offset_in_bytes()));
duke@435 929
duke@435 930 // Load oop into obj_reg(%rcx)
never@739 931 movptr(obj_reg, Address(lock_reg, BasicObjectLock::obj_offset_in_bytes ()));
duke@435 932
duke@435 933 // Free entry
xlu@947 934 movptr(Address(lock_reg, BasicObjectLock::obj_offset_in_bytes()), NULL_WORD);
duke@435 935
duke@435 936 if (UseBiasedLocking) {
duke@435 937 biased_locking_exit(obj_reg, header_reg, done);
duke@435 938 }
duke@435 939
duke@435 940 // Load the old header from BasicLock structure
never@739 941 movptr(header_reg, Address(swap_reg, BasicLock::displaced_header_offset_in_bytes()));
duke@435 942
duke@435 943 // Test for recursion
never@739 944 testptr(header_reg, header_reg);
duke@435 945
duke@435 946 // zero for recursive case
duke@435 947 jcc(Assembler::zero, done);
duke@435 948
duke@435 949 // Atomic swap back the old header
duke@435 950 if (os::is_MP()) lock();
never@739 951 cmpxchgptr(header_reg, Address(obj_reg, 0));
duke@435 952
duke@435 953 // zero for recursive case
duke@435 954 jcc(Assembler::zero, done);
duke@435 955
duke@435 956 // Call the runtime routine for slow case.
never@739 957 movptr(Address(lock_reg, BasicObjectLock::obj_offset_in_bytes()), obj_reg); // restore obj
duke@435 958 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorexit), lock_reg);
duke@435 959
duke@435 960 bind(done);
duke@435 961
duke@435 962 restore_bcp();
duke@435 963 }
duke@435 964 }
duke@435 965
duke@435 966
duke@435 967 #ifndef CC_INTERP
duke@435 968
duke@435 969 // Test ImethodDataPtr. If it is null, continue at the specified label
duke@435 970 void InterpreterMacroAssembler::test_method_data_pointer(Register mdp, Label& zero_continue) {
duke@435 971 assert(ProfileInterpreter, "must be profiling interpreter");
never@739 972 movptr(mdp, Address(rbp, frame::interpreter_frame_mdx_offset * wordSize));
never@739 973 testptr(mdp, mdp);
duke@435 974 jcc(Assembler::zero, zero_continue);
duke@435 975 }
duke@435 976
duke@435 977
duke@435 978 // Set the method data pointer for the current bcp.
duke@435 979 void InterpreterMacroAssembler::set_method_data_pointer_for_bcp() {
duke@435 980 assert(ProfileInterpreter, "must be profiling interpreter");
duke@435 981 Label zero_continue;
never@739 982 push(rax);
never@739 983 push(rbx);
duke@435 984
duke@435 985 get_method(rbx);
duke@435 986 // Test MDO to avoid the call if it is NULL.
never@739 987 movptr(rax, Address(rbx, in_bytes(methodOopDesc::method_data_offset())));
never@739 988 testptr(rax, rax);
duke@435 989 jcc(Assembler::zero, zero_continue);
duke@435 990
duke@435 991 // rbx,: method
duke@435 992 // rsi: bcp
duke@435 993 call_VM_leaf(CAST_FROM_FN_PTR(address, InterpreterRuntime::bcp_to_di), rbx, rsi);
duke@435 994 // rax,: mdi
duke@435 995
never@739 996 movptr(rbx, Address(rbx, in_bytes(methodOopDesc::method_data_offset())));
never@739 997 testptr(rbx, rbx);
duke@435 998 jcc(Assembler::zero, zero_continue);
never@739 999 addptr(rbx, in_bytes(methodDataOopDesc::data_offset()));
never@739 1000 addptr(rbx, rax);
never@739 1001 movptr(Address(rbp, frame::interpreter_frame_mdx_offset * wordSize), rbx);
duke@435 1002
duke@435 1003 bind(zero_continue);
never@739 1004 pop(rbx);
never@739 1005 pop(rax);
duke@435 1006 }
duke@435 1007
duke@435 1008 void InterpreterMacroAssembler::verify_method_data_pointer() {
duke@435 1009 assert(ProfileInterpreter, "must be profiling interpreter");
duke@435 1010 #ifdef ASSERT
duke@435 1011 Label verify_continue;
never@739 1012 push(rax);
never@739 1013 push(rbx);
never@739 1014 push(rcx);
never@739 1015 push(rdx);
duke@435 1016 test_method_data_pointer(rcx, verify_continue); // If mdp is zero, continue
duke@435 1017 get_method(rbx);
duke@435 1018
duke@435 1019 // If the mdp is valid, it will point to a DataLayout header which is
duke@435 1020 // consistent with the bcp. The converse is highly probable also.
jrose@1057 1021 load_unsigned_short(rdx, Address(rcx, in_bytes(DataLayout::bci_offset())));
never@739 1022 addptr(rdx, Address(rbx, methodOopDesc::const_offset()));
never@739 1023 lea(rdx, Address(rdx, constMethodOopDesc::codes_offset()));
never@739 1024 cmpptr(rdx, rsi);
duke@435 1025 jcc(Assembler::equal, verify_continue);
duke@435 1026 // rbx,: method
duke@435 1027 // rsi: bcp
duke@435 1028 // rcx: mdp
duke@435 1029 call_VM_leaf(CAST_FROM_FN_PTR(address, InterpreterRuntime::verify_mdp), rbx, rsi, rcx);
duke@435 1030 bind(verify_continue);
never@739 1031 pop(rdx);
never@739 1032 pop(rcx);
never@739 1033 pop(rbx);
never@739 1034 pop(rax);
duke@435 1035 #endif // ASSERT
duke@435 1036 }
duke@435 1037
duke@435 1038
duke@435 1039 void InterpreterMacroAssembler::set_mdp_data_at(Register mdp_in, int constant, Register value) {
never@739 1040 // %%% this seems to be used to store counter data which is surely 32bits
never@739 1041 // however 64bit side stores 64 bits which seems wrong
duke@435 1042 assert(ProfileInterpreter, "must be profiling interpreter");
duke@435 1043 Address data(mdp_in, constant);
never@739 1044 movptr(data, value);
duke@435 1045 }
duke@435 1046
duke@435 1047
duke@435 1048 void InterpreterMacroAssembler::increment_mdp_data_at(Register mdp_in,
duke@435 1049 int constant,
duke@435 1050 bool decrement) {
duke@435 1051 // Counter address
duke@435 1052 Address data(mdp_in, constant);
duke@435 1053
duke@435 1054 increment_mdp_data_at(data, decrement);
duke@435 1055 }
duke@435 1056
duke@435 1057
duke@435 1058 void InterpreterMacroAssembler::increment_mdp_data_at(Address data,
duke@435 1059 bool decrement) {
duke@435 1060
duke@435 1061 assert( DataLayout::counter_increment==1, "flow-free idiom only works with 1" );
duke@435 1062 assert(ProfileInterpreter, "must be profiling interpreter");
duke@435 1063
never@739 1064 // %%% 64bit treats this as 64 bit which seems unlikely
duke@435 1065 if (decrement) {
duke@435 1066 // Decrement the register. Set condition codes.
duke@435 1067 addl(data, -DataLayout::counter_increment);
duke@435 1068 // If the decrement causes the counter to overflow, stay negative
duke@435 1069 Label L;
duke@435 1070 jcc(Assembler::negative, L);
duke@435 1071 addl(data, DataLayout::counter_increment);
duke@435 1072 bind(L);
duke@435 1073 } else {
duke@435 1074 assert(DataLayout::counter_increment == 1,
duke@435 1075 "flow-free idiom only works with 1");
duke@435 1076 // Increment the register. Set carry flag.
duke@435 1077 addl(data, DataLayout::counter_increment);
duke@435 1078 // If the increment causes the counter to overflow, pull back by 1.
duke@435 1079 sbbl(data, 0);
duke@435 1080 }
duke@435 1081 }
duke@435 1082
duke@435 1083
duke@435 1084 void InterpreterMacroAssembler::increment_mdp_data_at(Register mdp_in,
duke@435 1085 Register reg,
duke@435 1086 int constant,
duke@435 1087 bool decrement) {
duke@435 1088 Address data(mdp_in, reg, Address::times_1, constant);
duke@435 1089
duke@435 1090 increment_mdp_data_at(data, decrement);
duke@435 1091 }
duke@435 1092
duke@435 1093
duke@435 1094 void InterpreterMacroAssembler::set_mdp_flag_at(Register mdp_in, int flag_byte_constant) {
duke@435 1095 assert(ProfileInterpreter, "must be profiling interpreter");
duke@435 1096 int header_offset = in_bytes(DataLayout::header_offset());
duke@435 1097 int header_bits = DataLayout::flag_mask_to_header_mask(flag_byte_constant);
duke@435 1098 // Set the flag
duke@435 1099 orl(Address(mdp_in, header_offset), header_bits);
duke@435 1100 }
duke@435 1101
duke@435 1102
duke@435 1103
duke@435 1104 void InterpreterMacroAssembler::test_mdp_data_at(Register mdp_in,
duke@435 1105 int offset,
duke@435 1106 Register value,
duke@435 1107 Register test_value_out,
duke@435 1108 Label& not_equal_continue) {
duke@435 1109 assert(ProfileInterpreter, "must be profiling interpreter");
duke@435 1110 if (test_value_out == noreg) {
never@739 1111 cmpptr(value, Address(mdp_in, offset));
duke@435 1112 } else {
duke@435 1113 // Put the test value into a register, so caller can use it:
never@739 1114 movptr(test_value_out, Address(mdp_in, offset));
never@739 1115 cmpptr(test_value_out, value);
duke@435 1116 }
duke@435 1117 jcc(Assembler::notEqual, not_equal_continue);
duke@435 1118 }
duke@435 1119
duke@435 1120
duke@435 1121 void InterpreterMacroAssembler::update_mdp_by_offset(Register mdp_in, int offset_of_disp) {
duke@435 1122 assert(ProfileInterpreter, "must be profiling interpreter");
duke@435 1123 Address disp_address(mdp_in, offset_of_disp);
never@739 1124 addptr(mdp_in,disp_address);
never@739 1125 movptr(Address(rbp, frame::interpreter_frame_mdx_offset * wordSize), mdp_in);
duke@435 1126 }
duke@435 1127
duke@435 1128
duke@435 1129 void InterpreterMacroAssembler::update_mdp_by_offset(Register mdp_in, Register reg, int offset_of_disp) {
duke@435 1130 assert(ProfileInterpreter, "must be profiling interpreter");
duke@435 1131 Address disp_address(mdp_in, reg, Address::times_1, offset_of_disp);
never@739 1132 addptr(mdp_in, disp_address);
never@739 1133 movptr(Address(rbp, frame::interpreter_frame_mdx_offset * wordSize), mdp_in);
duke@435 1134 }
duke@435 1135
duke@435 1136
duke@435 1137 void InterpreterMacroAssembler::update_mdp_by_constant(Register mdp_in, int constant) {
duke@435 1138 assert(ProfileInterpreter, "must be profiling interpreter");
never@739 1139 addptr(mdp_in, constant);
never@739 1140 movptr(Address(rbp, frame::interpreter_frame_mdx_offset * wordSize), mdp_in);
duke@435 1141 }
duke@435 1142
duke@435 1143
duke@435 1144 void InterpreterMacroAssembler::update_mdp_for_ret(Register return_bci) {
duke@435 1145 assert(ProfileInterpreter, "must be profiling interpreter");
never@739 1146 push(return_bci); // save/restore across call_VM
duke@435 1147 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::update_mdp_for_ret), return_bci);
never@739 1148 pop(return_bci);
duke@435 1149 }
duke@435 1150
duke@435 1151
duke@435 1152 void InterpreterMacroAssembler::profile_taken_branch(Register mdp, Register bumped_count) {
duke@435 1153 if (ProfileInterpreter) {
duke@435 1154 Label profile_continue;
duke@435 1155
duke@435 1156 // If no method data exists, go to profile_continue.
duke@435 1157 // Otherwise, assign to mdp
duke@435 1158 test_method_data_pointer(mdp, profile_continue);
duke@435 1159
duke@435 1160 // We are taking a branch. Increment the taken count.
duke@435 1161 // We inline increment_mdp_data_at to return bumped_count in a register
duke@435 1162 //increment_mdp_data_at(mdp, in_bytes(JumpData::taken_offset()));
duke@435 1163 Address data(mdp, in_bytes(JumpData::taken_offset()));
never@739 1164
never@739 1165 // %%% 64bit treats these cells as 64 bit but they seem to be 32 bit
duke@435 1166 movl(bumped_count,data);
duke@435 1167 assert( DataLayout::counter_increment==1, "flow-free idiom only works with 1" );
duke@435 1168 addl(bumped_count, DataLayout::counter_increment);
duke@435 1169 sbbl(bumped_count, 0);
duke@435 1170 movl(data,bumped_count); // Store back out
duke@435 1171
duke@435 1172 // The method data pointer needs to be updated to reflect the new target.
duke@435 1173 update_mdp_by_offset(mdp, in_bytes(JumpData::displacement_offset()));
duke@435 1174 bind (profile_continue);
duke@435 1175 }
duke@435 1176 }
duke@435 1177
duke@435 1178
duke@435 1179 void InterpreterMacroAssembler::profile_not_taken_branch(Register mdp) {
duke@435 1180 if (ProfileInterpreter) {
duke@435 1181 Label profile_continue;
duke@435 1182
duke@435 1183 // If no method data exists, go to profile_continue.
duke@435 1184 test_method_data_pointer(mdp, profile_continue);
duke@435 1185
duke@435 1186 // We are taking a branch. Increment the not taken count.
duke@435 1187 increment_mdp_data_at(mdp, in_bytes(BranchData::not_taken_offset()));
duke@435 1188
duke@435 1189 // The method data pointer needs to be updated to correspond to the next bytecode
duke@435 1190 update_mdp_by_constant(mdp, in_bytes(BranchData::branch_data_size()));
duke@435 1191 bind (profile_continue);
duke@435 1192 }
duke@435 1193 }
duke@435 1194
duke@435 1195
duke@435 1196 void InterpreterMacroAssembler::profile_call(Register mdp) {
duke@435 1197 if (ProfileInterpreter) {
duke@435 1198 Label profile_continue;
duke@435 1199
duke@435 1200 // If no method data exists, go to profile_continue.
duke@435 1201 test_method_data_pointer(mdp, profile_continue);
duke@435 1202
duke@435 1203 // We are making a call. Increment the count.
duke@435 1204 increment_mdp_data_at(mdp, in_bytes(CounterData::count_offset()));
duke@435 1205
duke@435 1206 // The method data pointer needs to be updated to reflect the new target.
duke@435 1207 update_mdp_by_constant(mdp, in_bytes(CounterData::counter_data_size()));
duke@435 1208 bind (profile_continue);
duke@435 1209 }
duke@435 1210 }
duke@435 1211
duke@435 1212
duke@435 1213 void InterpreterMacroAssembler::profile_final_call(Register mdp) {
duke@435 1214 if (ProfileInterpreter) {
duke@435 1215 Label profile_continue;
duke@435 1216
duke@435 1217 // If no method data exists, go to profile_continue.
duke@435 1218 test_method_data_pointer(mdp, profile_continue);
duke@435 1219
duke@435 1220 // We are making a call. Increment the count.
duke@435 1221 increment_mdp_data_at(mdp, in_bytes(CounterData::count_offset()));
duke@435 1222
duke@435 1223 // The method data pointer needs to be updated to reflect the new target.
duke@435 1224 update_mdp_by_constant(mdp, in_bytes(VirtualCallData::virtual_call_data_size()));
duke@435 1225 bind (profile_continue);
duke@435 1226 }
duke@435 1227 }
duke@435 1228
duke@435 1229
jrose@1161 1230 void InterpreterMacroAssembler::profile_virtual_call(Register receiver, Register mdp,
jrose@1161 1231 Register reg2,
jrose@1161 1232 bool receiver_can_be_null) {
duke@435 1233 if (ProfileInterpreter) {
duke@435 1234 Label profile_continue;
duke@435 1235
duke@435 1236 // If no method data exists, go to profile_continue.
duke@435 1237 test_method_data_pointer(mdp, profile_continue);
duke@435 1238
duke@435 1239 // We are making a call. Increment the count.
duke@435 1240 increment_mdp_data_at(mdp, in_bytes(CounterData::count_offset()));
duke@435 1241
jrose@1161 1242 Label skip_receiver_profile;
jrose@1161 1243 if (receiver_can_be_null) {
jrose@1161 1244 testptr(receiver, receiver);
jrose@1161 1245 jcc(Assembler::zero, skip_receiver_profile);
jrose@1161 1246 }
jrose@1161 1247
duke@435 1248 // Record the receiver type.
duke@435 1249 record_klass_in_profile(receiver, mdp, reg2);
jrose@1161 1250 bind(skip_receiver_profile);
duke@435 1251
duke@435 1252 // The method data pointer needs to be updated to reflect the new target.
duke@435 1253 update_mdp_by_constant(mdp,
duke@435 1254 in_bytes(VirtualCallData::
duke@435 1255 virtual_call_data_size()));
duke@435 1256 bind(profile_continue);
duke@435 1257 }
duke@435 1258 }
duke@435 1259
duke@435 1260
duke@435 1261 void InterpreterMacroAssembler::record_klass_in_profile_helper(
duke@435 1262 Register receiver, Register mdp,
duke@435 1263 Register reg2,
duke@435 1264 int start_row, Label& done) {
duke@435 1265 int last_row = VirtualCallData::row_limit() - 1;
duke@435 1266 assert(start_row <= last_row, "must be work left to do");
duke@435 1267 // Test this row for both the receiver and for null.
duke@435 1268 // Take any of three different outcomes:
duke@435 1269 // 1. found receiver => increment count and goto done
duke@435 1270 // 2. found null => keep looking for case 1, maybe allocate this cell
duke@435 1271 // 3. found something else => keep looking for cases 1 and 2
duke@435 1272 // Case 3 is handled by a recursive call.
duke@435 1273 for (int row = start_row; row <= last_row; row++) {
duke@435 1274 Label next_test;
duke@435 1275 bool test_for_null_also = (row == start_row);
duke@435 1276
duke@435 1277 // See if the receiver is receiver[n].
duke@435 1278 int recvr_offset = in_bytes(VirtualCallData::receiver_offset(row));
duke@435 1279 test_mdp_data_at(mdp, recvr_offset, receiver,
duke@435 1280 (test_for_null_also ? reg2 : noreg),
duke@435 1281 next_test);
duke@435 1282 // (Reg2 now contains the receiver from the CallData.)
duke@435 1283
duke@435 1284 // The receiver is receiver[n]. Increment count[n].
duke@435 1285 int count_offset = in_bytes(VirtualCallData::receiver_count_offset(row));
duke@435 1286 increment_mdp_data_at(mdp, count_offset);
duke@435 1287 jmp(done);
duke@435 1288 bind(next_test);
duke@435 1289
duke@435 1290 if (row == start_row) {
duke@435 1291 // Failed the equality check on receiver[n]... Test for null.
never@739 1292 testptr(reg2, reg2);
duke@435 1293 if (start_row == last_row) {
duke@435 1294 // The only thing left to do is handle the null case.
duke@435 1295 jcc(Assembler::notZero, done);
duke@435 1296 break;
duke@435 1297 }
duke@435 1298 // Since null is rare, make it be the branch-taken case.
duke@435 1299 Label found_null;
duke@435 1300 jcc(Assembler::zero, found_null);
duke@435 1301
duke@435 1302 // Put all the "Case 3" tests here.
duke@435 1303 record_klass_in_profile_helper(receiver, mdp, reg2, start_row + 1, done);
duke@435 1304
duke@435 1305 // Found a null. Keep searching for a matching receiver,
duke@435 1306 // but remember that this is an empty (unused) slot.
duke@435 1307 bind(found_null);
duke@435 1308 }
duke@435 1309 }
duke@435 1310
duke@435 1311 // In the fall-through case, we found no matching receiver, but we
duke@435 1312 // observed the receiver[start_row] is NULL.
duke@435 1313
duke@435 1314 // Fill in the receiver field and increment the count.
duke@435 1315 int recvr_offset = in_bytes(VirtualCallData::receiver_offset(start_row));
duke@435 1316 set_mdp_data_at(mdp, recvr_offset, receiver);
duke@435 1317 int count_offset = in_bytes(VirtualCallData::receiver_count_offset(start_row));
never@739 1318 movptr(reg2, (int32_t)DataLayout::counter_increment);
duke@435 1319 set_mdp_data_at(mdp, count_offset, reg2);
duke@435 1320 jmp(done);
duke@435 1321 }
duke@435 1322
duke@435 1323 void InterpreterMacroAssembler::record_klass_in_profile(Register receiver,
duke@435 1324 Register mdp,
duke@435 1325 Register reg2) {
duke@435 1326 assert(ProfileInterpreter, "must be profiling");
duke@435 1327 Label done;
duke@435 1328
duke@435 1329 record_klass_in_profile_helper(receiver, mdp, reg2, 0, done);
duke@435 1330
duke@435 1331 bind (done);
duke@435 1332 }
duke@435 1333
duke@435 1334 void InterpreterMacroAssembler::profile_ret(Register return_bci, Register mdp) {
duke@435 1335 if (ProfileInterpreter) {
duke@435 1336 Label profile_continue;
duke@435 1337 uint row;
duke@435 1338
duke@435 1339 // If no method data exists, go to profile_continue.
duke@435 1340 test_method_data_pointer(mdp, profile_continue);
duke@435 1341
duke@435 1342 // Update the total ret count.
duke@435 1343 increment_mdp_data_at(mdp, in_bytes(CounterData::count_offset()));
duke@435 1344
duke@435 1345 for (row = 0; row < RetData::row_limit(); row++) {
duke@435 1346 Label next_test;
duke@435 1347
duke@435 1348 // See if return_bci is equal to bci[n]:
duke@435 1349 test_mdp_data_at(mdp, in_bytes(RetData::bci_offset(row)), return_bci,
duke@435 1350 noreg, next_test);
duke@435 1351
duke@435 1352 // return_bci is equal to bci[n]. Increment the count.
duke@435 1353 increment_mdp_data_at(mdp, in_bytes(RetData::bci_count_offset(row)));
duke@435 1354
duke@435 1355 // The method data pointer needs to be updated to reflect the new target.
duke@435 1356 update_mdp_by_offset(mdp, in_bytes(RetData::bci_displacement_offset(row)));
duke@435 1357 jmp(profile_continue);
duke@435 1358 bind(next_test);
duke@435 1359 }
duke@435 1360
duke@435 1361 update_mdp_for_ret(return_bci);
duke@435 1362
duke@435 1363 bind (profile_continue);
duke@435 1364 }
duke@435 1365 }
duke@435 1366
duke@435 1367
duke@435 1368 void InterpreterMacroAssembler::profile_null_seen(Register mdp) {
duke@435 1369 if (ProfileInterpreter) {
duke@435 1370 Label profile_continue;
duke@435 1371
duke@435 1372 // If no method data exists, go to profile_continue.
duke@435 1373 test_method_data_pointer(mdp, profile_continue);
duke@435 1374
duke@435 1375 // The method data pointer needs to be updated.
duke@435 1376 int mdp_delta = in_bytes(BitData::bit_data_size());
duke@435 1377 if (TypeProfileCasts) {
duke@435 1378 mdp_delta = in_bytes(VirtualCallData::virtual_call_data_size());
duke@435 1379 }
duke@435 1380 update_mdp_by_constant(mdp, mdp_delta);
duke@435 1381
duke@435 1382 bind (profile_continue);
duke@435 1383 }
duke@435 1384 }
duke@435 1385
duke@435 1386
duke@435 1387 void InterpreterMacroAssembler::profile_typecheck_failed(Register mdp) {
duke@435 1388 if (ProfileInterpreter && TypeProfileCasts) {
duke@435 1389 Label profile_continue;
duke@435 1390
duke@435 1391 // If no method data exists, go to profile_continue.
duke@435 1392 test_method_data_pointer(mdp, profile_continue);
duke@435 1393
duke@435 1394 int count_offset = in_bytes(CounterData::count_offset());
duke@435 1395 // Back up the address, since we have already bumped the mdp.
duke@435 1396 count_offset -= in_bytes(VirtualCallData::virtual_call_data_size());
duke@435 1397
duke@435 1398 // *Decrement* the counter. We expect to see zero or small negatives.
duke@435 1399 increment_mdp_data_at(mdp, count_offset, true);
duke@435 1400
duke@435 1401 bind (profile_continue);
duke@435 1402 }
duke@435 1403 }
duke@435 1404
duke@435 1405
duke@435 1406 void InterpreterMacroAssembler::profile_typecheck(Register mdp, Register klass, Register reg2)
duke@435 1407 {
duke@435 1408 if (ProfileInterpreter) {
duke@435 1409 Label profile_continue;
duke@435 1410
duke@435 1411 // If no method data exists, go to profile_continue.
duke@435 1412 test_method_data_pointer(mdp, profile_continue);
duke@435 1413
duke@435 1414 // The method data pointer needs to be updated.
duke@435 1415 int mdp_delta = in_bytes(BitData::bit_data_size());
duke@435 1416 if (TypeProfileCasts) {
duke@435 1417 mdp_delta = in_bytes(VirtualCallData::virtual_call_data_size());
duke@435 1418
duke@435 1419 // Record the object type.
duke@435 1420 record_klass_in_profile(klass, mdp, reg2);
duke@435 1421 assert(reg2 == rdi, "we know how to fix this blown reg");
duke@435 1422 restore_locals(); // Restore EDI
duke@435 1423 }
duke@435 1424 update_mdp_by_constant(mdp, mdp_delta);
duke@435 1425
duke@435 1426 bind(profile_continue);
duke@435 1427 }
duke@435 1428 }
duke@435 1429
duke@435 1430
duke@435 1431 void InterpreterMacroAssembler::profile_switch_default(Register mdp) {
duke@435 1432 if (ProfileInterpreter) {
duke@435 1433 Label profile_continue;
duke@435 1434
duke@435 1435 // If no method data exists, go to profile_continue.
duke@435 1436 test_method_data_pointer(mdp, profile_continue);
duke@435 1437
duke@435 1438 // Update the default case count
duke@435 1439 increment_mdp_data_at(mdp, in_bytes(MultiBranchData::default_count_offset()));
duke@435 1440
duke@435 1441 // The method data pointer needs to be updated.
duke@435 1442 update_mdp_by_offset(mdp, in_bytes(MultiBranchData::default_displacement_offset()));
duke@435 1443
duke@435 1444 bind (profile_continue);
duke@435 1445 }
duke@435 1446 }
duke@435 1447
duke@435 1448
duke@435 1449 void InterpreterMacroAssembler::profile_switch_case(Register index, Register mdp, Register reg2) {
duke@435 1450 if (ProfileInterpreter) {
duke@435 1451 Label profile_continue;
duke@435 1452
duke@435 1453 // If no method data exists, go to profile_continue.
duke@435 1454 test_method_data_pointer(mdp, profile_continue);
duke@435 1455
duke@435 1456 // Build the base (index * per_case_size_in_bytes()) + case_array_offset_in_bytes()
never@739 1457 movptr(reg2, (int32_t)in_bytes(MultiBranchData::per_case_size()));
never@739 1458 // index is positive and so should have correct value if this code were
never@739 1459 // used on 64bits
never@739 1460 imulptr(index, reg2);
never@739 1461 addptr(index, in_bytes(MultiBranchData::case_array_offset()));
duke@435 1462
duke@435 1463 // Update the case count
duke@435 1464 increment_mdp_data_at(mdp, index, in_bytes(MultiBranchData::relative_count_offset()));
duke@435 1465
duke@435 1466 // The method data pointer needs to be updated.
duke@435 1467 update_mdp_by_offset(mdp, index, in_bytes(MultiBranchData::relative_displacement_offset()));
duke@435 1468
duke@435 1469 bind (profile_continue);
duke@435 1470 }
duke@435 1471 }
duke@435 1472
duke@435 1473 #endif // !CC_INTERP
duke@435 1474
duke@435 1475
duke@435 1476
duke@435 1477 void InterpreterMacroAssembler::verify_oop(Register reg, TosState state) {
duke@435 1478 if (state == atos) MacroAssembler::verify_oop(reg);
duke@435 1479 }
duke@435 1480
duke@435 1481
duke@435 1482 #ifndef CC_INTERP
duke@435 1483 void InterpreterMacroAssembler::verify_FPU(int stack_depth, TosState state) {
duke@435 1484 if (state == ftos || state == dtos) MacroAssembler::verify_FPU(stack_depth);
duke@435 1485 }
duke@435 1486
duke@435 1487 #endif /* CC_INTERP */
duke@435 1488
duke@435 1489
duke@435 1490 void InterpreterMacroAssembler::notify_method_entry() {
duke@435 1491 // Whenever JVMTI is interp_only_mode, method entry/exit events are sent to
duke@435 1492 // track stack depth. If it is possible to enter interp_only_mode we add
duke@435 1493 // the code to check if the event should be sent.
duke@435 1494 if (JvmtiExport::can_post_interpreter_events()) {
duke@435 1495 Label L;
duke@435 1496 get_thread(rcx);
duke@435 1497 movl(rcx, Address(rcx, JavaThread::interp_only_mode_offset()));
duke@435 1498 testl(rcx,rcx);
duke@435 1499 jcc(Assembler::zero, L);
duke@435 1500 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_method_entry));
duke@435 1501 bind(L);
duke@435 1502 }
duke@435 1503
duke@435 1504 {
duke@435 1505 SkipIfEqual skip_if(this, &DTraceMethodProbes, 0);
duke@435 1506 get_thread(rcx);
duke@435 1507 get_method(rbx);
duke@435 1508 call_VM_leaf(
duke@435 1509 CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_entry), rcx, rbx);
duke@435 1510 }
dcubed@1045 1511
dcubed@1045 1512 // RedefineClasses() tracing support for obsolete method entry
dcubed@1045 1513 if (RC_TRACE_IN_RANGE(0x00001000, 0x00002000)) {
dcubed@1045 1514 get_thread(rcx);
dcubed@1045 1515 get_method(rbx);
dcubed@1045 1516 call_VM_leaf(
dcubed@1045 1517 CAST_FROM_FN_PTR(address, SharedRuntime::rc_trace_method_entry),
dcubed@1045 1518 rcx, rbx);
dcubed@1045 1519 }
duke@435 1520 }
duke@435 1521
duke@435 1522
duke@435 1523 void InterpreterMacroAssembler::notify_method_exit(
duke@435 1524 TosState state, NotifyMethodExitMode mode) {
duke@435 1525 // Whenever JVMTI is interp_only_mode, method entry/exit events are sent to
duke@435 1526 // track stack depth. If it is possible to enter interp_only_mode we add
duke@435 1527 // the code to check if the event should be sent.
duke@435 1528 if (mode == NotifyJVMTI && JvmtiExport::can_post_interpreter_events()) {
duke@435 1529 Label L;
duke@435 1530 // Note: frame::interpreter_frame_result has a dependency on how the
duke@435 1531 // method result is saved across the call to post_method_exit. If this
duke@435 1532 // is changed then the interpreter_frame_result implementation will
duke@435 1533 // need to be updated too.
duke@435 1534
duke@435 1535 // For c++ interpreter the result is always stored at a known location in the frame
duke@435 1536 // template interpreter will leave it on the top of the stack.
duke@435 1537 NOT_CC_INTERP(push(state);)
duke@435 1538 get_thread(rcx);
duke@435 1539 movl(rcx, Address(rcx, JavaThread::interp_only_mode_offset()));
duke@435 1540 testl(rcx,rcx);
duke@435 1541 jcc(Assembler::zero, L);
duke@435 1542 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_method_exit));
duke@435 1543 bind(L);
duke@435 1544 NOT_CC_INTERP(pop(state);)
duke@435 1545 }
duke@435 1546
duke@435 1547 {
duke@435 1548 SkipIfEqual skip_if(this, &DTraceMethodProbes, 0);
never@739 1549 NOT_CC_INTERP(push(state));
duke@435 1550 get_thread(rbx);
duke@435 1551 get_method(rcx);
duke@435 1552 call_VM_leaf(
duke@435 1553 CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_exit),
duke@435 1554 rbx, rcx);
never@739 1555 NOT_CC_INTERP(pop(state));
duke@435 1556 }
duke@435 1557 }

mercurial