src/hotspot/share/runtime/vframe_hp.cpp
author iklam
Fri, 29 Nov 2019 14:11:50 -0800
changeset 59328 f280911d3427
parent 57758 91a758925be7
permissions -rw-r--r--
8230385: [cds] No message is logged when shared image cannot be used due to mismatched configuration Reviewed-by: stuefe, dholmes, ccheung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 48607
diff changeset
     2
 * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3603
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3603
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: 3603
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
#include "precompiled.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 13728
diff changeset
    26
#include "classfile/javaClasses.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "code/codeCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "code/debugInfoRec.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "code/pcDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "code/scopeDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "interpreter/oopMapCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "runtime/basicLock.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 48607
diff changeset
    37
#include "runtime/frame.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "runtime/monitorChunk.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#include "runtime/signature.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#include "runtime/vframeArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    43
#include "runtime/vframe_hp.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    44
#ifdef COMPILER2
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    45
#include "opto/matcher.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    46
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// ------------- compiledVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
StackValueCollection* compiledVFrame::locals() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // Natives has no scope
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  if (scope() == NULL) return new StackValueCollection(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  GrowableArray<ScopeValue*>*  scv_list = scope()->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  if (scv_list == NULL) return new StackValueCollection(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // scv_list is the list of ScopeValues describing the JVM stack state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // There is one scv_list entry for every JVM stack state in use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  int length = scv_list->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  StackValueCollection* result = new StackValueCollection(length);
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    61
  for (int i = 0; i < length; i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    62
    result->add(create_stack_value(scv_list->at(i)));
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    63
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    64
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    65
  // Replace the original values with any stores that have been
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    66
  // performed through compiledVFrame::update_locals.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  GrowableArray<jvmtiDeferredLocalVariableSet*>* list = thread()->deferred_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  if (list != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    // In real life this never happens or is typically a single element search
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    for (int i = 0; i < list->length(); i++) {
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    71
      if (list->at(i)->matches(this)) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    72
        list->at(i)->update_locals(result);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
void compiledVFrame::set_locals(StackValueCollection* values) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  fatal("Should use update_local for each local update");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
void compiledVFrame::update_local(BasicType type, int index, jvalue value) {
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    88
  assert(index >= 0 && index < method()->max_locals(), "out of bounds");
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    89
  update_deferred_value(type, index, value);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    90
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    92
void compiledVFrame::update_stack(BasicType type, int index, jvalue value) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    93
  assert(index >= 0 && index < method()->max_stack(), "out of bounds");
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    94
  update_deferred_value(type, index + method()->max_locals(), value);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    95
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    97
void compiledVFrame::update_monitor(int index, MonitorInfo* val) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    98
  assert(index >= 0, "out of bounds");
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    99
  jvalue value;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   100
  value.l = (jobject) val->owner();
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   101
  update_deferred_value(T_OBJECT, index + method()->max_locals() + method()->max_stack(), value);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   102
}
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   103
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   104
void compiledVFrame::update_deferred_value(BasicType type, int index, jvalue value) {
57758
91a758925be7 8225788: Dead code in thread and safepoint
rehn
parents: 53065
diff changeset
   105
  assert(fr().is_deoptimized_frame(), "frame must be scheduled for deoptimization");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  GrowableArray<jvmtiDeferredLocalVariableSet*>* deferred = thread()->deferred_locals();
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   107
  jvmtiDeferredLocalVariableSet* locals = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  if (deferred != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    // See if this vframe has already had locals with deferred writes
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   110
    for (int f = 0; f < deferred->length(); f++ ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      if (deferred->at(f)->matches(this)) {
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   112
        locals = deferred->at(f);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   113
        break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    // No matching vframe must push a new vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    // No deferred updates pending for this thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    // allocate in C heap
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7444
diff changeset
   120
    deferred =  new(ResourceObj::C_HEAP, mtCompiler) GrowableArray<jvmtiDeferredLocalVariableSet*> (1, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    thread()->set_deferred_locals(deferred);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  }
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   123
  if (locals == NULL) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   124
    locals = new jvmtiDeferredLocalVariableSet(method(), bci(), fr().id(), vframe_id());
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   125
    deferred->push(locals);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   126
    assert(locals->id() == fr().id(), "Huh? Must match");
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   127
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   128
  locals->set_value_at(index, type, value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
StackValueCollection* compiledVFrame::expressions() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // Natives has no scope
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  if (scope() == NULL) return new StackValueCollection(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  GrowableArray<ScopeValue*>*  scv_list = scope()->expressions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  if (scv_list == NULL) return new StackValueCollection(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // scv_list is the list of ScopeValues describing the JVM stack state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // There is one scv_list entry for every JVM stack state in use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  int length = scv_list->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  StackValueCollection* result = new StackValueCollection(length);
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   141
  for (int i = 0; i < length; i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   142
    result->add(create_stack_value(scv_list->at(i)));
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   143
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   144
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   145
  // Replace the original values with any stores that have been
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   146
  // performed through compiledVFrame::update_stack.
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   147
  GrowableArray<jvmtiDeferredLocalVariableSet*>* list = thread()->deferred_locals();
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   148
  if (list != NULL ) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   149
    // In real life this never happens or is typically a single element search
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   150
    for (int i = 0; i < list->length(); i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   151
      if (list->at(i)->matches(this)) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   152
        list->at(i)->update_stack(result);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   153
        break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   154
      }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   155
    }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   156
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// The implementation of the following two methods was factorized into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// class StackValue because it is also used from within deoptimization.cpp for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// rematerialization and relocking of non-escaping objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
StackValue *compiledVFrame::create_stack_value(ScopeValue *sv) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  return StackValue::create_stack_value(&_fr, register_map(), sv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
BasicLock* compiledVFrame::resolve_monitor_lock(Location location) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  return StackValue::resolve_monitor_lock(&_fr, location);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
GrowableArray<MonitorInfo*>* compiledVFrame::monitors() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Natives has no scope
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  if (scope() == NULL) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   178
    CompiledMethod* nm = code();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   179
    Method* method = nm->method();
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 38133
diff changeset
   180
    assert(method->is_native() || nm->is_aot(), "Expect a native method or precompiled method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    if (!method->is_synchronized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
      return new GrowableArray<MonitorInfo*>(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    // This monitor is really only needed for UseBiasedLocking, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    // return it in all cases for now as it might be useful for stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    // traces and tools as well
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    GrowableArray<MonitorInfo*> *monitors = new GrowableArray<MonitorInfo*>(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    // Casting away const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    frame& fr = (frame&) _fr;
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   190
    MonitorInfo* info = new MonitorInfo(
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   191
        fr.get_native_receiver(), fr.get_native_monitor(), false, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    monitors->push(info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    return monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  GrowableArray<MonitorValue*>* monitors = scope()->monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  if (monitors == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    return new GrowableArray<MonitorInfo*>(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(monitors->length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  for (int index = 0; index < monitors->length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    MonitorValue* mv = monitors->at(index);
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   202
    ScopeValue*   ov = mv->owner();
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   203
    StackValue *owner_sv = create_stack_value(ov); // it is an oop
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   204
    if (ov->is_object() && owner_sv->obj_is_scalar_replaced()) { // The owner object was scalar replaced
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   205
      assert(mv->eliminated(), "monitor should be eliminated for scalar replaced object");
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   206
      // Put klass for scalar replaced object.
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   207
      ScopeValue* kv = ((ObjectValue *)ov)->klass();
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   208
      assert(kv->is_constant_oop(), "klass should be oop constant for scalar replaced object");
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42650
diff changeset
   209
      Handle k(Thread::current(), ((ConstantOopReadValue*)kv)->value()());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   210
      assert(java_lang_Class::is_instance(k()), "must be");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   211
      result->push(new MonitorInfo(k(), resolve_monitor_lock(mv->basic_lock()),
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   212
                                   mv->eliminated(), true));
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   213
    } else {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   214
      result->push(new MonitorInfo(owner_sv->get_obj()(), resolve_monitor_lock(mv->basic_lock()),
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   215
                                   mv->eliminated(), false));
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   216
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  }
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   218
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   219
  // Replace the original values with any stores that have been
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   220
  // performed through compiledVFrame::update_monitors.
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   221
  GrowableArray<jvmtiDeferredLocalVariableSet*>* list = thread()->deferred_locals();
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   222
  if (list != NULL ) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   223
    // In real life this never happens or is typically a single element search
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   224
    for (int i = 0; i < list->length(); i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   225
      if (list->at(i)->matches(this)) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   226
        list->at(i)->update_monitors(result);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   227
        break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   228
      }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   229
    }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   230
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   231
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   236
compiledVFrame::compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, CompiledMethod* nm)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
: javaVFrame(fr, reg_map, thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  _scope  = NULL;
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   239
  _vframe_id = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // Compiled method (native stub or Java code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // native wrappers have no scope data, it is implied
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   242
  if (!nm->is_compiled() || !nm->as_compiled_method()->is_native_method()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   243
      _scope  = nm->scope_desc_at(_fr.pc());
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
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   247
compiledVFrame::compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, ScopeDesc* scope, int vframe_id)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
: javaVFrame(fr, reg_map, thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  _scope  = scope;
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   250
  _vframe_id = vframe_id;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  guarantee(_scope != NULL, "scope must be present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
53065
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52457
diff changeset
   254
compiledVFrame* compiledVFrame::at_scope(int decode_offset, int vframe_id) {
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52457
diff changeset
   255
  if (scope()->decode_offset() != decode_offset) {
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52457
diff changeset
   256
    ScopeDesc* scope = this->scope()->at_offset(decode_offset);
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52457
diff changeset
   257
    return new compiledVFrame(frame_pointer(), register_map(), thread(), scope, vframe_id);
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52457
diff changeset
   258
  }
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52457
diff changeset
   259
  assert(_vframe_id == vframe_id, "wrong frame id");
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52457
diff changeset
   260
  return this;
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52457
diff changeset
   261
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
bool compiledVFrame::is_top() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // FIX IT: Remove this when new native stubs are in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  if (scope() == NULL) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  return scope()->is_top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   270
CompiledMethod* compiledVFrame::code() const {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   271
  return CodeCache::find_compiled(_fr.pc());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   275
Method* compiledVFrame::method() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  if (scope() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    // native nmethods have no scope the method is implied
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   278
    nmethod* nm = code()->as_nmethod();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    assert(nm->is_native_method(), "must be native");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    return nm->method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   282
  return scope()->method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
int compiledVFrame::bci() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  int raw = raw_bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  return raw == SynchronizationEntryBCI ? 0 : raw;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
int compiledVFrame::raw_bci() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  if (scope() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    // native nmethods have no scope the method/bci is implied
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   295
    nmethod* nm = code()->as_nmethod();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    assert(nm->is_native_method(), "must be native");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  return scope()->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   302
bool compiledVFrame::should_reexecute() const {
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   303
  if (scope() == NULL) {
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   304
    // native nmethods have no scope the method/bci is implied
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   305
    nmethod* nm = code()->as_nmethod();
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   306
    assert(nm->is_native_method(), "must be native");
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   307
    return false;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   308
  }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   309
  return scope()->should_reexecute();
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   310
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
vframe* compiledVFrame::sender() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  const frame f = fr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  if (scope() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    // native nmethods have no scope the method/bci is implied
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   316
    nmethod* nm = code()->as_nmethod();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    assert(nm->is_native_method(), "must be native");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    return vframe::sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    return scope()->is_top()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
      ? vframe::sender()
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   322
      : new compiledVFrame(&f, register_map(), thread(), scope()->sender(), vframe_id() + 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   326
jvmtiDeferredLocalVariableSet::jvmtiDeferredLocalVariableSet(Method* method, int bci, intptr_t* id, int vframe_id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  _method = method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  _bci = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  _id = id;
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   330
  _vframe_id = vframe_id;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // Alway will need at least one, must be on C heap
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7444
diff changeset
   332
  _locals = new(ResourceObj::C_HEAP, mtCompiler) GrowableArray<jvmtiDeferredLocalVariable*> (1, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
jvmtiDeferredLocalVariableSet::~jvmtiDeferredLocalVariableSet() {
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   336
  for (int i = 0; i < _locals->length(); i++ ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    delete _locals->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // Free growableArray and c heap for elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  delete _locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   343
bool jvmtiDeferredLocalVariableSet::matches(const vframe* vf) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  if (!vf->is_compiled_frame()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  compiledVFrame* cvf = (compiledVFrame*)vf;
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   346
  if (cvf->fr().id() == id() && cvf->vframe_id() == vframe_id()) {
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   347
    assert(cvf->method() == method() && cvf->bci() == bci(), "must agree");
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   348
    return true;
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   349
  }
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   350
  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   353
void jvmtiDeferredLocalVariableSet::set_value_at(int idx, BasicType type, jvalue val) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   354
  for (int i = 0; i < _locals->length(); i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   355
    if (_locals->at(i)->index() == idx) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   356
      assert(_locals->at(i)->type() == type, "Wrong type");
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   357
      _locals->at(i)->set_value(val);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  }
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   361
  _locals->push(new jvmtiDeferredLocalVariable(idx, type, val));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   364
void jvmtiDeferredLocalVariableSet::update_value(StackValueCollection* locals, BasicType type, int index, jvalue value) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   365
  switch (type) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   366
    case T_BOOLEAN:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   367
      locals->set_int_at(index, value.z);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   368
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   369
    case T_CHAR:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   370
      locals->set_int_at(index, value.c);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   371
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   372
    case T_FLOAT:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   373
      locals->set_float_at(index, value.f);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   374
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   375
    case T_DOUBLE:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   376
      locals->set_double_at(index, value.d);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   377
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   378
    case T_BYTE:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   379
      locals->set_int_at(index, value.b);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   380
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   381
    case T_SHORT:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   382
      locals->set_int_at(index, value.s);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   383
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   384
    case T_INT:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   385
      locals->set_int_at(index, value.i);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   386
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   387
    case T_LONG:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   388
      locals->set_long_at(index, value.j);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   389
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   390
    case T_OBJECT:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   391
      {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   392
        Handle obj(Thread::current(), (oop)value.l);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   393
        locals->set_obj_at(index, obj);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   394
      }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   395
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   396
    default:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   397
      ShouldNotReachHere();
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   398
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   399
}
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   400
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   401
void jvmtiDeferredLocalVariableSet::update_locals(StackValueCollection* locals) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   402
  for (int l = 0; l < _locals->length(); l ++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   403
    jvmtiDeferredLocalVariable* val = _locals->at(l);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   404
    if (val->index() >= 0 && val->index() < method()->max_locals()) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   405
      update_value(locals, val->type(), val->index(), val->value());
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   406
    }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   407
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   408
}
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   409
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   410
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   411
void jvmtiDeferredLocalVariableSet::update_stack(StackValueCollection* expressions) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   412
  for (int l = 0; l < _locals->length(); l ++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   413
    jvmtiDeferredLocalVariable* val = _locals->at(l);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   414
    if (val->index() >= method()->max_locals() && val->index() < method()->max_locals() + method()->max_stack()) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   415
      update_value(expressions, val->type(), val->index() - method()->max_locals(), val->value());
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   416
    }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   417
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   418
}
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   419
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   420
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   421
void jvmtiDeferredLocalVariableSet::update_monitors(GrowableArray<MonitorInfo*>* monitors) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   422
  for (int l = 0; l < _locals->length(); l ++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   423
    jvmtiDeferredLocalVariable* val = _locals->at(l);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   424
    if (val->index() >= method()->max_locals() + method()->max_stack()) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   425
      int lock_index = val->index() - (method()->max_locals() + method()->max_stack());
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   426
      MonitorInfo* info = monitors->at(lock_index);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   427
      MonitorInfo* new_info = new MonitorInfo((oopDesc*)val->value().l, info->lock(), info->eliminated(), info->owner_is_scalar_replaced());
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   428
      monitors->at_put(lock_index, new_info);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   429
    }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   430
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   431
}
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   432
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   433
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
void jvmtiDeferredLocalVariableSet::oops_do(OopClosure* f) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   435
  // The Method* is on the stack so a live activation keeps it alive
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   436
  // either by mirror in interpreter or code in compiled code.
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   437
  for (int i = 0; i < _locals->length(); i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   438
    if (_locals->at(i)->type() == T_OBJECT) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   439
      f->do_oop(_locals->at(i)->oop_addr());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
jvmtiDeferredLocalVariable::jvmtiDeferredLocalVariable(int index, BasicType type, jvalue value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  _index = index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  _type = type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  _value = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
void compiledVFrame::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
#endif // PRODUCT