hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 354 3b42d6fdcb82
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// Inline functions for Intel frames:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// Constructors:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
inline frame::frame() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  _pc = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  _sp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  _unextended_sp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  _fp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  _cb = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  _deopt_state = unknown;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
inline frame:: frame(intptr_t* sp, intptr_t* fp, address pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  _sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  _unextended_sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _fp = fp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  _pc = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  assert(pc != NULL, "no pc?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  _cb = CodeCache::find_blob(pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  _deopt_state = not_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  if (_cb != NULL && _cb->is_nmethod() && ((nmethod*)_cb)->is_deopt_pc(_pc)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    _pc = (((nmethod*)_cb)->get_original_pc(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    _deopt_state = is_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    _deopt_state = not_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
inline frame:: frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  _sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  _unextended_sp = unextended_sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _fp = fp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  _pc = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  assert(pc != NULL, "no pc?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  _cb = CodeCache::find_blob(pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  _deopt_state = not_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  if (_cb != NULL && _cb->is_nmethod() && ((nmethod*)_cb)->is_deopt_pc(_pc)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    _pc = (((nmethod*)_cb)->get_original_pc(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    _deopt_state = is_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    _deopt_state = not_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
inline frame::frame(intptr_t* sp, intptr_t* fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  _sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  _unextended_sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  _fp = fp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  _pc = (address)(sp[-1]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  assert(_pc != NULL, "no pc?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  _cb = CodeCache::find_blob(_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // In case of native stubs, the pc retreived here might be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // wrong. (the _last_native_pc will have the right value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // So do not put add any asserts on the _pc here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // QQQ The above comment is wrong and has been wrong for years. This constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // should (and MUST) not be called in that situation. In the native situation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // the pc should be supplied to the constructor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  _deopt_state = not_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  if (_cb != NULL && _cb->is_nmethod() && ((nmethod*)_cb)->is_deopt_pc(_pc)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    _pc = (((nmethod*)_cb)->get_original_pc(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    _deopt_state = is_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    _deopt_state = not_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
inline bool frame::equal(frame other) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  bool ret =  sp() == other.sp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
              && unextended_sp() == other.unextended_sp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
              && fp() == other.fp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
              && pc() == other.pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  assert(!ret || ret && cb() == other.cb() && _deopt_state == other._deopt_state, "inconsistent construction");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
// Return unique id for this frame. The id must have a value where we can distinguish
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
// identity and younger/older relationship. NULL represents an invalid (incomparable)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
inline intptr_t* frame::id(void) const { return unextended_sp(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
// Relationals on frames based
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
// Return true if the frame is younger (more recent activation) than the frame represented by id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
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
   112
                                                    return this->id() < id ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// Return true if the frame is older (less recent activation) than the frame represented by id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
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
   116
                                                    return this->id() > id ; }
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
inline intptr_t* frame::link() const              { return (intptr_t*) *(intptr_t **)addr_at(link_offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
inline void      frame::set_link(intptr_t* addr)  { *(intptr_t **)addr_at(link_offset) = addr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
inline intptr_t* frame::unextended_sp() const     { return _unextended_sp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
// Return address:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
inline address* frame::sender_pc_addr()      const { return (address*) addr_at( return_addr_offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
inline address  frame::sender_pc()           const { return *sender_pc_addr(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
// return address of param, zero origin index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
inline address* frame::native_param_addr(int idx) const { return (address*) addr_at( native_frame_initial_param_offset+idx); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
inline interpreterState frame::get_interpreterState() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  return ((interpreterState)addr_at( -sizeof(BytecodeInterpreter)/wordSize ));
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 intptr_t*    frame::sender_sp()        const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Hmm this seems awfully expensive QQQ, is this really called with interpreted frames?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  if (is_interpreted_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    assert(false, "should never happen");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    return get_interpreterState()->sender_sp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    return            addr_at(sender_sp_offset);
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
inline intptr_t** frame::interpreter_frame_locals_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  assert(is_interpreted_frame(), "must be interpreted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  return &(get_interpreterState()->_locals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
inline intptr_t* frame::interpreter_frame_bcx_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  assert(is_interpreted_frame(), "must be interpreted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  return (jint*) &(get_interpreterState()->_bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
// Constant pool cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
inline constantPoolCacheOop* frame::interpreter_frame_cache_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  assert(is_interpreted_frame(), "must be interpreted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  return &(get_interpreterState()->_constants);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
// Method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
inline methodOop* frame::interpreter_frame_method_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  assert(is_interpreted_frame(), "must be interpreted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  return &(get_interpreterState()->_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
inline intptr_t* frame::interpreter_frame_mdx_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  assert(is_interpreted_frame(), "must be interpreted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  return (jint*) &(get_interpreterState()->_mdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
// top of expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
inline intptr_t* frame::interpreter_frame_tos_address() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  assert(is_interpreted_frame(), "wrong frame type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  return get_interpreterState()->_stack + 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
#else /* asm interpreter */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
inline intptr_t*    frame::sender_sp()        const { return            addr_at(   sender_sp_offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
inline intptr_t** frame::interpreter_frame_locals_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  return (intptr_t**)addr_at(interpreter_frame_locals_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
inline intptr_t* frame::interpreter_frame_last_sp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  return *(intptr_t**)addr_at(interpreter_frame_last_sp_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
inline intptr_t* frame::interpreter_frame_bcx_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  return (intptr_t*)addr_at(interpreter_frame_bcx_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
inline intptr_t* frame::interpreter_frame_mdx_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  return (intptr_t*)addr_at(interpreter_frame_mdx_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
// Constant pool cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
inline constantPoolCacheOop* frame::interpreter_frame_cache_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  return (constantPoolCacheOop*)addr_at(interpreter_frame_cache_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
// Method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
inline methodOop* frame::interpreter_frame_method_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  return (methodOop*)addr_at(interpreter_frame_method_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
// top of expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
inline intptr_t* frame::interpreter_frame_tos_address() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  intptr_t* last_sp = interpreter_frame_last_sp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  if (last_sp == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    return sp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    // sp() may have been extended by an adapter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    assert(last_sp < fp() && last_sp >= sp(), "bad tos");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    return last_sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
inline int frame::pd_oop_map_offset_adjustment() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
inline int frame::interpreter_frame_monitor_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  return BasicObjectLock::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// (the max_stack arguments are used by the GC; see class FrameClosure)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
inline intptr_t* frame::interpreter_frame_expression_stack() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  intptr_t* monitor_end = (intptr_t*) interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  return monitor_end-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
inline jint frame::interpreter_frame_expression_stack_direction() { return -1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
// Entry frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
inline JavaCallWrapper* frame::entry_frame_call_wrapper() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
 return (JavaCallWrapper*)at(entry_frame_call_wrapper_offset);
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
// Compiled frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
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
   265
  return (nof_args - local_index + (local_index < nof_args ? 1: -1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
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
   269
  return local_offset_for_compiler(local_index, nof_args, max_nof_locals, max_nof_monitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
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
   273
  return (nof_args - (max_nof_locals + max_nof_monitors*2) - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
inline bool frame::volatile_across_calls(Register reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
inline oop frame::saved_oop_result(RegisterMap* map) const       {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  return *((oop*) map->location(rax->as_VMReg()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  *((oop*) map->location(rax->as_VMReg())) = obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
}