hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
author kbarrett
Wed, 15 Feb 2017 22:19:13 -0500
changeset 43964 2f5e556a6037
parent 43474 8fbf946045f6
permissions -rw-r--r--
8166188: G1 Needs pre barrier on dereference of weak JNI handles Summary: Add low tag to jweaks and G1 barrier for jweak loads. Reviewed-by: mgerdin, mdoerr, pliden, dlong, dcubed, coleenp, aph, tschatzl Contributed-by: kim.barrett@oracle.com, martin.doerr@sap.com, volker.simonis@sap.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 35214
diff changeset
     2
 * Copyright (c) 1997, 2016, 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: 4896
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4896
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: 4896
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: 6418
diff changeset
    25
#ifndef CPU_X86_VM_FRAME_X86_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    26
#define CPU_X86_VM_FRAME_X86_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    27
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
    28
#include "code/codeCache.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 22924
diff changeset
    29
#include "code/vmreg.inline.hpp"
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Inline functions for Intel 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
  _unextended_sp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  _fp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  _cb = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _deopt_state = unknown;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
26821
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
    44
inline void frame::init(intptr_t* sp, intptr_t* fp, address pc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  _sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  _unextended_sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  _fp = fp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  _pc = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  assert(pc != NULL, "no pc?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  _cb = CodeCache::find_blob(pc);
9978
80c391c46474 7047697: MethodHandle.invokeExact call for wrong method causes VM failure if run with -Xcomp
jrose
parents: 9630
diff changeset
    51
  adjust_unextended_sp();
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    52
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35214
diff changeset
    53
  address original_pc = CompiledMethod::get_deopt_original_pc(this);
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    54
  if (original_pc != NULL) {
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    55
    _pc = original_pc;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    _deopt_state = is_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    _deopt_state = not_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
26821
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
    62
inline frame::frame(intptr_t* sp, intptr_t* fp, address pc) {
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
    63
  init(sp, fp, pc);
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
    64
}
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
    65
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    66
inline frame::frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  _sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  _unextended_sp = unextended_sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  _fp = fp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  _pc = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  assert(pc != NULL, "no pc?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  _cb = CodeCache::find_blob(pc);
9630
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
    73
  adjust_unextended_sp();
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    74
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35214
diff changeset
    75
  address original_pc = CompiledMethod::get_deopt_original_pc(this);
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    76
  if (original_pc != NULL) {
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    77
    _pc = original_pc;
43474
8fbf946045f6 8172844: Assert fails in deoptimization due to original PC at the end of code section
zmajo
parents: 40644
diff changeset
    78
    assert(_cb->as_compiled_method()->insts_contains_inclusive(_pc),
8fbf946045f6 8172844: Assert fails in deoptimization due to original PC at the end of code section
zmajo
parents: 40644
diff changeset
    79
           "original PC must be in the main code section of the the compiled method (or must be immediately following it)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    _deopt_state = is_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  } else {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30305
diff changeset
    82
    if (_cb->is_deoptimization_stub()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30305
diff changeset
    83
      _deopt_state = is_deoptimized;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30305
diff changeset
    84
    } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30305
diff changeset
    85
      _deopt_state = not_deoptimized;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30305
diff changeset
    86
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
inline frame::frame(intptr_t* sp, intptr_t* fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  _sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  _unextended_sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  _fp = fp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  _pc = (address)(sp[-1]);
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    95
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    96
  // Here's a sticky one. This constructor can be called via AsyncGetCallTrace
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    97
  // when last_Java_sp is non-null but the pc fetched is junk. If we are truly
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    98
  // unlucky the junk value could be to a zombied method and we'll die on the
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    99
  // find_blob call. This is also why we can have no asserts on the validity
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   100
  // of the pc we find here. AsyncGetCallTrace -> pd_get_top_frame_for_signal_handler
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   101
  // -> pd_last_frame should use a specialized version of pd_last_frame which could
30305
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 29571
diff changeset
   102
  // call a specialized frame constructor instead of this one.
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   103
  // Then we could use the assert below. However this assert is of somewhat dubious
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   104
  // value.
40644
39e631ed7145 8161598: Kitchensink fails: assert(nm->insts_contains(original_pc)) failed: original PC must be in nmethod/CompiledMethod
dlong
parents: 38144
diff changeset
   105
  // UPDATE: this constructor is only used by trace_method_handle_stub() now.
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   106
  // assert(_pc != NULL, "no pc?");
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   107
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  _cb = CodeCache::find_blob(_pc);
9978
80c391c46474 7047697: MethodHandle.invokeExact call for wrong method causes VM failure if run with -Xcomp
jrose
parents: 9630
diff changeset
   109
  adjust_unextended_sp();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35214
diff changeset
   111
  address original_pc = CompiledMethod::get_deopt_original_pc(this);
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   112
  if (original_pc != NULL) {
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   113
    _pc = original_pc;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    _deopt_state = is_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    _deopt_state = not_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
// Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
inline bool frame::equal(frame other) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  bool ret =  sp() == other.sp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
              && unextended_sp() == other.unextended_sp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
              && fp() == other.fp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
              && pc() == other.pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  assert(!ret || ret && cb() == other.cb() && _deopt_state == other._deopt_state, "inconsistent construction");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
// Return unique id for this frame. The id must have a value where we can distinguish
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// identity and younger/older relationship. NULL represents an invalid (incomparable)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
inline intptr_t* frame::id(void) const { return unextended_sp(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
// Relationals on frames based
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
// Return true if the frame is younger (more recent activation) than the frame represented by id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
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
   139
                                                    return this->id() < id ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
// Return true if the frame is older (less recent activation) than the frame represented by id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
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
   143
                                                    return this->id() > id ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
inline intptr_t* frame::link() const              { return (intptr_t*) *(intptr_t **)addr_at(link_offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
inline intptr_t* frame::unextended_sp() const     { return _unextended_sp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
// Return address:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
inline address* frame::sender_pc_addr()      const { return (address*) addr_at( return_addr_offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
inline address  frame::sender_pc()           const { return *sender_pc_addr(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
inline intptr_t*    frame::sender_sp()        const { return            addr_at(   sender_sp_offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
inline intptr_t** frame::interpreter_frame_locals_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  return (intptr_t**)addr_at(interpreter_frame_locals_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
inline intptr_t* frame::interpreter_frame_last_sp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  return *(intptr_t**)addr_at(interpreter_frame_last_sp_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 22924
diff changeset
   166
inline intptr_t* frame::interpreter_frame_bcp_addr() const {
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 22924
diff changeset
   167
  return (intptr_t*)addr_at(interpreter_frame_bcp_offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 22924
diff changeset
   171
inline intptr_t* frame::interpreter_frame_mdp_addr() const {
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 22924
diff changeset
   172
  return (intptr_t*)addr_at(interpreter_frame_mdp_offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
// Constant pool cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9978
diff changeset
   179
inline ConstantPoolCache** frame::interpreter_frame_cache_addr() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9978
diff changeset
   180
  return (ConstantPoolCache**)addr_at(interpreter_frame_cache_offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
// Method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9978
diff changeset
   185
inline Method** frame::interpreter_frame_method_addr() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9978
diff changeset
   186
  return (Method**)addr_at(interpreter_frame_method_offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 35214
diff changeset
   189
// Mirror
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 35214
diff changeset
   190
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 35214
diff changeset
   191
inline oop* frame::interpreter_frame_mirror_addr() const {
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 35214
diff changeset
   192
  return (oop*)addr_at(interpreter_frame_mirror_offset);
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 35214
diff changeset
   193
}
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 35214
diff changeset
   194
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// top of expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
inline intptr_t* frame::interpreter_frame_tos_address() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  intptr_t* last_sp = interpreter_frame_last_sp();
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 2105
diff changeset
   198
  if (last_sp == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    return sp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  } else {
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 2105
diff changeset
   201
    // sp() may have been extended or shrunk by an adapter.  At least
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 2105
diff changeset
   202
    // check that we don't fall behind the legal region.
4896
88b4193b82b0 6925249: assert(last_sp < (intptr_t*) interpreter_frame_monitor_begin(),"bad tos")
kvn
parents: 4752
diff changeset
   203
    // For top deoptimized frame last_sp == interpreter_frame_monitor_end.
88b4193b82b0 6925249: assert(last_sp < (intptr_t*) interpreter_frame_monitor_begin(),"bad tos")
kvn
parents: 4752
diff changeset
   204
    assert(last_sp <= (intptr_t*) interpreter_frame_monitor_end(), "bad tos");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    return last_sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
22924
5da64eb25f2a 8035396: Introduce accessor for tmp_oop in frame.
goetz
parents: 22234
diff changeset
   209
inline oop* frame::interpreter_frame_temp_oop_addr() const {
5da64eb25f2a 8035396: Introduce accessor for tmp_oop in frame.
goetz
parents: 22234
diff changeset
   210
  return (oop *)(fp() + interpreter_frame_oop_temp_offset);
5da64eb25f2a 8035396: Introduce accessor for tmp_oop in frame.
goetz
parents: 22234
diff changeset
   211
}
5da64eb25f2a 8035396: Introduce accessor for tmp_oop in frame.
goetz
parents: 22234
diff changeset
   212
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
inline int frame::pd_oop_map_offset_adjustment() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
inline int frame::interpreter_frame_monitor_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  return BasicObjectLock::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
// (the max_stack arguments are used by the GC; see class FrameClosure)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
inline intptr_t* frame::interpreter_frame_expression_stack() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  intptr_t* monitor_end = (intptr_t*) interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  return monitor_end-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
inline jint frame::interpreter_frame_expression_stack_direction() { return -1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
// Entry frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
18938
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 16363
diff changeset
   236
inline JavaCallWrapper** frame::entry_frame_call_wrapper_addr() const {
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 16363
diff changeset
   237
 return (JavaCallWrapper**)addr_at(entry_frame_call_wrapper_offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
// Compiled frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
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
   243
  return (nof_args - local_index + (local_index < nof_args ? 1: -1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
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
   247
  return local_offset_for_compiler(local_index, nof_args, max_nof_locals, max_nof_monitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
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
   251
  return (nof_args - (max_nof_locals + max_nof_monitors*2) - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
inline bool frame::volatile_across_calls(Register reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
16363
d6b2cbb70886 8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents: 14626
diff changeset
   258
inline oop frame::saved_oop_result(RegisterMap* map) const {
d6b2cbb70886 8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents: 14626
diff changeset
   259
  oop* result_adr = (oop *)map->location(rax->as_VMReg());
d6b2cbb70886 8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents: 14626
diff changeset
   260
  guarantee(result_adr != NULL, "bad register save location");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
16363
d6b2cbb70886 8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents: 14626
diff changeset
   262
  return (*result_adr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) {
16363
d6b2cbb70886 8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents: 14626
diff changeset
   266
  oop* result_adr = (oop *)map->location(rax->as_VMReg());
d6b2cbb70886 8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents: 14626
diff changeset
   267
  guarantee(result_adr != NULL, "bad register save location");
d6b2cbb70886 8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents: 14626
diff changeset
   268
d6b2cbb70886 8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents: 14626
diff changeset
   269
  *result_adr = obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
   271
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
   272
#endif // CPU_X86_VM_FRAME_X86_INLINE_HPP