hotspot/src/cpu/sparc/vm/frame_sparc.inline.hpp
author goetz
Fri, 04 Jul 2014 11:46:01 +0200
changeset 25715 d5a8dbdc5150
parent 24327 d8d91481f76e
child 25717 7493b8ac31b7
permissions -rw-r--r--
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories. Summary: Introduce and clean up umbrella headers for the files in the cpu subdirectories. Reviewed-by: lfoltan, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24327
diff changeset
     2
 * Copyright (c) 1997, 2014, 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: 3261
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
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: 3261
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: 5547
diff changeset
    25
#ifndef CPU_SPARC_VM_FRAME_SPARC_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define CPU_SPARC_VM_FRAME_SPARC_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
14631
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 14626
diff changeset
    28
#include "asm/macroAssembler.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24327
diff changeset
    29
#include "code/vmreg.inline.hpp"
14631
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 14626
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Inline functions for SPARC frames:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
inline frame::frame() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  _pc = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  _sp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  _younger_sp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  _cb = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  _deopt_state = unknown;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _sp_adjustment_by_callee = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Accessors:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
inline bool frame::equal(frame other) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  bool ret =  sp() == other.sp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
           && fp() == other.fp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
           && pc() == other.pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  assert(!ret || ret && cb() == other.cb() && _deopt_state == other._deopt_state, "inconsistent construction");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// Return unique id for this frame. The id must have a value where we can distinguish
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// identity and younger/older relationship. NULL represents an invalid (incomparable)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
inline intptr_t* frame::id(void) const { return unextended_sp(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// Relationals on frames based
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// Return true if the frame is younger (more recent activation) than the frame represented by id
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
inline bool frame::is_younger(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                                                    return this->id() < id ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// Return true if the frame is older (less recent activation) than the frame represented by id
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
inline bool frame::is_older(intptr_t* id) const   { assert(this->id() != NULL && id != NULL, "NULL frame id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                                                    return this->id() > id ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
2880
c2974244a496 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 1
diff changeset
    68
inline int frame::frame_size(RegisterMap* map) const { return sender_sp() - sp(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
inline intptr_t* frame::link() const { return (intptr_t *)(fp()[FP->sp_offset_in_saved_window()] + STACK_BIAS); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
inline void frame::set_link(intptr_t* addr) { assert(link()==addr, "frame nesting is controlled by hardware"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
inline intptr_t* frame::unextended_sp() const { return sp() + _sp_adjustment_by_callee; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// return address:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
inline address  frame::sender_pc()        const    { return *I7_addr() + pc_return_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
inline address* frame::I7_addr() const  { return (address*) &sp()[ I7->sp_offset_in_saved_window()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
inline address* frame::I0_addr() const  { return (address*) &sp()[ I0->sp_offset_in_saved_window()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
inline address* frame::O7_addr() const  { return (address*) &younger_sp()[ I7->sp_offset_in_saved_window()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
inline address* frame::O0_addr() const  { return (address*) &younger_sp()[ I0->sp_offset_in_saved_window()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
inline intptr_t*    frame::sender_sp() const  { return fp(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
11486
cdc636532368 7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents: 7397
diff changeset
    88
inline intptr_t* frame::real_fp() const { return fp(); }
cdc636532368 7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents: 7397
diff changeset
    89
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// Used only in frame::oopmapreg_to_location
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// This return a value in VMRegImpl::slot_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
inline int frame::pd_oop_map_offset_adjustment() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  return _sp_adjustment_by_callee * VMRegImpl::slots_per_word;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
inline intptr_t** frame::interpreter_frame_locals_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  interpreterState istate = get_interpreterState();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  return (intptr_t**) &istate->_locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
inline intptr_t* frame::interpreter_frame_bcx_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  interpreterState istate = get_interpreterState();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  return (intptr_t*) &istate->_bcp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
inline intptr_t* frame::interpreter_frame_mdx_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  interpreterState istate = get_interpreterState();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  return (intptr_t*) &istate->_mdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
inline jint frame::interpreter_frame_expression_stack_direction() { return -1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// bottom(base) of the expression stack (highest address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
inline intptr_t* frame::interpreter_frame_expression_stack() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  return (intptr_t*)interpreter_frame_monitor_end() - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// top of expression stack (lowest address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
inline intptr_t* frame::interpreter_frame_tos_address() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  interpreterState istate = get_interpreterState();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  return istate->_stack + 1; // Is this off by one? QQQ
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
// monitor elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
// in keeping with Intel side: end is lower in memory than begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
// and beginning element is oldest element
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
// Also begin is one past last monitor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
inline BasicObjectLock* frame::interpreter_frame_monitor_begin()       const  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  return get_interpreterState()->monitor_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
inline BasicObjectLock* frame::interpreter_frame_monitor_end()         const  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  return (BasicObjectLock*) get_interpreterState()->stack_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
inline int frame::interpreter_frame_monitor_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  return round_to(BasicObjectLock::size(), WordsPerLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11486
diff changeset
   144
inline Method** frame::interpreter_frame_method_addr() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  interpreterState istate = get_interpreterState();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  return &istate->_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
// Constant pool cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
// where LcpoolCache is saved:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11486
diff changeset
   153
inline ConstantPoolCache** frame::interpreter_frame_cpoolcache_addr() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  interpreterState istate = get_interpreterState();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  return &istate->_constants; // should really use accessor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11486
diff changeset
   158
inline ConstantPoolCache** frame::interpreter_frame_cache_addr() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  interpreterState istate = get_interpreterState();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  return &istate->_constants;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
#else // !CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
inline intptr_t** frame::interpreter_frame_locals_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  return (intptr_t**) sp_addr_at( Llocals->sp_offset_in_saved_window());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
inline intptr_t* frame::interpreter_frame_bcx_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // %%%%% reinterpreting Lbcp as a bcx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  return (intptr_t*) sp_addr_at( Lbcp->sp_offset_in_saved_window());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
inline intptr_t* frame::interpreter_frame_mdx_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // %%%%% reinterpreting ImethodDataPtr as a mdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  return (intptr_t*) sp_addr_at( ImethodDataPtr->sp_offset_in_saved_window());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
inline jint frame::interpreter_frame_expression_stack_direction() { return -1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
// bottom(base) of the expression stack (highest address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
inline intptr_t* frame::interpreter_frame_expression_stack() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  return (intptr_t*)interpreter_frame_monitors() - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
// top of expression stack (lowest address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
inline intptr_t* frame::interpreter_frame_tos_address() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  return *interpreter_frame_esp_addr() + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
   191
inline BasicObjectLock** frame::interpreter_frame_monitors_addr() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
   192
  return (BasicObjectLock**) sp_addr_at(Lmonitors->sp_offset_in_saved_window());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
   193
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
   194
inline intptr_t** frame::interpreter_frame_esp_addr() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
   195
  return (intptr_t**)sp_addr_at(Lesp->sp_offset_in_saved_window());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
   196
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
   197
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
inline void frame::interpreter_frame_set_tos_address( intptr_t* x ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  *interpreter_frame_esp_addr() = x - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
// monitor elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
// in keeping with Intel side: end is lower in memory than begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
// and beginning element is oldest element
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
// Also begin is one past last monitor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
inline BasicObjectLock* frame::interpreter_frame_monitor_begin()       const  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  int rounded_vm_local_words = round_to(frame::interpreter_frame_vm_local_words, WordsPerLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  return (BasicObjectLock *)fp_addr_at(-rounded_vm_local_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
inline BasicObjectLock* frame::interpreter_frame_monitor_end()         const  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  return interpreter_frame_monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
inline void frame::interpreter_frame_set_monitor_end(BasicObjectLock* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  interpreter_frame_set_monitors(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
inline int frame::interpreter_frame_monitor_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  return round_to(BasicObjectLock::size(), WordsPerLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11486
diff changeset
   226
inline Method** frame::interpreter_frame_method_addr() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11486
diff changeset
   227
  return (Method**)sp_addr_at( Lmethod->sp_offset_in_saved_window());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
24327
d8d91481f76e 8042059: Various fixes to linux/sparc
mikael
parents: 22924
diff changeset
   230
inline BasicObjectLock* frame::interpreter_frame_monitors() const {
d8d91481f76e 8042059: Various fixes to linux/sparc
mikael
parents: 22924
diff changeset
   231
  return *interpreter_frame_monitors_addr();
d8d91481f76e 8042059: Various fixes to linux/sparc
mikael
parents: 22924
diff changeset
   232
}
d8d91481f76e 8042059: Various fixes to linux/sparc
mikael
parents: 22924
diff changeset
   233
d8d91481f76e 8042059: Various fixes to linux/sparc
mikael
parents: 22924
diff changeset
   234
inline void frame::interpreter_frame_set_monitors(BasicObjectLock* monitors) {
d8d91481f76e 8042059: Various fixes to linux/sparc
mikael
parents: 22924
diff changeset
   235
  *interpreter_frame_monitors_addr() = monitors;
d8d91481f76e 8042059: Various fixes to linux/sparc
mikael
parents: 22924
diff changeset
   236
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
// Constant pool cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
// where LcpoolCache is saved:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11486
diff changeset
   241
inline ConstantPoolCache** frame::interpreter_frame_cpoolcache_addr() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11486
diff changeset
   242
    return (ConstantPoolCache**)sp_addr_at(LcpoolCache->sp_offset_in_saved_window());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11486
diff changeset
   245
inline ConstantPoolCache** frame::interpreter_frame_cache_addr() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11486
diff changeset
   246
  return (ConstantPoolCache**)sp_addr_at( LcpoolCache->sp_offset_in_saved_window());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
}
22924
5da64eb25f2a 8035396: Introduce accessor for tmp_oop in frame.
goetz
parents: 22234
diff changeset
   248
5da64eb25f2a 8035396: Introduce accessor for tmp_oop in frame.
goetz
parents: 22234
diff changeset
   249
inline oop* frame::interpreter_frame_temp_oop_addr() const {
5da64eb25f2a 8035396: Introduce accessor for tmp_oop in frame.
goetz
parents: 22234
diff changeset
   250
  return (oop *)(fp() + interpreter_frame_oop_temp_offset);
5da64eb25f2a 8035396: Introduce accessor for tmp_oop in frame.
goetz
parents: 22234
diff changeset
   251
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
#endif // CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
18938
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 14631
diff changeset
   255
inline JavaCallWrapper** frame::entry_frame_call_wrapper_addr() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // note: adjust this code if the link argument in StubGenerator::call_stub() changes!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  const Argument link = Argument(0, false);
18938
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 14631
diff changeset
   258
  return (JavaCallWrapper**)&sp()[link.as_in().as_register()->sp_offset_in_saved_window()];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
inline int frame::local_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
   // always allocate non-argument locals 0..5 as if they were arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  int allocated_above_frame = nof_args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  if (allocated_above_frame < callee_register_argument_save_area_words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    allocated_above_frame = callee_register_argument_save_area_words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  if (allocated_above_frame > max_nof_locals)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    allocated_above_frame = max_nof_locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // Note: monitors (BasicLock blocks) are never allocated in argument slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  //assert(local_index >= 0 && local_index < max_nof_locals, "bad local index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  if (local_index < allocated_above_frame)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    return local_index + callee_register_argument_save_area_sp_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    return local_index - (max_nof_locals + max_nof_monitors*2) + compiler_frame_vm_locals_fp_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
inline int frame::monitor_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  assert(local_index >= max_nof_locals && ((local_index - max_nof_locals) & 1) && (local_index - max_nof_locals) < max_nof_monitors*2, "bad monitor index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // The compiler uses the __higher__ of two indexes allocated to the monitor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  // Increasing local indexes are mapped to increasing memory locations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // so the start of the BasicLock is associated with the __lower__ index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  int offset = (local_index-1) - (max_nof_locals + max_nof_monitors*2) + compiler_frame_vm_locals_fp_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // We allocate monitors aligned zero mod 8:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  assert((offset & 1) == 0, "monitor must be an an even address.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // This works because all monitors are allocated after
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  // all locals, and because the highest address corresponding to any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // monitor index is always even.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  assert((compiler_frame_vm_locals_fp_offset & 1) == 0, "end of monitors must be even address");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  return offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
inline int frame::min_local_offset_for_compiler(int nof_args, int max_nof_locals, int max_nof_monitors) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
   // always allocate non-argument locals 0..5 as if they were arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  int allocated_above_frame = nof_args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  if (allocated_above_frame < callee_register_argument_save_area_words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    allocated_above_frame = callee_register_argument_save_area_words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  if (allocated_above_frame > max_nof_locals)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    allocated_above_frame = max_nof_locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  int allocated_in_frame = (max_nof_locals + max_nof_monitors*2) - allocated_above_frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  return compiler_frame_vm_locals_fp_offset - allocated_in_frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
// On SPARC, the %lN and %iN registers are non-volatile.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
inline bool frame::volatile_across_calls(Register reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  // This predicate is (presently) applied only to temporary registers,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  // and so it need not recognize non-volatile globals.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  return reg->is_out() || reg->is_global();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
inline oop  frame::saved_oop_result(RegisterMap* map) const      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  return *((oop*) map->location(O0->as_VMReg()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  *((oop*) map->location(O0->as_VMReg())) = obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   324
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   325
#endif // CPU_SPARC_VM_FRAME_SPARC_INLINE_HPP