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