src/hotspot/share/runtime/vframe_hp.cpp
author pliden
Fri, 16 Feb 2018 12:18:09 +0100
changeset 49007 82d9d5744e5f
parent 48607 7fc3d62481ba
child 49480 d7df2dd501ce
permissions -rw-r--r--
8197994: Move JavaThread::initialize_queues() logic to G1SATBCardTableLoggingModRefBS Reviewed-by: tschatzl, eosterlund
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42650
diff changeset
     2
 * Copyright (c) 1997, 2017, 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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "runtime/monitorChunk.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "runtime/signature.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "runtime/vframeArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#include "runtime/vframe_hp.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    43
#ifdef COMPILER2
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    44
#include "opto/matcher.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    45
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// ------------- compiledVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
StackValueCollection* compiledVFrame::locals() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Natives has no scope
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  if (scope() == NULL) return new StackValueCollection(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  GrowableArray<ScopeValue*>*  scv_list = scope()->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  if (scv_list == NULL) return new StackValueCollection(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // scv_list is the list of ScopeValues describing the JVM stack state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // There is one scv_list entry for every JVM stack state in use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  int length = scv_list->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  StackValueCollection* result = new StackValueCollection(length);
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    60
  for (int i = 0; i < length; i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    61
    result->add(create_stack_value(scv_list->at(i)));
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    62
  }
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
  // 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
    65
  // performed through compiledVFrame::update_locals.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  GrowableArray<jvmtiDeferredLocalVariableSet*>* list = thread()->deferred_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  if (list != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    // In real life this never happens or is typically a single element search
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    for (int i = 0; i < list->length(); i++) {
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    70
      if (list->at(i)->matches(this)) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    71
        list->at(i)->update_locals(result);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      }
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
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
void compiledVFrame::set_locals(StackValueCollection* values) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  fatal("Should use update_local for each local update");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
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
    87
  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
    88
  update_deferred_value(type, index, value);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    89
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    91
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
    92
  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
    93
  update_deferred_value(type, index + method()->max_locals(), value);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    94
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    96
void compiledVFrame::update_monitor(int index, MonitorInfo* val) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    97
  assert(index >= 0, "out of bounds");
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    98
  jvalue value;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
    99
  value.l = (jobject) val->owner();
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   100
  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
   101
}
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
void compiledVFrame::update_deferred_value(BasicType type, int index, jvalue value) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  assert(fr().is_deoptimized_frame(), "frame must be scheduled for deoptimization");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  GrowableArray<jvmtiDeferredLocalVariableSet*>* deferred = thread()->deferred_locals();
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   106
  jvmtiDeferredLocalVariableSet* locals = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  if (deferred != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    // 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
   109
    for (int f = 0; f < deferred->length(); f++ ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      if (deferred->at(f)->matches(this)) {
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   111
        locals = deferred->at(f);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   112
        break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    // No matching vframe must push a new vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    // No deferred updates pending for this thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    // allocate in C heap
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7444
diff changeset
   119
    deferred =  new(ResourceObj::C_HEAP, mtCompiler) GrowableArray<jvmtiDeferredLocalVariableSet*> (1, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    thread()->set_deferred_locals(deferred);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   122
  if (locals == NULL) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   123
    locals = new jvmtiDeferredLocalVariableSet(method(), bci(), fr().id(), vframe_id());
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   124
    deferred->push(locals);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   125
    assert(locals->id() == fr().id(), "Huh? Must match");
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   126
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   127
  locals->set_value_at(index, type, value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
StackValueCollection* compiledVFrame::expressions() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // Natives has no scope
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  if (scope() == NULL) return new StackValueCollection(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  GrowableArray<ScopeValue*>*  scv_list = scope()->expressions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  if (scv_list == NULL) return new StackValueCollection(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // scv_list is the list of ScopeValues describing the JVM stack state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // There is one scv_list entry for every JVM stack state in use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  int length = scv_list->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  StackValueCollection* result = new StackValueCollection(length);
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   140
  for (int i = 0; i < length; i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   141
    result->add(create_stack_value(scv_list->at(i)));
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   142
  }
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
  // 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
   145
  // performed through compiledVFrame::update_stack.
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   146
  GrowableArray<jvmtiDeferredLocalVariableSet*>* list = thread()->deferred_locals();
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   147
  if (list != NULL ) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   148
    // 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
   149
    for (int i = 0; i < list->length(); i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   150
      if (list->at(i)->matches(this)) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   151
        list->at(i)->update_stack(result);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   152
        break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   153
      }
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
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  return result;
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
// The implementation of the following two methods was factorized into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// class StackValue because it is also used from within deoptimization.cpp for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// rematerialization and relocking of non-escaping objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
StackValue *compiledVFrame::create_stack_value(ScopeValue *sv) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  return StackValue::create_stack_value(&_fr, register_map(), sv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
BasicLock* compiledVFrame::resolve_monitor_lock(Location location) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  return StackValue::resolve_monitor_lock(&_fr, location);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
GrowableArray<MonitorInfo*>* compiledVFrame::monitors() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // Natives has no scope
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  if (scope() == NULL) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   177
    CompiledMethod* nm = code();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   178
    Method* method = nm->method();
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 38133
diff changeset
   179
    assert(method->is_native() || nm->is_aot(), "Expect a native method or precompiled method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    if (!method->is_synchronized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
      return new GrowableArray<MonitorInfo*>(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    // This monitor is really only needed for UseBiasedLocking, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    // return it in all cases for now as it might be useful for stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    // traces and tools as well
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    GrowableArray<MonitorInfo*> *monitors = new GrowableArray<MonitorInfo*>(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    // Casting away const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    frame& fr = (frame&) _fr;
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   189
    MonitorInfo* info = new MonitorInfo(
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   190
        fr.get_native_receiver(), fr.get_native_monitor(), false, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    monitors->push(info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    return monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  GrowableArray<MonitorValue*>* monitors = scope()->monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  if (monitors == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    return new GrowableArray<MonitorInfo*>(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(monitors->length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  for (int index = 0; index < monitors->length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    MonitorValue* mv = monitors->at(index);
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   201
    ScopeValue*   ov = mv->owner();
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   202
    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
   203
    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
   204
      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
   205
      // Put klass for scalar replaced object.
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   206
      ScopeValue* kv = ((ObjectValue *)ov)->klass();
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   207
      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
   208
      Handle k(Thread::current(), ((ConstantOopReadValue*)kv)->value()());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   209
      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
   210
      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
   211
                                   mv->eliminated(), true));
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   212
    } else {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   213
      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
   214
                                   mv->eliminated(), false));
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   215
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  }
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   217
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   218
  // 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
   219
  // performed through compiledVFrame::update_monitors.
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   220
  GrowableArray<jvmtiDeferredLocalVariableSet*>* list = thread()->deferred_locals();
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   221
  if (list != NULL ) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   222
    // 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
   223
    for (int i = 0; i < list->length(); i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   224
      if (list->at(i)->matches(this)) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   225
        list->at(i)->update_monitors(result);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   226
        break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   227
      }
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
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   235
compiledVFrame::compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, CompiledMethod* nm)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
: javaVFrame(fr, reg_map, thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  _scope  = NULL;
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   238
  _vframe_id = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // Compiled method (native stub or Java code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // native wrappers have no scope data, it is implied
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   241
  if (!nm->is_compiled() || !nm->as_compiled_method()->is_native_method()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   242
      _scope  = nm->scope_desc_at(_fr.pc());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   246
compiledVFrame::compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, ScopeDesc* scope, int vframe_id)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
: javaVFrame(fr, reg_map, thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  _scope  = scope;
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   249
  _vframe_id = vframe_id;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  guarantee(_scope != NULL, "scope must be present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
bool compiledVFrame::is_top() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // FIX IT: Remove this when new native stubs are in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  if (scope() == NULL) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  return scope()->is_top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   261
CompiledMethod* compiledVFrame::code() const {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   262
  return CodeCache::find_compiled(_fr.pc());
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
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   266
Method* compiledVFrame::method() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  if (scope() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    // native nmethods have no scope the method is implied
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   269
    nmethod* nm = code()->as_nmethod();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    assert(nm->is_native_method(), "must be native");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    return nm->method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   273
  return scope()->method();
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
int compiledVFrame::bci() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  int raw = raw_bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  return raw == SynchronizationEntryBCI ? 0 : raw;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
int compiledVFrame::raw_bci() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  if (scope() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    // native nmethods have no scope the method/bci is implied
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   286
    nmethod* nm = code()->as_nmethod();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    assert(nm->is_native_method(), "must be native");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  return scope()->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   293
bool compiledVFrame::should_reexecute() const {
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   294
  if (scope() == NULL) {
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   295
    // native nmethods have no scope the method/bci is implied
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   296
    nmethod* nm = code()->as_nmethod();
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   297
    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
   298
    return false;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   299
  }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   300
  return scope()->should_reexecute();
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 3171
diff changeset
   301
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
vframe* compiledVFrame::sender() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  const frame f = fr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  if (scope() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    // native nmethods have no scope the method/bci is implied
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 29081
diff changeset
   307
    nmethod* nm = code()->as_nmethod();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    assert(nm->is_native_method(), "must be native");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    return vframe::sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    return scope()->is_top()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
      ? vframe::sender()
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   313
      : new compiledVFrame(&f, register_map(), thread(), scope()->sender(), vframe_id() + 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   317
jvmtiDeferredLocalVariableSet::jvmtiDeferredLocalVariableSet(Method* method, int bci, intptr_t* id, int vframe_id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  _method = method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  _bci = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  _id = id;
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   321
  _vframe_id = vframe_id;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // Alway will need at least one, must be on C heap
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7444
diff changeset
   323
  _locals = new(ResourceObj::C_HEAP, mtCompiler) GrowableArray<jvmtiDeferredLocalVariable*> (1, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
jvmtiDeferredLocalVariableSet::~jvmtiDeferredLocalVariableSet() {
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   327
  for (int i = 0; i < _locals->length(); i++ ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    delete _locals->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  // Free growableArray and c heap for elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  delete _locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   334
bool jvmtiDeferredLocalVariableSet::matches(const vframe* vf) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  if (!vf->is_compiled_frame()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  compiledVFrame* cvf = (compiledVFrame*)vf;
43484
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   337
  if (cvf->fr().id() == id() && cvf->vframe_id() == vframe_id()) {
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   338
    assert(cvf->method() == method() && cvf->bci() == bci(), "must agree");
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   339
    return true;
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   340
  }
9c95dd31d0da 8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents: 42650
diff changeset
   341
  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   344
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
   345
  for (int i = 0; i < _locals->length(); i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   346
    if (_locals->at(i)->index() == idx) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   347
      assert(_locals->at(i)->type() == type, "Wrong type");
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   348
      _locals->at(i)->set_value(val);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  }
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   352
  _locals->push(new jvmtiDeferredLocalVariable(idx, type, val));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
48607
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   355
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
   356
  switch (type) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   357
    case T_BOOLEAN:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   358
      locals->set_int_at(index, value.z);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   359
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   360
    case T_CHAR:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   361
      locals->set_int_at(index, value.c);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   362
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   363
    case T_FLOAT:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   364
      locals->set_float_at(index, value.f);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   365
      break;
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   366
    case T_DOUBLE:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   367
      locals->set_double_at(index, value.d);
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_BYTE:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   370
      locals->set_int_at(index, value.b);
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_SHORT:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   373
      locals->set_int_at(index, value.s);
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_INT:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   376
      locals->set_int_at(index, value.i);
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_LONG:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   379
      locals->set_long_at(index, value.j);
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_OBJECT:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   382
      {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   383
        Handle obj(Thread::current(), (oop)value.l);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   384
        locals->set_obj_at(index, obj);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   385
      }
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
    default:
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   388
      ShouldNotReachHere();
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   389
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   390
}
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
void jvmtiDeferredLocalVariableSet::update_locals(StackValueCollection* locals) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   393
  for (int l = 0; l < _locals->length(); l ++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   394
    jvmtiDeferredLocalVariable* val = _locals->at(l);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   395
    if (val->index() >= 0 && val->index() < method()->max_locals()) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   396
      update_value(locals, val->type(), val->index(), val->value());
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   397
    }
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
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   402
void jvmtiDeferredLocalVariableSet::update_stack(StackValueCollection* expressions) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   403
  for (int l = 0; l < _locals->length(); l ++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   404
    jvmtiDeferredLocalVariable* val = _locals->at(l);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   405
    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
   406
      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
   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
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   412
void jvmtiDeferredLocalVariableSet::update_monitors(GrowableArray<MonitorInfo*>* monitors) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   413
  for (int l = 0; l < _locals->length(); l ++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   414
    jvmtiDeferredLocalVariable* val = _locals->at(l);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   415
    if (val->index() >= method()->max_locals() + method()->max_stack()) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   416
      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
   417
      MonitorInfo* info = monitors->at(lock_index);
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   418
      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
   419
      monitors->at_put(lock_index, new_info);
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
  }
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   422
}
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   423
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   424
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
void jvmtiDeferredLocalVariableSet::oops_do(OopClosure* f) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   426
  // 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
   427
  // 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
   428
  for (int i = 0; i < _locals->length(); i++) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   429
    if (_locals->at(i)->type() == T_OBJECT) {
7fc3d62481ba 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 47216
diff changeset
   430
      f->do_oop(_locals->at(i)->oop_addr());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
jvmtiDeferredLocalVariable::jvmtiDeferredLocalVariable(int index, BasicType type, jvalue value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  _index = index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  _type = type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  _value = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
void compiledVFrame::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
#endif // PRODUCT