hotspot/src/cpu/sparc/vm/interp_masm_sparc.cpp
author twisti
Tue, 21 Apr 2009 11:16:30 -0700
changeset 2571 d602ad6538bd
parent 2256 82d4e10b7c6b
child 3814 91f531a11872
permissions -rw-r--r--
6822110: Add AddressLiteral class on SPARC Summary: The Address class on SPARC currently handles both, addresses and address literals, what makes the Address class more complicated than it has to be. Reviewed-by: never, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
     2
 * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_interp_masm_sparc.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#ifndef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#ifndef FAST_DISPATCH
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#define FAST_DISPATCH 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#undef FAST_DISPATCH
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// Implementation of InterpreterMacroAssembler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// This file specializes the assember with interpreter-specific macros
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
    38
const Address InterpreterMacroAssembler::l_tmp(FP, (frame::interpreter_frame_l_scratch_fp_offset * wordSize) + STACK_BIAS);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
    39
const Address InterpreterMacroAssembler::d_tmp(FP, (frame::interpreter_frame_d_scratch_fp_offset * wordSize) + STACK_BIAS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
#else // CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
#ifndef STATE
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#define STATE(field_name) Lstate, in_bytes(byte_offset_of(BytecodeInterpreter, field_name))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#endif // STATE
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#endif // CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
void InterpreterMacroAssembler::compute_extra_locals_size_in_bytes(Register args_size, Register locals_size, Register delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // Note: this algorithm is also used by C1's OSR entry sequence.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Any changes should also be applied to CodeEmitter::emit_osr_entry().
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  assert_different_registers(args_size, locals_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // max_locals*2 for TAGS.  Assumes that args_size has already been adjusted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  if (TaggedStackInterpreter) sll(locals_size, 1, locals_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  subcc(locals_size, args_size, delta);// extra space for non-arguments locals in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Use br/mov combination because it works on both V8 and V9 and is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // faster.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  Label skip_move;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  br(Assembler::negative, true, Assembler::pt, skip_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  delayed()->mov(G0, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  bind(skip_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  round_to(delta, WordsPerLong);       // make multiple of 2 (SP must be 2-word aligned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  sll(delta, LogBytesPerWord, delta);  // extra space for locals in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
#ifndef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// Dispatch code executed in the prolog of a bytecode which does not do it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// own dispatch. The dispatch address is computed and placed in IdispatchAddress
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
void InterpreterMacroAssembler::dispatch_prolog(TosState state, int bcp_incr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
#ifdef FAST_DISPATCH
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // FAST_DISPATCH and ProfileInterpreter are mutually exclusive since
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // they both use I2.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  assert(!ProfileInterpreter, "FAST_DISPATCH and +ProfileInterpreter are mutually exclusive");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  ldub(Lbcp, bcp_incr, Lbyte_code);                     // load next bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  add(Lbyte_code, Interpreter::distance_from_dispatch_table(state), Lbyte_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                                        // add offset to correct dispatch table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  sll(Lbyte_code, LogBytesPerWord, Lbyte_code);         // multiply by wordSize
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  ld_ptr(IdispatchTables, Lbyte_code, IdispatchAddress);// get entry addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
#else
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
    81
  ldub( Lbcp, bcp_incr, Lbyte_code);                    // load next bytecode
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // dispatch table to use
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
    83
  AddressLiteral tbl(Interpreter::dispatch_table(state));
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
    84
  sll(Lbyte_code, LogBytesPerWord, Lbyte_code);         // multiply by wordSize
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
    85
  set(tbl, G3_scratch);                                 // compute addr of table
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
    86
  ld_ptr(G3_scratch, Lbyte_code, IdispatchAddress);     // get entry addr
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// Dispatch code executed in the epilog of a bytecode which does not do it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// own dispatch. The dispatch address in IdispatchAddress is used for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// dispatch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
void InterpreterMacroAssembler::dispatch_epilog(TosState state, int bcp_incr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  verify_FPU(1, state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  jmp( IdispatchAddress, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  if (bcp_incr != 0)  delayed()->inc(Lbcp, bcp_incr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  else                delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
void InterpreterMacroAssembler::dispatch_next(TosState state, int bcp_incr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // %%%% consider branching to a single shared dispatch stub (for each bcp_incr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  ldub( Lbcp, bcp_incr, Lbyte_code);               // load next bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  dispatch_Lbyte_code(state, Interpreter::dispatch_table(state), bcp_incr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
void InterpreterMacroAssembler::dispatch_next_noverify_oop(TosState state, int bcp_incr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // %%%% consider branching to a single shared dispatch stub (for each bcp_incr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  ldub( Lbcp, bcp_incr, Lbyte_code);               // load next bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  dispatch_Lbyte_code(state, Interpreter::dispatch_table(state), bcp_incr, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
void InterpreterMacroAssembler::dispatch_via(TosState state, address* table) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // load current bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  ldub( Lbcp, 0, Lbyte_code);               // load next bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  dispatch_base(state, table);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
void InterpreterMacroAssembler::call_VM_leaf_base(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  Register java_thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  address  entry_point,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  int      number_of_arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  if (!java_thread->is_valid())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    java_thread = L7_thread_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // super call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  MacroAssembler::call_VM_leaf_base(java_thread, entry_point, number_of_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
void InterpreterMacroAssembler::call_VM_base(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  Register        oop_result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  Register        java_thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  Register        last_java_sp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  address         entry_point,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  int             number_of_arguments,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  bool            check_exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  if (!java_thread->is_valid())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    java_thread = L7_thread_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // See class ThreadInVMfromInterpreter, which assumes that the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // takes responsibility for setting its own thread-state on call-out.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // However, ThreadInVMfromInterpreter resets the state to "in_Java".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  //save_bcp();                                  // save bcp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  MacroAssembler::call_VM_base(oop_result, java_thread, last_java_sp, entry_point, number_of_arguments, check_exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  //restore_bcp();                               // restore bcp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  //restore_locals();                            // restore locals pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
void InterpreterMacroAssembler::check_and_handle_popframe(Register scratch_reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  if (JvmtiExport::can_pop_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    // Check the "pending popframe condition" flag in the current thread
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   166
    ld(G2_thread, JavaThread::popframe_condition_offset(), scratch_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    // Initiate popframe handling only if it is not already being processed.  If the flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    // has the popframe_processing bit set, it means that this code is called *during* popframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    // handling - we don't want to reenter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    btst(JavaThread::popframe_pending_bit, scratch_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    br(zero, false, pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    btst(JavaThread::popframe_processing_bit, scratch_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    br(notZero, false, pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    // Call Interpreter::remove_activation_preserving_args_entry() to get the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    // address of the same-named entrypoint in the generated interpreter code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    call_VM_leaf(noreg, CAST_FROM_FN_PTR(address, Interpreter::remove_activation_preserving_args_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    // Jump to Interpreter::_remove_activation_preserving_args_entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    jmpl(O0, G0, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
void InterpreterMacroAssembler::load_earlyret_value(TosState state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  Register thr_state = G4_scratch;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   192
  ld_ptr(G2_thread, JavaThread::jvmti_thread_state_offset(), thr_state);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   193
  const Address tos_addr(thr_state, JvmtiThreadState::earlyret_tos_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   194
  const Address oop_addr(thr_state, JvmtiThreadState::earlyret_oop_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   195
  const Address val_addr(thr_state, JvmtiThreadState::earlyret_value_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  switch (state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  case ltos: ld_long(val_addr, Otos_l);                   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  case atos: ld_ptr(oop_addr, Otos_l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
             st_ptr(G0, oop_addr);                        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  case btos:                                           // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  case ctos:                                           // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  case stos:                                           // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  case itos: ld(val_addr, Otos_l1);                       break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  case ftos: ldf(FloatRegisterImpl::S, val_addr, Ftos_f); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  case dtos: ldf(FloatRegisterImpl::D, val_addr, Ftos_d); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  case vtos: /* nothing to do */                          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  default  : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // Clean up tos value in the jvmti thread state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  or3(G0, ilgl, G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  stw(G3_scratch, tos_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  st_long(G0, val_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
void InterpreterMacroAssembler::check_and_handle_earlyret(Register scratch_reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  if (JvmtiExport::can_force_early_return()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    Register thr_state = G3_scratch;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   221
    ld_ptr(G2_thread, JavaThread::jvmti_thread_state_offset(), thr_state);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    tst(thr_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    br(zero, false, pt, L); // if (thread->jvmti_thread_state() == NULL) exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    // Initiate earlyret handling only if it is not already being processed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    // If the flag has the earlyret_processing bit set, it means that this code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // is called *during* earlyret handling - we don't want to reenter.
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   229
    ld(thr_state, JvmtiThreadState::earlyret_state_offset(), G4_scratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    cmp(G4_scratch, JvmtiThreadState::earlyret_pending);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    br(Assembler::notEqual, false, pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    // Call Interpreter::remove_activation_early_entry() to get the address of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    // same-named entrypoint in the generated interpreter code
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   236
    ld(thr_state, JvmtiThreadState::earlyret_tos_offset(), Otos_l1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    call_VM_leaf(noreg, CAST_FROM_FN_PTR(address, Interpreter::remove_activation_early_entry), Otos_l1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    // Jump to Interpreter::_remove_activation_early_entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    jmpl(O0, G0, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
void InterpreterMacroAssembler::super_call_VM_leaf(Register thread_cache, address entry_point, Register arg_1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  mov(arg_1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  MacroAssembler::call_VM_leaf_base(thread_cache, entry_point, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
#ifndef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
void InterpreterMacroAssembler::dispatch_base(TosState state, address* table) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  dispatch_Lbyte_code(state, table);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
void InterpreterMacroAssembler::dispatch_normal(TosState state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  dispatch_base(state, Interpreter::normal_table(state));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
void InterpreterMacroAssembler::dispatch_only(TosState state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  dispatch_base(state, Interpreter::dispatch_table(state));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
// common code to dispatch and dispatch_only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
// dispatch value in Lbyte_code and increment Lbcp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
void InterpreterMacroAssembler::dispatch_Lbyte_code(TosState state, address* table, int bcp_incr, bool verify) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  verify_FPU(1, state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  // %%%%% maybe implement +VerifyActivationFrameSize here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  //verify_thread(); //too slow; we will just verify on method entry & exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  if (verify) interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
#ifdef FAST_DISPATCH
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  if (table == Interpreter::dispatch_table(state)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    // use IdispatchTables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    add(Lbyte_code, Interpreter::distance_from_dispatch_table(state), Lbyte_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                                                        // add offset to correct dispatch table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    sll(Lbyte_code, LogBytesPerWord, Lbyte_code);       // multiply by wordSize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    ld_ptr(IdispatchTables, Lbyte_code, G3_scratch);    // get entry addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    // dispatch table to use
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   290
    AddressLiteral tbl(table);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    sll(Lbyte_code, LogBytesPerWord, Lbyte_code);       // multiply by wordSize
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   292
    set(tbl, G3_scratch);                               // compute addr of table
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    ld_ptr(G3_scratch, Lbyte_code, G3_scratch);         // get entry addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
#ifdef FAST_DISPATCH
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  jmp( G3_scratch, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  if (bcp_incr != 0)  delayed()->inc(Lbcp, bcp_incr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  else                delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
// Helpers for expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
// Longs and doubles are Category 2 computational types in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
// JVM specification (section 3.11.1) and take 2 expression stack or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
// local slots.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
// Aligning them on 32 bit with tagged stacks is hard because the code generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
// for the dup* bytecodes depends on what types are already on the stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
// If the types are split into the two stack/local slots, that is much easier
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
// (and we can use 0 for non-reference tags).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// Known good alignment in _LP64 but unknown otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
void InterpreterMacroAssembler::load_unaligned_double(Register r1, int offset, FloatRegister d) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  ldf(FloatRegisterImpl::D, r1, offset, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  ldf(FloatRegisterImpl::S, r1, offset, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  ldf(FloatRegisterImpl::S, r1, offset + Interpreter::stackElementSize(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
// Known good alignment in _LP64 but unknown otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
void InterpreterMacroAssembler::store_unaligned_double(FloatRegister d, Register r1, int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  stf(FloatRegisterImpl::D, d, r1, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // store something more useful here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  debug_only(stx(G0, r1, offset+Interpreter::stackElementSize());)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  stf(FloatRegisterImpl::S, d, r1, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  stf(FloatRegisterImpl::S, d->successor(), r1, offset + Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
// Known good alignment in _LP64 but unknown otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
void InterpreterMacroAssembler::load_unaligned_long(Register r1, int offset, Register rd) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  ldx(r1, offset, rd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  ld(r1, offset, rd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  ld(r1, offset + Interpreter::stackElementSize(), rd->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
// Known good alignment in _LP64 but unknown otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
void InterpreterMacroAssembler::store_unaligned_long(Register l, Register r1, int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  stx(l, r1, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // store something more useful here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  debug_only(stx(G0, r1, offset+Interpreter::stackElementSize());)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  st(l, r1, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  st(l->successor(), r1, offset + Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
void InterpreterMacroAssembler::verify_stack_tag(frame::Tag t,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
                                                 Register r,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
                                                 Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    Label ok, long_ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    ld_ptr(Lesp, Interpreter::expr_tag_offset_in_bytes(0), r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    if (t == frame::TagCategory2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
      cmp(r, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
      brx(Assembler::equal, false, Assembler::pt, long_ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
      delayed()->ld_ptr(Lesp, Interpreter::expr_tag_offset_in_bytes(1), r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
      stop("stack long/double tag value bad");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
      bind(long_ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
      cmp(r, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    } else if (t == frame::TagValue) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
      cmp(r, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
      assert_different_registers(r, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
      mov(t, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
      cmp(r, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    brx(Assembler::equal, false, Assembler::pt, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    // Also compare if the stack value is zero, then the tag might
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    // not have been set coming from deopt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    ld_ptr(Lesp, Interpreter::expr_offset_in_bytes(0), r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    cmp(r, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    brx(Assembler::equal, false, Assembler::pt, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    stop("Stack tag value is bad");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
void InterpreterMacroAssembler::pop_i(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // Uses destination register r for scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  debug_only(verify_stack_tag(frame::TagValue, r));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  ld(Lesp, Interpreter::expr_offset_in_bytes(0), r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  inc(Lesp, Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  debug_only(verify_esp(Lesp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
void InterpreterMacroAssembler::pop_ptr(Register r, Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // Uses destination register r for scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  debug_only(verify_stack_tag(frame::TagReference, r, scratch));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  ld_ptr(Lesp, Interpreter::expr_offset_in_bytes(0), r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  inc(Lesp, Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  debug_only(verify_esp(Lesp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
void InterpreterMacroAssembler::pop_l(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // Uses destination register r for scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  debug_only(verify_stack_tag(frame::TagCategory2, r));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  load_unaligned_long(Lesp, Interpreter::expr_offset_in_bytes(0), r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  inc(Lesp, 2*Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  debug_only(verify_esp(Lesp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
void InterpreterMacroAssembler::pop_f(FloatRegister f, Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  debug_only(verify_stack_tag(frame::TagValue, scratch));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  ldf(FloatRegisterImpl::S, Lesp, Interpreter::expr_offset_in_bytes(0), f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  inc(Lesp, Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  debug_only(verify_esp(Lesp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
void InterpreterMacroAssembler::pop_d(FloatRegister f, Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  debug_only(verify_stack_tag(frame::TagCategory2, scratch));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  load_unaligned_double(Lesp, Interpreter::expr_offset_in_bytes(0), f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  inc(Lesp, 2*Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  debug_only(verify_esp(Lesp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
// (Note use register first, then decrement so dec can be done during store stall)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
void InterpreterMacroAssembler::tag_stack(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    st_ptr(r, Lesp, Interpreter::tag_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
void InterpreterMacroAssembler::tag_stack(frame::Tag t, Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    assert (frame::TagValue == 0, "TagValue must be zero");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    if (t == frame::TagValue) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      st_ptr(G0, Lesp, Interpreter::tag_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    } else if (t == frame::TagCategory2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      st_ptr(G0, Lesp, Interpreter::tag_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
      // Tag next slot down too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
      st_ptr(G0, Lesp, -Interpreter::stackElementSize() + Interpreter::tag_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
      assert_different_registers(r, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      mov(t, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
      st_ptr(O3, Lesp, Interpreter::tag_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
void InterpreterMacroAssembler::push_i(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  debug_only(verify_esp(Lesp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  tag_stack(frame::TagValue, r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  st(  r,    Lesp, Interpreter::value_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  dec( Lesp, Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
void InterpreterMacroAssembler::push_ptr(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  tag_stack(frame::TagReference, r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  st_ptr(  r,    Lesp, Interpreter::value_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  dec( Lesp, Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
void InterpreterMacroAssembler::push_ptr(Register r, Register tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  tag_stack(tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  st_ptr(r, Lesp, Interpreter::value_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  dec( Lesp, Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
// remember: our convention for longs in SPARC is:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
// O0 (Otos_l1) has high-order part in first word,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
// O1 (Otos_l2) has low-order part in second word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
void InterpreterMacroAssembler::push_l(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  debug_only(verify_esp(Lesp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  tag_stack(frame::TagCategory2, r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  // Longs are in stored in memory-correct order, even if unaligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  // and may be separated by stack tags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  int offset = -Interpreter::stackElementSize() + Interpreter::value_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  store_unaligned_long(r, Lesp, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  dec(Lesp, 2 * Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
void InterpreterMacroAssembler::push_f(FloatRegister f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  debug_only(verify_esp(Lesp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  tag_stack(frame::TagValue, Otos_i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  stf(FloatRegisterImpl::S, f, Lesp, Interpreter::value_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  dec(Lesp, Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
void InterpreterMacroAssembler::push_d(FloatRegister d)   {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  debug_only(verify_esp(Lesp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  tag_stack(frame::TagCategory2, Otos_i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  // Longs are in stored in memory-correct order, even if unaligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  // and may be separated by stack tags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  int offset = -Interpreter::stackElementSize() + Interpreter::value_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  store_unaligned_double(d, Lesp, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  dec(Lesp, 2 * Interpreter::stackElementSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
void InterpreterMacroAssembler::push(TosState state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  switch (state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    case atos: push_ptr();            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    case btos: push_i();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    case ctos:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    case stos: push_i();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    case itos: push_i();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    case ltos: push_l();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    case ftos: push_f();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    case dtos: push_d();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    case vtos: /* nothing to do */    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    default  : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
void InterpreterMacroAssembler::pop(TosState state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  switch (state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    case atos: pop_ptr();            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    case btos: pop_i();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    case ctos:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    case stos: pop_i();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    case itos: pop_i();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    case ltos: pop_l();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    case ftos: pop_f();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    case dtos: pop_d();              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    case vtos: /* nothing to do */   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    default  : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
// Tagged stack helpers for swap and dup
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
void InterpreterMacroAssembler::load_ptr_and_tag(int n, Register val,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
                                                 Register tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  ld_ptr(Lesp, Interpreter::expr_offset_in_bytes(n), val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    ld_ptr(Lesp, Interpreter::expr_tag_offset_in_bytes(n), tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
void InterpreterMacroAssembler::store_ptr_and_tag(int n, Register val,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
                                                  Register tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  st_ptr(val, Lesp, Interpreter::expr_offset_in_bytes(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    st_ptr(tag, Lesp, Interpreter::expr_tag_offset_in_bytes(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
void InterpreterMacroAssembler::load_receiver(Register param_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
                                              Register recv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  sll(param_count, Interpreter::logStackElementSize(), param_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
    add(param_count, Interpreter::value_offset_in_bytes(), param_count);  // get obj address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  ld_ptr(Lesp, param_count, recv);                      // gets receiver Oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
void InterpreterMacroAssembler::empty_expression_stack() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  // Reset Lesp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  sub( Lmonitors, wordSize, Lesp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  // Reset SP by subtracting more space from Lesp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  verify_oop(Lmethod);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   597
  assert(G4_scratch != Gframe_size, "Only you can prevent register aliasing!");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  // A native does not need to do this, since its callee does not change SP.
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   600
  ld(Lmethod, methodOopDesc::access_flags_offset(), Gframe_size);  // Load access flags.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  btst(JVM_ACC_NATIVE, Gframe_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  br(Assembler::notZero, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  // Compute max expression stack+register save area
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   606
  lduh(Lmethod, in_bytes(methodOopDesc::max_stack_offset()), Gframe_size);  // Load max stack.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  if (TaggedStackInterpreter) sll ( Gframe_size, 1, Gframe_size);  // max_stack * 2 for TAGS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  add( Gframe_size, frame::memory_parameter_word_sp_offset, Gframe_size );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  // now set up a stack frame with the size computed above
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  //round_to( Gframe_size, WordsPerLong ); // -- moved down to the "and" below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  sll( Gframe_size, LogBytesPerWord, Gframe_size );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  sub( Lesp, Gframe_size, Gframe_size );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  and3( Gframe_size, -(2 * wordSize), Gframe_size );          // align SP (downwards) to an 8/16-byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  debug_only(verify_sp(Gframe_size, G4_scratch));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  sub(Gframe_size, STACK_BIAS, Gframe_size );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  mov(Gframe_size, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
void InterpreterMacroAssembler::verify_sp(Register Rsp, Register Rtemp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  Label Bad, OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  // Saved SP must be aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  btst(2*BytesPerWord-1, Rsp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  btst(LongAlignmentMask, Rsp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  br(Assembler::notZero, false, Assembler::pn, Bad);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  // Saved SP, plus register window size, must not be above FP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  add(Rsp, frame::register_save_words * wordSize, Rtemp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  sub(Rtemp, STACK_BIAS, Rtemp);  // Bias Rtemp before cmp to FP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  cmp(Rtemp, FP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  brx(Assembler::greaterUnsigned, false, Assembler::pn, Bad);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  // Saved SP must not be ridiculously below current SP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  size_t maxstack = MAX2(JavaThread::stack_size_at_create(), (size_t) 4*K*K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  set(maxstack, Rtemp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  sub(SP, Rtemp, Rtemp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  add(Rtemp, STACK_BIAS, Rtemp);  // Unbias Rtemp before cmp to Rsp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  cmp(Rsp, Rtemp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  brx(Assembler::lessUnsigned, false, Assembler::pn, Bad);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  br(Assembler::always, false, Assembler::pn, OK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  bind(Bad);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  stop("on return to interpreted call, restored SP is corrupted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  bind(OK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
void InterpreterMacroAssembler::verify_esp(Register Resp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  // about to read or write Resp[0]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  // make sure it is not in the monitors or the register save area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  Label OK1, OK2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  cmp(Resp, Lmonitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  brx(Assembler::lessUnsigned, true, Assembler::pt, OK1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  delayed()->sub(Resp, frame::memory_parameter_word_sp_offset * wordSize, Resp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  stop("too many pops:  Lesp points into monitor area");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  bind(OK1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  sub(Resp, STACK_BIAS, Resp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  cmp(Resp, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  brx(Assembler::greaterEqualUnsigned, false, Assembler::pt, OK2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  delayed()->add(Resp, STACK_BIAS + frame::memory_parameter_word_sp_offset * wordSize, Resp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  stop("too many pushes:  Lesp points into register window");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  bind(OK2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
// Load compiled (i2c) or interpreter entry when calling from interpreted and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
// do the call. Centralized so that all interpreter calls will do the same actions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
// If jvmti single stepping is on for a thread we must not call compiled code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
void InterpreterMacroAssembler::call_from_interpreter(Register target, Register scratch, Register Rret) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  // Assume we want to go compiled if available
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  ld_ptr(G5_method, in_bytes(methodOopDesc::from_interpreted_offset()), target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  if (JvmtiExport::can_post_interpreter_events()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    // JVMTI events, such as single-stepping, are implemented partly by avoiding running
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    // compiled code in threads for which the event is enabled.  Check here for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
    // interp_only_mode if these events CAN be enabled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
    verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    Label skip_compiled_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   707
    const Address interp_only(G2_thread, JavaThread::interp_only_mode_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    ld(interp_only, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    tst(scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    br(Assembler::notZero, true, Assembler::pn, skip_compiled_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    delayed()->ld_ptr(G5_method, in_bytes(methodOopDesc::interpreter_entry_offset()), target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    bind(skip_compiled_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  // the i2c_adapters need methodOop in G5_method (right? %%%)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    Label ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
    br_notnull(target, false, Assembler::pt, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    stop("null entry point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  // Adjust Rret first so Llast_SP can be same as Rret
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  add(Rret, -frame::pc_return_offset, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  add(Lesp, BytesPerWord, Gargs); // setup parameter pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  // Record SP so we can remove any stack space allocated by adapter transition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  jmp(target, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  delayed()->mov(SP, Llast_SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
void InterpreterMacroAssembler::if_cmp(Condition cc, bool ptr_compare) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  Label not_taken;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  if (ptr_compare) brx(cc, false, Assembler::pn, not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  else             br (cc, false, Assembler::pn, not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  TemplateTable::branch(false,false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  bind(not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  profile_not_taken_branch(G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
void InterpreterMacroAssembler::get_2_byte_integer_at_bcp(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
                                  int         bcp_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
                                  Register    Rtmp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
                                  Register    Rdst,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
                                  signedOrNot is_signed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
                                  setCCOrNot  should_set_CC ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  assert(Rtmp != Rdst, "need separate temp register");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  switch (is_signed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
   default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
   case   Signed:  ldsb( Lbcp, bcp_offset, Rdst  );  break; // high byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
   case Unsigned:  ldub( Lbcp, bcp_offset, Rdst  );  break; // high byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  ldub( Lbcp, bcp_offset + 1, Rtmp ); // low byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  sll( Rdst, BitsPerByte, Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  switch (should_set_CC ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
   default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
   case      set_CC:  orcc( Rdst, Rtmp, Rdst ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
   case dont_set_CC:  or3(  Rdst, Rtmp, Rdst ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
void InterpreterMacroAssembler::get_4_byte_integer_at_bcp(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
                                  int        bcp_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
                                  Register   Rtmp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
                                  Register   Rdst,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
                                  setCCOrNot should_set_CC ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  assert(Rtmp != Rdst, "need separate temp register");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  add( Lbcp, bcp_offset, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  andcc( Rtmp, 3, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  Label aligned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  switch (should_set_CC ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
   default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
   case      set_CC: break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
   case dont_set_CC: break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  br(Assembler::zero, true, Assembler::pn, aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  delayed()->ldsw(Rtmp, 0, Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  delayed()->ld(Rtmp, 0, Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  ldub(Lbcp, bcp_offset + 3, Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  ldub(Lbcp, bcp_offset + 2, Rtmp);  sll(Rtmp,  8, Rtmp);  or3(Rtmp, Rdst, Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  ldub(Lbcp, bcp_offset + 1, Rtmp);  sll(Rtmp, 16, Rtmp);  or3(Rtmp, Rdst, Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  ldsb(Lbcp, bcp_offset + 0, Rtmp);  sll(Rtmp, 24, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  // Unsigned load is faster than signed on some implementations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  ldub(Lbcp, bcp_offset + 0, Rtmp);  sll(Rtmp, 24, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  or3(Rtmp, Rdst, Rdst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  bind(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  if (should_set_CC == set_CC) tst(Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
void InterpreterMacroAssembler::get_cache_and_index_at_bcp(Register cache, Register tmp, int bcp_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  assert(bcp_offset > 0, "bcp is still pointing to start of bytecode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  assert_different_registers(cache, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  get_2_byte_integer_at_bcp(bcp_offset, cache, tmp, Unsigned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
              // convert from field index to ConstantPoolCacheEntry index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
              // and from word index to byte offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  sll(tmp, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord), tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  add(LcpoolCache, tmp, cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
void InterpreterMacroAssembler::get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  assert(bcp_offset > 0, "bcp is still pointing to start of bytecode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  assert_different_registers(cache, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  get_2_byte_integer_at_bcp(bcp_offset, cache, tmp, Unsigned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
              // convert from field index to ConstantPoolCacheEntry index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
              // and from word index to byte offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  sll(tmp, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord), tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
              // skip past the header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  add(tmp, in_bytes(constantPoolCacheOopDesc::base_offset()), tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
              // construct pointer to cache entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  add(LcpoolCache, tmp, cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
// Generate a subtype check: branch to ok_is_subtype if sub_klass is
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   844
// a subtype of super_klass.  Blows registers Rsuper_klass, Rsub_klass, tmp1, tmp2.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
void InterpreterMacroAssembler::gen_subtype_check(Register Rsub_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
                                                  Register Rsuper_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
                                                  Register Rtmp1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
                                                  Register Rtmp2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
                                                  Register Rtmp3,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
                                                  Label &ok_is_subtype ) {
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2140
diff changeset
   851
  Label not_subtype;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  // Profile the not-null value's klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  profile_typecheck(Rsub_klass, Rtmp1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2140
diff changeset
   856
  check_klass_subtype_fast_path(Rsub_klass, Rsuper_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2140
diff changeset
   857
                                Rtmp1, Rtmp2,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2140
diff changeset
   858
                                &ok_is_subtype, &not_subtype, NULL);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2140
diff changeset
   859
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2140
diff changeset
   860
  check_klass_subtype_slow_path(Rsub_klass, Rsuper_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2140
diff changeset
   861
                                Rtmp1, Rtmp2, Rtmp3, /*hack:*/ noreg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2140
diff changeset
   862
                                &ok_is_subtype, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  bind(not_subtype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  profile_typecheck_failed(Rtmp1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
// Separate these two to allow for delay slot in middle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
// These are used to do a test and full jump to exception-throwing code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
// %%%%% Could possibly reoptimize this by testing to see if could use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
// a single conditional branch (i.e. if span is small enough.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
// If you go that route, than get rid of the split and give up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
// on the delay-slot hack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
void InterpreterMacroAssembler::throw_if_not_1_icc( Condition ok_condition,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
                                                    Label&    ok ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  br(ok_condition, true, pt, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  // DELAY SLOT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
void InterpreterMacroAssembler::throw_if_not_1_xcc( Condition ok_condition,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
                                                    Label&    ok ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  bp( ok_condition, true, Assembler::xcc, pt, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  // DELAY SLOT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
void InterpreterMacroAssembler::throw_if_not_1_x( Condition ok_condition,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
                                                  Label&    ok ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  brx(ok_condition, true, pt, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  // DELAY SLOT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
void InterpreterMacroAssembler::throw_if_not_2( address  throw_entry_point,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
                                                Register Rscratch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
                                                Label&   ok ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  assert(throw_entry_point != NULL, "entry point must be generated by now");
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   901
  AddressLiteral dest(throw_entry_point);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
   902
  jump_to(dest, Rscratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
// And if you cannot use the delay slot, here is a shorthand:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
void InterpreterMacroAssembler::throw_if_not_icc( Condition ok_condition,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
                                                  address   throw_entry_point,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
                                                  Register  Rscratch ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  Label ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  if (ok_condition != never) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
    throw_if_not_1_icc( ok_condition, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  throw_if_not_2( throw_entry_point, Rscratch, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
void InterpreterMacroAssembler::throw_if_not_xcc( Condition ok_condition,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
                                                  address   throw_entry_point,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
                                                  Register  Rscratch ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  Label ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  if (ok_condition != never) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
    throw_if_not_1_xcc( ok_condition, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
  throw_if_not_2( throw_entry_point, Rscratch, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
void InterpreterMacroAssembler::throw_if_not_x( Condition ok_condition,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
                                                address   throw_entry_point,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
                                                Register  Rscratch ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  Label ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  if (ok_condition != never) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
    throw_if_not_1_x( ok_condition, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  throw_if_not_2( throw_entry_point, Rscratch, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
// Check that index is in range for array, then shift index by index_shift, and put arrayOop + shifted_index into res
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
// Note: res is still shy of address by array offset into object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
void InterpreterMacroAssembler::index_check_without_pop(Register array, Register index, int index_shift, Register tmp, Register res) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  verify_oop(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  // sign extend since tos (index) can be a 32bit value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  sra(index, G0, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  // check array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  Label ptr_ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  tst(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  throw_if_not_1_x( notZero, ptr_ok );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  delayed()->ld( array, arrayOopDesc::length_offset_in_bytes(), tmp ); // check index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  throw_if_not_2( Interpreter::_throw_NullPointerException_entry, G3_scratch, ptr_ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  Label index_ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  cmp(index, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  throw_if_not_1_icc( lessUnsigned, index_ok );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  if (index_shift > 0)  delayed()->sll(index, index_shift, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  else                  delayed()->add(array, index, res); // addr - const offset in index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  // convention: move aberrant index into G3_scratch for exception message
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  mov(index, G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  throw_if_not_2( Interpreter::_throw_ArrayIndexOutOfBoundsException_entry, G4_scratch, index_ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  // add offset if didn't do it in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  if (index_shift > 0)   add(array, index, res); // addr - const offset in index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
void InterpreterMacroAssembler::index_check(Register array, Register index, int index_shift, Register tmp, Register res) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  // pop array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  pop_ptr(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  // check array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
  index_check_without_pop(array, index, index_shift, tmp, res);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
void InterpreterMacroAssembler::get_constant_pool(Register Rdst) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  ld_ptr(Lmethod, in_bytes(methodOopDesc::constants_offset()), Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
void InterpreterMacroAssembler::get_constant_pool_cache(Register Rdst) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  get_constant_pool(Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  ld_ptr(Rdst, constantPoolOopDesc::cache_offset_in_bytes(), Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
void InterpreterMacroAssembler::get_cpool_and_tags(Register Rcpool, Register Rtags) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
  get_constant_pool(Rcpool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  ld_ptr(Rcpool, constantPoolOopDesc::tags_offset_in_bytes(), Rtags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
// unlock if synchronized method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
// Unlock the receiver if this is a synchronized method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
// Unlock any Java monitors from syncronized blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
// If there are locked Java monitors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
//    If throw_monitor_exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
//       throws IllegalMonitorStateException
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
//    Else if install_monitor_exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
//       installs IllegalMonitorStateException
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
//    Else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
//       no error processing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
void InterpreterMacroAssembler::unlock_if_synchronized_method(TosState state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
                                                              bool throw_monitor_exception,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
                                                              bool install_monitor_exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  Label unlocked, unlock, no_unlock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  // get the value of _do_not_unlock_if_synchronized into G1_scratch
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1020
  const Address do_not_unlock_if_synchronized(G2_thread,
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1021
    JavaThread::do_not_unlock_if_synchronized_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  ldbool(do_not_unlock_if_synchronized, G1_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  stbool(G0, do_not_unlock_if_synchronized); // reset the flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  // check if synchronized method
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1026
  const Address access_flags(Lmethod, methodOopDesc::access_flags_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  push(state); // save tos
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1029
  ld(access_flags, G3_scratch); // Load access flags.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  btst(JVM_ACC_SYNCHRONIZED, G3_scratch);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1031
  br(zero, false, pt, unlocked);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  // Don't unlock anything if the _do_not_unlock_if_synchronized flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  // is set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  tstbool(G1_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  br(Assembler::notZero, false, pn, no_unlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  // BasicObjectLock will be first in list, since this is a synchronized method. However, need
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  // to check that the object has not been unlocked by an explicit monitorexit bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  //Intel: if (throw_monitor_exception) ... else ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
  // Entry already unlocked, need to throw exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  //...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  // pass top-most monitor elem
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  add( top_most_monitor(), O1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  ld_ptr(O1, BasicObjectLock::obj_offset_in_bytes(), G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  br_notnull(G3_scratch, false, pt, unlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  if (throw_monitor_exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
    // Entry already unlocked need to throw an exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
    MacroAssembler::call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_illegal_monitor_state_exception));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
    should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
    // Monitor already unlocked during a stack unroll.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
    // If requested, install an illegal_monitor_state_exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
    // Continue with stack unrolling.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
    if (install_monitor_exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
      MacroAssembler::call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::new_illegal_monitor_state_exception));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    ba(false, unlocked);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  bind(unlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  unlock_object(O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  bind(unlocked);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  // I0, I1: Might contain return value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  // Check that all monitors are unlocked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  { Label loop, exception, entry, restart;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
    Register Rmptr   = O0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    Register Rtemp   = O1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
    Register Rlimit  = Lmonitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
    const jint delta = frame::interpreter_frame_monitor_size() * wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
    assert( (delta & LongAlignmentMask) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
            "sizeof BasicObjectLock must be even number of doublewords");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
    #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
    add(top_most_monitor(), Rmptr, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
      // ensure that Rmptr starts out above (or at) Rlimit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
      cmp(Rmptr, Rlimit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
      brx(Assembler::greaterEqualUnsigned, false, pn, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
      delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
      stop("monitor stack has negative size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
      bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
    #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    bind(restart);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
    ba(false, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
    delayed()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
    add(top_most_monitor(), Rmptr, delta);      // points to current entry, starting with bottom-most entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
    // Entry is still locked, need to throw exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
    bind(exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
    if (throw_monitor_exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
      MacroAssembler::call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_illegal_monitor_state_exception));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
      should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
      // Stack unrolling. Unlock object and if requested, install illegal_monitor_exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
      // Unlock does not block, so don't have to worry about the frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
      unlock_object(Rmptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
      if (install_monitor_exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
        MacroAssembler::call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::new_illegal_monitor_state_exception));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
      ba(false, restart);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
      delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
    bind(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
    cmp(Rtemp, G0);                             // check if current entry is used
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
    brx(Assembler::notEqual, false, pn, exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
    delayed()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
    dec(Rmptr, delta);                          // otherwise advance to next entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
    #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
      // ensure that Rmptr has not somehow stepped below Rlimit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
      cmp(Rmptr, Rlimit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
      brx(Assembler::greaterEqualUnsigned, false, pn, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
      delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
      stop("ran off the end of the monitor stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
      bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
    #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
    bind(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
    cmp(Rmptr, Rlimit);                         // check if bottom reached
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
    brx(Assembler::notEqual, true, pn, loop);   // if not at bottom then check this entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
    delayed()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
    ld_ptr(Rmptr, BasicObjectLock::obj_offset_in_bytes() - delta, Rtemp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  bind(no_unlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  pop(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
// remove activation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
// Unlock the receiver if this is a synchronized method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
// Unlock any Java monitors from syncronized blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
// Remove the activation from the stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
// If there are locked Java monitors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
//    If throw_monitor_exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
//       throws IllegalMonitorStateException
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
//    Else if install_monitor_exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
//       installs IllegalMonitorStateException
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
//    Else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
//       no error processing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
void InterpreterMacroAssembler::remove_activation(TosState state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
                                                  bool throw_monitor_exception,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
                                                  bool install_monitor_exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  unlock_if_synchronized_method(state, throw_monitor_exception, install_monitor_exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
  // save result (push state before jvmti call and pop it afterwards) and notify jvmti
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
  notify_method_exit(false, state, NotifyJVMTI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  verify_oop(Lmethod);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
  verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
  // return tos
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
  assert(Otos_l1 == Otos_i, "adjust code below");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  switch (state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
  case ltos: mov(Otos_l, Otos_l->after_save()); break; // O0 -> I0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
  case ltos: mov(Otos_l2, Otos_l2->after_save()); // fall through  // O1 -> I1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
  case btos:                                      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
  case ctos:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  case stos:                                      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  case atos:                                      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  case itos: mov(Otos_l1, Otos_l1->after_save());    break;        // O0 -> I0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
  case ftos:                                      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
  case dtos:                                      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  case vtos: /* nothing to do */                     break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  default  : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
#if defined(COMPILER2) && !defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
  if (state == ltos) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
    // C2 expects long results in G1 we can't tell if we're returning to interpreted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
    // or compiled so just be safe use G1 and O0/O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
    // Shift bits into high (msb) of G1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
    sllx(Otos_l1->after_save(), 32, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
    // Zero extend low bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
    srl (Otos_l2->after_save(), 0, Otos_l2->after_save());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
    or3 (Otos_l2->after_save(), G1, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
#endif /* COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
// Lock object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
// Argument - lock_reg points to the BasicObjectLock to be used for locking,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
//            it must be initialized with the object to lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
void InterpreterMacroAssembler::lock_object(Register lock_reg, Register Object) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
  if (UseHeavyMonitors) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
    call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorenter), lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
    Register obj_reg = Object;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
    Register mark_reg = G4_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
    Register temp_reg = G1_scratch;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1221
    Address  lock_addr(lock_reg, BasicObjectLock::lock_offset_in_bytes());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1222
    Address  mark_addr(obj_reg, oopDesc::mark_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
    Label    done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
    Label slow_case;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
    assert_different_registers(lock_reg, obj_reg, mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
    // load markOop from object into mark_reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
    ld_ptr(mark_addr, mark_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
    if (UseBiasedLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
      biased_locking_enter(obj_reg, mark_reg, temp_reg, done, &slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
    // get the address of basicLock on stack that will be stored in the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
    // we need a temporary register here as we do not want to clobber lock_reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
    // (cas clobbers the destination register)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
    mov(lock_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
    // set mark reg to be (markOop of object | UNLOCK_VALUE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
    or3(mark_reg, markOopDesc::unlocked_value, mark_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
    // initialize the box  (Must happen before we update the object mark!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
    st_ptr(mark_reg, lock_addr, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
    // compare and exchange object_addr, markOop | 1, stack address of basicLock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
    assert(mark_addr.disp() == 0, "cas must take a zero displacement");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
    casx_under_lock(mark_addr.base(), mark_reg, temp_reg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
      (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
    // if the compare and exchange succeeded we are done (we saw an unlocked object)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
    cmp(mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
    brx(Assembler::equal, true, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
    // We did not see an unlocked object so try the fast recursive case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
    // Check if owner is self by comparing the value in the markOop of object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
    // with the stack pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
    sub(temp_reg, SP, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
    sub(temp_reg, STACK_BIAS, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
    assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
    // Composite "andcc" test:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
    // (a) %sp -vs- markword proximity check, and,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
    // (b) verify mark word LSBs == 0 (Stack-locked).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
    // FFFFF003/FFFFFFFFFFFF003 is (markOopDesc::lock_mask_in_place | -os::vm_page_size())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
    // Note that the page size used for %sp proximity testing is arbitrary and is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
    // unrelated to the actual MMU page size.  We use a 'logical' page size of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
    // 4096 bytes.   F..FFF003 is designed to fit conveniently in the SIMM13 immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
    // field of the andcc instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
    andcc (temp_reg, 0xFFFFF003, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
    // if condition is true we are done and hence we can store 0 in the displaced
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
    // header indicating it is a recursive lock and be done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
    brx(Assembler::zero, true, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
    delayed()->st_ptr(G0, lock_addr, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
    // none of the above fast optimizations worked so we have to get into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
    // slow case of monitor enter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
    bind(slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
    call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorenter), lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
    bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
// Unlocks an object. Used in monitorexit bytecode and remove_activation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
// Argument - lock_reg points to the BasicObjectLock for lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
// Throw IllegalMonitorException if object is not locked by current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
void InterpreterMacroAssembler::unlock_object(Register lock_reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
  if (UseHeavyMonitors) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorexit), lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
    Register obj_reg = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
    Register mark_reg = G4_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
    Register displaced_header_reg = G1_scratch;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1300
    Address  lockobj_addr(lock_reg, BasicObjectLock::obj_offset_in_bytes());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1301
    Address  mark_addr(obj_reg, oopDesc::mark_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
    Label    done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
    if (UseBiasedLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
      // load the object out of the BasicObjectLock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
      ld_ptr(lockobj_addr, obj_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
      biased_locking_exit(mark_addr, mark_reg, done, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
      st_ptr(G0, lockobj_addr);  // free entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
    // Test first if we are in the fast recursive case
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1312
    Address lock_addr(lock_reg, BasicObjectLock::lock_offset_in_bytes() + BasicLock::displaced_header_offset_in_bytes());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1313
    ld_ptr(lock_addr, displaced_header_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
    br_null(displaced_header_reg, true, Assembler::pn, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    delayed()->st_ptr(G0, lockobj_addr);  // free entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
    // See if it is still a light weight lock, if so we just unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
    // the object and we are done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
    if (!UseBiasedLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
      // load the object out of the BasicObjectLock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
      ld_ptr(lockobj_addr, obj_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
    // we have the displaced header in displaced_header_reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
    // we expect to see the stack address of the basicLock in case the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
    // lock is still a light weight lock (lock_reg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
    assert(mark_addr.disp() == 0, "cas must take a zero displacement");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
    casx_under_lock(mark_addr.base(), lock_reg, displaced_header_reg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
      (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
    cmp(lock_reg, displaced_header_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
    brx(Assembler::equal, true, Assembler::pn, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
    delayed()->st_ptr(G0, lockobj_addr);  // free entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
    // The lock has been converted into a heavy lock and hence
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
    // we need to get into the slow case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
    call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorexit), lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
    bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
#ifndef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
// Get the method data pointer from the methodOop and set the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
// specified register to its value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
void InterpreterMacroAssembler::set_method_data_pointer_offset(Register Roff) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  Label get_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
  ld_ptr(Lmethod, in_bytes(methodOopDesc::method_data_offset()), ImethodDataPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  test_method_data_pointer(get_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  add(ImethodDataPtr, in_bytes(methodDataOopDesc::data_offset()), ImethodDataPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  if (Roff != noreg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
    // Roff contains a method data index ("mdi").  It defaults to zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
    add(ImethodDataPtr, Roff, ImethodDataPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
  bind(get_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
// Set the method data pointer for the current bcp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
void InterpreterMacroAssembler::set_method_data_pointer_for_bcp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
  Label zero_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  // Test MDO to avoid the call if it is NULL.
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1369
  ld_ptr(Lmethod, methodOopDesc::method_data_offset(), ImethodDataPtr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
  test_method_data_pointer(zero_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  call_VM_leaf(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::bcp_to_di), Lmethod, Lbcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  set_method_data_pointer_offset(O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  bind(zero_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
// Test ImethodDataPtr.  If it is null, continue at the specified label
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
void InterpreterMacroAssembler::test_method_data_pointer(Label& zero_continue) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  bpr(Assembler::rc_z, false, Assembler::pn, ImethodDataPtr, zero_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  tst(ImethodDataPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  br(Assembler::zero, false, Assembler::pn, zero_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
void InterpreterMacroAssembler::verify_method_data_pointer() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  Label verify_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
  test_method_data_pointer(verify_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
  // If the mdp is valid, it will point to a DataLayout header which is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
  // consistent with the bcp.  The converse is highly probable also.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
  lduh(ImethodDataPtr, in_bytes(DataLayout::bci_offset()), G3_scratch);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1398
  ld_ptr(Lmethod, methodOopDesc::const_offset(), O5);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
  add(G3_scratch, in_bytes(constMethodOopDesc::codes_offset()), G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
  add(G3_scratch, O5, G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  cmp(Lbcp, G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
  brx(Assembler::equal, false, Assembler::pt, verify_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
  Register temp_reg = O5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  delayed()->mov(ImethodDataPtr, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  // %%% should use call_VM_leaf here?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  //call_VM_leaf(noreg, ..., Lmethod, Lbcp, ImethodDataPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
  save_frame_and_mov(sizeof(jdouble) / wordSize, Lmethod, O0, Lbcp, O1);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1409
  Address d_save(FP, -sizeof(jdouble) + STACK_BIAS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
  stf(FloatRegisterImpl::D, Ftos_d, d_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
  mov(temp_reg->after_save(), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
  save_thread(L7_thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
  call(CAST_FROM_FN_PTR(address, InterpreterRuntime::verify_mdp), relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
  restore_thread(L7_thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
  ldf(FloatRegisterImpl::D, d_save, Ftos_d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
  restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
  bind(verify_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
void InterpreterMacroAssembler::test_invocation_counter_for_mdp(Register invocation_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
                                                                Register cur_bcp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
                                                                Register Rtmp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
                                                                Label &profile_continue) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  // Control will flow to "profile_continue" if the counter is less than the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
  // limit or if we call profile_method()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
  // if no method data exists, and the counter is high enough, make one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  bpr(Assembler::rc_nz, false, Assembler::pn, ImethodDataPtr, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
  tst(ImethodDataPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
  br(Assembler::notZero, false, Assembler::pn, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
  // Test to see if we should create a method data oop
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1441
  AddressLiteral profile_limit((address) &InvocationCounter::InterpreterProfileLimit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
  delayed()->nop();
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1444
  sethi(profile_limit, Rtmp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
#else
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1446
  delayed()->sethi(profile_limit, Rtmp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
#endif
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1448
  ld(Rtmp, profile_limit.low10(), Rtmp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
  cmp(invocation_count, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
  br(Assembler::lessUnsigned, false, Assembler::pn, profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
  // Build it now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method), cur_bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
  set_method_data_pointer_offset(O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
  ba(false, profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
// Store a value at some constant offset from the method data pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
void InterpreterMacroAssembler::set_mdp_data_at(int constant, Register value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
  st_ptr(value, ImethodDataPtr, constant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
void InterpreterMacroAssembler::increment_mdp_data_at(Address counter,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
                                                      Register bumped_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
                                                      bool decrement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  // Load the counter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  ld_ptr(counter, bumped_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  if (decrement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
    // Decrement the register.  Set condition codes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
    subcc(bumped_count, DataLayout::counter_increment, bumped_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
    // If the decrement causes the counter to overflow, stay negative
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
    brx(Assembler::negative, true, Assembler::pn, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
    // Store the decremented counter, if it is still negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
    delayed()->st_ptr(bumped_count, counter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
    // Increment the register.  Set carry flag.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
    addcc(bumped_count, DataLayout::counter_increment, bumped_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
    // If the increment causes the counter to overflow, pull back by 1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
    assert(DataLayout::counter_increment == 1, "subc works");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
    subc(bumped_count, G0, bumped_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
    // Store the incremented counter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
    st_ptr(bumped_count, counter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
// Increment the value at some constant offset from the method data pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
void InterpreterMacroAssembler::increment_mdp_data_at(int constant,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
                                                      Register bumped_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
                                                      bool decrement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
  // Locate the counter at a fixed offset from the mdp:
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1506
  Address counter(ImethodDataPtr, constant);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
  increment_mdp_data_at(counter, bumped_count, decrement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
// Increment the value at some non-fixed (reg + constant) offset from
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
// the method data pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
void InterpreterMacroAssembler::increment_mdp_data_at(Register reg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
                                                      int constant,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
                                                      Register bumped_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
                                                      Register scratch2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
                                                      bool decrement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
  // Add the constant to reg to get the offset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
  add(ImethodDataPtr, reg, scratch2);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  1520
  Address counter(scratch2, constant);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
  increment_mdp_data_at(counter, bumped_count, decrement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
// Set a flag value at the current method data pointer position.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
// Updates a single byte of the header, to avoid races with other header bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
void InterpreterMacroAssembler::set_mdp_flag_at(int flag_constant,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
                                                Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
  // Load the data header
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
  ldub(ImethodDataPtr, in_bytes(DataLayout::flags_offset()), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
  // Set the flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
  or3(scratch, flag_constant, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
  // Store the modified header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
  stb(scratch, ImethodDataPtr, in_bytes(DataLayout::flags_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
// Test the location at some offset from the method data pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
// If it is not equal to value, branch to the not_equal_continue Label.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
// Set condition codes to match the nullness of the loaded value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
void InterpreterMacroAssembler::test_mdp_data_at(int offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
                                                 Register value,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
                                                 Label& not_equal_continue,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
                                                 Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
  ld_ptr(ImethodDataPtr, offset, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
  cmp(value, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
  brx(Assembler::notEqual, false, Assembler::pn, not_equal_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
  delayed()->tst(scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
// Update the method data pointer by the displacement located at some fixed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
// offset from the method data pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
void InterpreterMacroAssembler::update_mdp_by_offset(int offset_of_disp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
                                                     Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
  ld_ptr(ImethodDataPtr, offset_of_disp, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
  add(ImethodDataPtr, scratch, ImethodDataPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
// Update the method data pointer by the displacement located at the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
// offset (reg + offset_of_disp).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
void InterpreterMacroAssembler::update_mdp_by_offset(Register reg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
                                                     int offset_of_disp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
                                                     Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
  add(reg, offset_of_disp, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
  ld_ptr(ImethodDataPtr, scratch, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
  add(ImethodDataPtr, scratch, ImethodDataPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
// Update the method data pointer by a simple constant displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
void InterpreterMacroAssembler::update_mdp_by_constant(int constant) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
  add(ImethodDataPtr, constant, ImethodDataPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
// Update the method data pointer for a _ret bytecode whose target
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
// was not among our cached targets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
void InterpreterMacroAssembler::update_mdp_for_ret(TosState state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
                                                   Register return_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
  push(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
  st_ptr(return_bci, l_tmp);  // protect return_bci, in case it is volatile
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
  call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::update_mdp_for_ret), return_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
  ld_ptr(l_tmp, return_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
  pop(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
// Count a taken branch in the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
void InterpreterMacroAssembler::profile_taken_branch(Register scratch, Register bumped_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
    // We are taking a branch.  Increment the taken count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
    increment_mdp_data_at(in_bytes(JumpData::taken_offset()), bumped_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
    // The method data pointer needs to be updated to reflect the new target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
    update_mdp_by_offset(in_bytes(JumpData::displacement_offset()), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
// Count a not-taken branch in the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
void InterpreterMacroAssembler::profile_not_taken_branch(Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
    // We are taking a branch.  Increment the not taken count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
    increment_mdp_data_at(in_bytes(BranchData::not_taken_offset()), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
    // The method data pointer needs to be updated to correspond to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
    // next bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
    update_mdp_by_constant(in_bytes(BranchData::branch_data_size()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
// Count a non-virtual call in the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
void InterpreterMacroAssembler::profile_call(Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
    // We are making a call.  Increment the count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
    increment_mdp_data_at(in_bytes(CounterData::count_offset()), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
    // The method data pointer needs to be updated to reflect the new target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
    update_mdp_by_constant(in_bytes(CounterData::counter_data_size()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
// Count a final call in the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
void InterpreterMacroAssembler::profile_final_call(Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
    // We are making a call.  Increment the count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
    increment_mdp_data_at(in_bytes(CounterData::count_offset()), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
    // The method data pointer needs to be updated to reflect the new target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
    update_mdp_by_constant(in_bytes(VirtualCallData::virtual_call_data_size()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
// Count a virtual call in the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
void InterpreterMacroAssembler::profile_virtual_call(Register receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
                                                     Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
    // We are making a call.  Increment the count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
    increment_mdp_data_at(in_bytes(CounterData::count_offset()), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
    // Record the receiver type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
    record_klass_in_profile(receiver, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
    // The method data pointer needs to be updated to reflect the new target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
    update_mdp_by_constant(in_bytes(VirtualCallData::virtual_call_data_size()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
void InterpreterMacroAssembler::record_klass_in_profile_helper(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
                                        Register receiver, Register scratch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
                                        int start_row, Label& done) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
  int last_row = VirtualCallData::row_limit() - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
  assert(start_row <= last_row, "must be work left to do");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
  // Test this row for both the receiver and for null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
  // Take any of three different outcomes:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
  //   1. found receiver => increment count and goto done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
  //   2. found null => keep looking for case 1, maybe allocate this cell
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
  //   3. found something else => keep looking for cases 1 and 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
  // Case 3 is handled by a recursive call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
  for (int row = start_row; row <= last_row; row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
    Label next_test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
    bool test_for_null_also = (row == start_row);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
    // See if the receiver is receiver[n].
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
    int recvr_offset = in_bytes(VirtualCallData::receiver_offset(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
    test_mdp_data_at(recvr_offset, receiver, next_test, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
    // The receiver is receiver[n].  Increment count[n].
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
    int count_offset = in_bytes(VirtualCallData::receiver_count_offset(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
    increment_mdp_data_at(count_offset, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
    ba(false, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
    bind(next_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
    if (test_for_null_also) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
      // Failed the equality check on receiver[n]...  Test for null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
      if (start_row == last_row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
        // The only thing left to do is handle the null case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
        brx(Assembler::notZero, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
        delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
      // Since null is rare, make it be the branch-taken case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
      Label found_null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
      brx(Assembler::zero, false, Assembler::pn, found_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
      delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
      // Put all the "Case 3" tests here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
      record_klass_in_profile_helper(receiver, scratch, start_row + 1, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
      // Found a null.  Keep searching for a matching receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
      // but remember that this is an empty (unused) slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
      bind(found_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
  // In the fall-through case, we found no matching receiver, but we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
  // observed the receiver[start_row] is NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
  // Fill in the receiver field and increment the count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
  int recvr_offset = in_bytes(VirtualCallData::receiver_offset(start_row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
  set_mdp_data_at(recvr_offset, receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
  int count_offset = in_bytes(VirtualCallData::receiver_count_offset(start_row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
  mov(DataLayout::counter_increment, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
  set_mdp_data_at(count_offset, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
  ba(false, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
void InterpreterMacroAssembler::record_klass_in_profile(Register receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
                                                        Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
  assert(ProfileInterpreter, "must be profiling");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
  record_klass_in_profile_helper(receiver, scratch, 0, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
  bind (done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
// Count a ret in the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
void InterpreterMacroAssembler::profile_ret(TosState state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
                                            Register return_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
                                            Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
    uint row;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
    // Update the total ret count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
    increment_mdp_data_at(in_bytes(CounterData::count_offset()), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
    for (row = 0; row < RetData::row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
      Label next_test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
      // See if return_bci is equal to bci[n]:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
      test_mdp_data_at(in_bytes(RetData::bci_offset(row)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
                       return_bci, next_test, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
      // return_bci is equal to bci[n].  Increment the count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
      increment_mdp_data_at(in_bytes(RetData::bci_count_offset(row)), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
      // The method data pointer needs to be updated to reflect the new target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
      update_mdp_by_offset(in_bytes(RetData::bci_displacement_offset(row)), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
      ba(false, profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
      delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
      bind(next_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
    update_mdp_for_ret(state, return_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
// Profile an unexpected null in the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
void InterpreterMacroAssembler::profile_null_seen(Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
    set_mdp_flag_at(BitData::null_seen_byte_constant(), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
    // The method data pointer needs to be updated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
    int mdp_delta = in_bytes(BitData::bit_data_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
    if (TypeProfileCasts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
      mdp_delta = in_bytes(VirtualCallData::virtual_call_data_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
    update_mdp_by_constant(mdp_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
void InterpreterMacroAssembler::profile_typecheck(Register klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
                                                  Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
    int mdp_delta = in_bytes(BitData::bit_data_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
    if (TypeProfileCasts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
      mdp_delta = in_bytes(VirtualCallData::virtual_call_data_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
      // Record the object type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
      record_klass_in_profile(klass, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
    // The method data pointer needs to be updated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
    update_mdp_by_constant(mdp_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
void InterpreterMacroAssembler::profile_typecheck_failed(Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
  if (ProfileInterpreter && TypeProfileCasts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
    int count_offset = in_bytes(CounterData::count_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
    // Back up the address, since we have already bumped the mdp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
    count_offset -= in_bytes(VirtualCallData::virtual_call_data_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
    // *Decrement* the counter.  We expect to see zero or small negatives.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
    increment_mdp_data_at(count_offset, scratch, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
// Count the default case of a switch construct.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
void InterpreterMacroAssembler::profile_switch_default(Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
    // Update the default case count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
    increment_mdp_data_at(in_bytes(MultiBranchData::default_count_offset()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
                          scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
    // The method data pointer needs to be updated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
    update_mdp_by_offset(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
                    in_bytes(MultiBranchData::default_displacement_offset()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
                    scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
// Count the index'th case of a switch construct.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
void InterpreterMacroAssembler::profile_switch_case(Register index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
                                                    Register scratch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
                                                    Register scratch2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
                                                    Register scratch3) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
    Label profile_continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
    // If no method data exists, go to profile_continue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
    test_method_data_pointer(profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
    // Build the base (index * per_case_size_in_bytes()) + case_array_offset_in_bytes()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
    set(in_bytes(MultiBranchData::per_case_size()), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
    smul(index, scratch, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
    add(scratch, in_bytes(MultiBranchData::case_array_offset()), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
    // Update the case count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
    increment_mdp_data_at(scratch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
                          in_bytes(MultiBranchData::relative_count_offset()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
                          scratch2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
                          scratch3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
    // The method data pointer needs to be updated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
    update_mdp_by_offset(scratch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
                     in_bytes(MultiBranchData::relative_displacement_offset()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
                     scratch2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
    bind (profile_continue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
// add a InterpMonitorElem to stack (see frame_sparc.hpp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
void InterpreterMacroAssembler::add_monitor_to_stack( bool stack_is_empty,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
                                                      Register Rtemp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
                                                      Register Rtemp2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
  Register Rlimit = Lmonitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
  const jint delta = frame::interpreter_frame_monitor_size() * wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
  assert( (delta & LongAlignmentMask) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
          "sizeof BasicObjectLock must be even number of doublewords");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
  sub( SP,        delta, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
  sub( Lesp,      delta, Lesp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
  sub( Lmonitors, delta, Lmonitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
  if (!stack_is_empty) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
    // must copy stack contents down
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
    Label start_copying, next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
    // untested("monitor stack expansion");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
    compute_stack_base(Rtemp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
    ba( false, start_copying );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
    delayed()->cmp( Rtemp, Rlimit); // done? duplicated below
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
    // note: must copy from low memory upwards
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
    // On entry to loop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
    // Rtemp points to new base of stack, Lesp points to new end of stack (1 past TOS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
    // Loop mutates Rtemp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
    bind( next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
    st_ptr(Rtemp2, Rtemp, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
    inc(Rtemp, wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
    cmp(Rtemp, Rlimit); // are we done? (duplicated above)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
    bind( start_copying );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
    brx( notEqual, true, pn, next );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
    delayed()->ld_ptr( Rtemp, delta, Rtemp2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
    // done copying stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
// Locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
void InterpreterMacroAssembler::verify_local_tag(frame::Tag t,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
                                                 Register base,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
                                                 Register scratch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
                                                 int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
    Label ok, long_ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
    // Use dst for scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
    assert_different_registers(base, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
    ld_ptr(base, Interpreter::local_tag_offset_in_bytes(n), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
    if (t == frame::TagCategory2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
      cmp(scratch, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
      brx(Assembler::equal, false, Assembler::pt, long_ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
      delayed()->ld_ptr(base, Interpreter::local_tag_offset_in_bytes(n+1), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
      stop("local long/double tag value bad");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
      bind(long_ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
      // compare second half tag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
      cmp(scratch, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
    } else if (t == frame::TagValue) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
      cmp(scratch, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
      assert_different_registers(O3, base, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
      mov(t, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
      cmp(scratch, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
    brx(Assembler::equal, false, Assembler::pt, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
    // Also compare if the local value is zero, then the tag might
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
    // not have been set coming from deopt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
    ld_ptr(base, Interpreter::local_offset_in_bytes(n), scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
    cmp(scratch, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
    brx(Assembler::equal, false, Assembler::pt, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
    stop("Local tag value is bad");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
    bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
void InterpreterMacroAssembler::access_local_ptr( Register index, Register dst ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
  debug_only(verify_local_tag(frame::TagReference, index, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
  ld_ptr(index, Interpreter::value_offset_in_bytes(), dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
  // Note:  index must hold the effective address--the iinc template uses it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
// Just like access_local_ptr but the tag is a returnAddress
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
void InterpreterMacroAssembler::access_local_returnAddress(Register index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
                                                           Register dst ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
  debug_only(verify_local_tag(frame::TagValue, index, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
  ld_ptr(index, Interpreter::value_offset_in_bytes(), dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
void InterpreterMacroAssembler::access_local_int( Register index, Register dst ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
  debug_only(verify_local_tag(frame::TagValue, index, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
  ld(index, Interpreter::value_offset_in_bytes(), dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
  // Note:  index must hold the effective address--the iinc template uses it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
void InterpreterMacroAssembler::access_local_long( Register index, Register dst ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
  debug_only(verify_local_tag(frame::TagCategory2, index, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
  // First half stored at index n+1 (which grows down from Llocals[n])
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
  load_unaligned_long(index, Interpreter::local_offset_in_bytes(1), dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
void InterpreterMacroAssembler::access_local_float( Register index, FloatRegister dst ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
  debug_only(verify_local_tag(frame::TagValue, index, G1_scratch));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
  ldf(FloatRegisterImpl::S, index, Interpreter::value_offset_in_bytes(), dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
void InterpreterMacroAssembler::access_local_double( Register index, FloatRegister dst ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
  debug_only(verify_local_tag(frame::TagCategory2, index, G1_scratch));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
  load_unaligned_double(index, Interpreter::local_offset_in_bytes(1), dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
void InterpreterMacroAssembler::check_for_regarea_stomp(Register Rindex, int offset, Register Rlimit, Register Rscratch, Register Rscratch1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
  Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
  assert(Rindex != Rscratch, "Registers cannot be same");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
  assert(Rindex != Rscratch1, "Registers cannot be same");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
  assert(Rlimit != Rscratch, "Registers cannot be same");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
  assert(Rlimit != Rscratch1, "Registers cannot be same");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
  assert(Rscratch1 != Rscratch, "Registers cannot be same");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
  // untested("reg area corruption");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
  add(Rindex, offset, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
  add(Rlimit, 64 + STACK_BIAS, Rscratch1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
  cmp(Rscratch, Rscratch1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
  brx(Assembler::greaterEqualUnsigned, false, pn, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
  stop("regsave area is being clobbered");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
  bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
void InterpreterMacroAssembler::tag_local(frame::Tag t,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
                                          Register base,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
                                          Register src,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
                                          int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
    // have to store zero because local slots can be reused (rats!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
    if (t == frame::TagValue) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
      st_ptr(G0, base, Interpreter::local_tag_offset_in_bytes(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
    } else if (t == frame::TagCategory2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
      st_ptr(G0, base, Interpreter::local_tag_offset_in_bytes(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
      st_ptr(G0, base, Interpreter::local_tag_offset_in_bytes(n+1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
      // assert that we don't stomp the value in 'src'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
      // O3 is arbitrary because it's not used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
      assert_different_registers(src, base, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
      mov( t, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
      st_ptr(O3, base, Interpreter::local_tag_offset_in_bytes(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
void InterpreterMacroAssembler::store_local_int( Register index, Register src ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
  debug_only(check_for_regarea_stomp(index, Interpreter::value_offset_in_bytes(), FP, G1_scratch, G4_scratch);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
  tag_local(frame::TagValue, index, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
  st(src, index, Interpreter::value_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
void InterpreterMacroAssembler::store_local_ptr( Register index, Register src,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
                                                 Register tag ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
  check_for_regarea_stomp(index, Interpreter::value_offset_in_bytes(), FP, G1_scratch, G4_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
  st_ptr(src, index, Interpreter::value_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
  // Store tag register directly
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
    st_ptr(tag, index, Interpreter::tag_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
void InterpreterMacroAssembler::store_local_ptr( int n, Register src,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
                                                 Register tag ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
  st_ptr(src,  Llocals, Interpreter::local_offset_in_bytes(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
    st_ptr(tag, Llocals, Interpreter::local_tag_offset_in_bytes(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
void InterpreterMacroAssembler::store_local_long( Register index, Register src ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
  check_for_regarea_stomp(index, Interpreter::local_offset_in_bytes(1), FP, G1_scratch, G4_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
  tag_local(frame::TagCategory2, index, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
  store_unaligned_long(src, index, Interpreter::local_offset_in_bytes(1)); // which is n+1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
void InterpreterMacroAssembler::store_local_float( Register index, FloatRegister src ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
  check_for_regarea_stomp(index, Interpreter::value_offset_in_bytes(), FP, G1_scratch, G4_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
  tag_local(frame::TagValue, index, G1_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
  stf(FloatRegisterImpl::S, src, index, Interpreter::value_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
void InterpreterMacroAssembler::store_local_double( Register index, FloatRegister src ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
  sll(index, Interpreter::logStackElementSize(), index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
  sub(Llocals, index, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
  check_for_regarea_stomp(index, Interpreter::local_offset_in_bytes(1), FP, G1_scratch, G4_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
  tag_local(frame::TagCategory2, index, G1_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
  store_unaligned_double(src, index, Interpreter::local_offset_in_bytes(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
int InterpreterMacroAssembler::top_most_monitor_byte_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
  const jint delta = frame::interpreter_frame_monitor_size() * wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
  int rounded_vm_local_words = ::round_to(frame::interpreter_frame_vm_local_words, WordsPerLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
  return ((-rounded_vm_local_words * wordSize) - delta ) + STACK_BIAS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
Address InterpreterMacroAssembler::top_most_monitor() {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2186
  return Address(FP, top_most_monitor_byte_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
void InterpreterMacroAssembler::compute_stack_base( Register Rdest ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
  add( Lesp,      wordSize,                                    Rdest );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
void InterpreterMacroAssembler::increment_invocation_counter( Register Rtmp, Register Rtmp2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
  assert(UseCompiler, "incrementing must be useful");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
#ifdef CC_INTERP
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2199
  Address inv_counter(G5_method, methodOopDesc::invocation_counter_offset() +
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2200
                                 InvocationCounter::counter_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2201
  Address be_counter (G5_method, methodOopDesc::backedge_counter_offset() +
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2202
                                 InvocationCounter::counter_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
#else
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2204
  Address inv_counter(Lmethod, methodOopDesc::invocation_counter_offset() +
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2205
                               InvocationCounter::counter_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2206
  Address be_counter (Lmethod, methodOopDesc::backedge_counter_offset() +
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2207
                               InvocationCounter::counter_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
  int delta = InvocationCounter::count_increment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2211
  // Load each counter in a register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
  ld( inv_counter, Rtmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
  ld( be_counter, Rtmp2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
  assert( is_simm13( delta ), " delta too large.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
  // Add the delta to the invocation counter and store the result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
  add( Rtmp, delta, Rtmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
  // Mask the backedge counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
  and3( Rtmp2, InvocationCounter::count_mask_value, Rtmp2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
  // Store value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
  st( Rtmp, inv_counter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
  // Add invocation counter + backedge counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
  add( Rtmp, Rtmp2, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2229
  // Note that this macro must leave the backedge_count + invocation_count in Rtmp!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
void InterpreterMacroAssembler::increment_backedge_counter( Register Rtmp, Register Rtmp2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
  assert(UseCompiler, "incrementing must be useful");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
#ifdef CC_INTERP
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2235
  Address be_counter (G5_method, methodOopDesc::backedge_counter_offset() +
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2236
                                 InvocationCounter::counter_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2237
  Address inv_counter(G5_method, methodOopDesc::invocation_counter_offset() +
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2238
                                 InvocationCounter::counter_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
#else
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2240
  Address be_counter (Lmethod, methodOopDesc::backedge_counter_offset() +
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2241
                               InvocationCounter::counter_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2242
  Address inv_counter(Lmethod, methodOopDesc::invocation_counter_offset() +
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2243
                               InvocationCounter::counter_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
  int delta = InvocationCounter::count_increment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
  // Load each counter in a register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
  ld( be_counter, Rtmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
  ld( inv_counter, Rtmp2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
  // Add the delta to the backedge counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
  add( Rtmp, delta, Rtmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
  // Mask the invocation counter, add to backedge counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
  and3( Rtmp2, InvocationCounter::count_mask_value, Rtmp2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
  // and store the result to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
  st( Rtmp, be_counter );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
  // Add backedge + invocation counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
  add( Rtmp, Rtmp2, Rtmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
  // Note that this macro must leave backedge_count + invocation_count in Rtmp!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
#ifndef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
void InterpreterMacroAssembler::test_backedge_count_for_osr( Register backedge_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
                                                             Register branch_bcp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
                                                             Register Rtmp ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
  Label did_not_overflow;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
  Label overflow_with_error;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
  assert_different_registers(backedge_count, Rtmp, branch_bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
  assert(UseOnStackReplacement,"Must UseOnStackReplacement to test_backedge_count_for_osr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2274
  AddressLiteral limit(&InvocationCounter::InterpreterBackwardBranchLimit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
  load_contents(limit, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
  cmp(backedge_count, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
  br(Assembler::lessUnsigned, false, Assembler::pt, did_not_overflow);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
  // When ProfileInterpreter is on, the backedge_count comes from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
  // methodDataOop, which value does not get reset on the call to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
  // frequency_counter_overflow().  To avoid excessive calls to the overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
  // routine while the method is being compiled, add a second test to make sure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
  // the overflow function is called only once every overflow_frequency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
    const int overflow_frequency = 1024;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
    andcc(backedge_count, overflow_frequency-1, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
    brx(Assembler::notZero, false, Assembler::pt, did_not_overflow);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
  // overflow in loop, pass branch bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
  set(6,Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
  call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::frequency_counter_overflow), branch_bcp, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
  // Was an OSR adapter generated?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
  // O0 = osr nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
  tst(O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
  brx(Assembler::zero, false, Assembler::pn, overflow_with_error);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
  // Has the nmethod been invalidated already?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
  ld(O0, nmethod::entry_bci_offset(), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
  cmp(O2, InvalidOSREntryBci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
  br(Assembler::equal, false, Assembler::pn, overflow_with_error);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
  // migrate the interpreter frame off of the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
  mov(G2_thread, L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
  // save nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
  mov(O0, L6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
  set_last_Java_frame(SP, noreg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
  call_VM_leaf(noreg, CAST_FROM_FN_PTR(address, SharedRuntime::OSR_migration_begin), L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
  reset_last_Java_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
  mov(L7, G2_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
  // move OSR nmethod to I1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
  mov(L6, I1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
  // OSR buffer to I0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
  mov(O0, I0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
  // remove the interpreter frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
  restore(I5_savedSP, 0, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
  // Jump to the osr code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
  ld_ptr(O1, nmethod::osr_entry_point_offset(), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
  jmp(O2, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
  bind(overflow_with_error);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
  bind(did_not_overflow);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
void InterpreterMacroAssembler::interp_verify_oop(Register reg, TosState state, const char * file, int line) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
  if (state == atos) { MacroAssembler::_verify_oop(reg, "broken oop ", file, line); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
// local helper function for the verify_oop_or_return_address macro
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
static bool verify_return_address(methodOopDesc* m, int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
  address pc = (address)(m->constMethod())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
             + in_bytes(constMethodOopDesc::codes_offset()) + bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
  // assume it is a valid return address if it is inside m and is preceded by a jsr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
  if (!m->contains(pc))                                          return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
  address jsr_pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
  jsr_pc = pc - Bytecodes::length_for(Bytecodes::_jsr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
  if (*jsr_pc == Bytecodes::_jsr   && jsr_pc >= m->code_base())    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
  jsr_pc = pc - Bytecodes::length_for(Bytecodes::_jsr_w);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
  if (*jsr_pc == Bytecodes::_jsr_w && jsr_pc >= m->code_base())    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
void InterpreterMacroAssembler::verify_oop_or_return_address(Register reg, Register Rtmp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
  if (!VerifyOops)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
  // the VM documentation for the astore[_wide] bytecode allows
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
  // the TOS to be not only an oop but also a return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
  Label test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2366
  Label skip;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2367
  // See if it is an address (in the current method):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2369
  mov(reg, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
  const int log2_bytecode_size_limit = 16;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
  srl(Rtmp, log2_bytecode_size_limit, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
  br_notnull( Rtmp, false, pt, test );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
  // %%% should use call_VM_leaf here?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
  save_frame_and_mov(0, Lmethod, O0, reg, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
  save_thread(L7_thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
  call(CAST_FROM_FN_PTR(address,verify_return_address), relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
  restore_thread(L7_thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
  br_notnull( O0, false, pt, skip );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
  delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
  // Perform a more elaborate out-of-line call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
  // Not an address; verify it:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
  bind(test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
  verify_oop(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
  bind(skip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
void InterpreterMacroAssembler::verify_FPU(int stack_depth, TosState state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
  if (state == ftos || state == dtos) MacroAssembler::verify_FPU(stack_depth);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
// Inline assembly for:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
// if (thread is in interp_only_mode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
//   InterpreterRuntime::post_method_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
// }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
// if (DTraceMethodProbes) {
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1502
diff changeset
  2403
//   SharedRuntime::dtrace_method_entry(method, receiver);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
// }
2136
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1502
diff changeset
  2405
// if (RC_TRACE_IN_RANGE(0x00001000, 0x00002000)) {
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1502
diff changeset
  2406
//   SharedRuntime::rc_trace_method_entry(method, receiver);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
// }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
void InterpreterMacroAssembler::notify_method_entry() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
  // C++ interpreter only uses this for native methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
  // Whenever JVMTI puts a thread in interp_only_mode, method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
  // entry/exit events are sent for that thread to track stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
  // depth.  If it is possible to enter interp_only_mode we add
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2416
  // the code to check if the event should be sent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2417
  if (JvmtiExport::can_post_interpreter_events()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2418
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
    Register temp_reg = O5;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2420
    const Address interp_only(G2_thread, JavaThread::interp_only_mode_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2421
    ld(interp_only, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2422
    tst(temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2423
    br(zero, false, pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
    call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_method_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
    Register temp_reg = O5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
    SkipIfEqual skip_if(this, temp_reg, &DTraceMethodProbes, zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
    call_VM_leaf(noreg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
      CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_entry),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
      G2_thread, Lmethod);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
  }
2136
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1502
diff changeset
  2436
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1502
diff changeset
  2437
  // RedefineClasses() tracing support for obsolete method entry
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1502
diff changeset
  2438
  if (RC_TRACE_IN_RANGE(0x00001000, 0x00002000)) {
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1502
diff changeset
  2439
    call_VM_leaf(noreg,
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1502
diff changeset
  2440
      CAST_FROM_FN_PTR(address, SharedRuntime::rc_trace_method_entry),
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1502
diff changeset
  2441
      G2_thread, Lmethod);
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1502
diff changeset
  2442
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
// Inline assembly for:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
// if (thread is in interp_only_mode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
//   // save result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
//   InterpreterRuntime::post_method_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
//   // restore result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
// }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
// if (DTraceMethodProbes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
//   SharedRuntime::dtrace_method_exit(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
// }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
// Native methods have their result stored in d_tmp and l_tmp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
// Java methods have their result stored in the expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
void InterpreterMacroAssembler::notify_method_exit(bool is_native_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
                                                   TosState state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
                                                   NotifyMethodExitMode mode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
  // C++ interpreter only uses this for native methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
  // Whenever JVMTI puts a thread in interp_only_mode, method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
  // entry/exit events are sent for that thread to track stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
  // depth.  If it is possible to enter interp_only_mode we add
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
  // the code to check if the event should be sent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
  if (mode == NotifyJVMTI && JvmtiExport::can_post_interpreter_events()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
    Register temp_reg = O5;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2256
diff changeset
  2472
    const Address interp_only(G2_thread, JavaThread::interp_only_mode_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
    ld(interp_only, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
    tst(temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
    br(zero, false, pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
    // Note: frame::interpreter_frame_result has a dependency on how the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
    // method result is saved across the call to post_method_exit. For
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
    // native methods it assumes the result registers are saved to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
    // l_scratch and d_scratch. If this changes then the interpreter_frame_result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
    // implementation will need to be updated too.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2483
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
    save_return_value(state, is_native_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2485
    call_VM(noreg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
            CAST_FROM_FN_PTR(address, InterpreterRuntime::post_method_exit));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2487
    restore_return_value(state, is_native_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2489
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2490
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2492
    Register temp_reg = O5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
    // Dtrace notification
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
    SkipIfEqual skip_if(this, temp_reg, &DTraceMethodProbes, zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
    save_return_value(state, is_native_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2496
    call_VM_leaf(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2497
      noreg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2498
      CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_exit),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
      G2_thread, Lmethod);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
    restore_return_value(state, is_native_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2504
void InterpreterMacroAssembler::save_return_value(TosState state, bool is_native_call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
  // result potentially in O0/O1: save it across calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
  stf(FloatRegisterImpl::D, F0, STATE(_native_fresult));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
  stx(O0, STATE(_native_lresult));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
  std(O0, STATE(_native_lresult));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
#else // CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
  if (is_native_call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
    stf(FloatRegisterImpl::D, F0, d_tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2516
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
    stx(O0, l_tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
    std(O0, l_tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
    push(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
#endif // CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2526
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
void InterpreterMacroAssembler::restore_return_value( TosState state, bool is_native_call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
  ldf(FloatRegisterImpl::D, STATE(_native_fresult), F0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
  ldx(STATE(_native_lresult), O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
  ldd(STATE(_native_lresult), O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
#else // CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
  if (is_native_call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
    ldf(FloatRegisterImpl::D, d_tmp, F0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
    ldx(l_tmp, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
    ldd(l_tmp, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
    pop(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
#endif // CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
}