src/hotspot/share/prims/jvmtiImpl.cpp
author lfoltan
Mon, 21 Oct 2019 13:13:16 -0400
changeset 58722 cba8afa5cfed
parent 58093 50e1d346a126
child 59223 f16e4154dd7b
permissions -rw-r--r--
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently Summary: Increase the use of type signature constants instead of hard coded characters within the JVM. Reviewed-by: coleenp, dholmes, fparain Contributed-by: lois.foltan@oracle.com, john.r.rose@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
54847
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
     2
 * Copyright (c) 2003, 2019, 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: 2137
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2137
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: 2137
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: 7123
diff changeset
    25
#include "precompiled.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 52877
diff changeset
    26
#include "classfile/symbolTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    27
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    28
#include "interpreter/interpreter.hpp"
25626
362d0c3a7651 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 25351
diff changeset
    29
#include "interpreter/oopMapCache.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    30
#include "jvmtifiles/jvmtiEnv.hpp"
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
    31
#include "logging/log.hpp"
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
    32
#include "logging/logStream.hpp"
49360
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 48105
diff changeset
    33
#include "memory/allocation.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    34
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    35
#include "oops/instanceKlass.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27880
diff changeset
    36
#include "oops/oop.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    37
#include "prims/jvmtiAgentThread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    38
#include "prims/jvmtiEventController.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    39
#include "prims/jvmtiImpl.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    40
#include "prims/jvmtiRedefineClasses.hpp"
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 38259
diff changeset
    41
#include "runtime/atomic.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    42
#include "runtime/deoptimization.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    43
#include "runtime/frame.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    44
#include "runtime/handles.inline.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49360
diff changeset
    45
#include "runtime/interfaceSupport.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    46
#include "runtime/javaCalls.hpp"
9405
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
    47
#include "runtime/os.hpp"
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
    48
#include "runtime/serviceThread.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    49
#include "runtime/signature.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 14488
diff changeset
    50
#include "runtime/thread.inline.hpp"
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47765
diff changeset
    51
#include "runtime/threadSMR.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    52
#include "runtime/vframe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    53
#include "runtime/vframe_hp.hpp"
52877
9e041366c764 8214850: Rename vm_operations.?pp files to vmOperations.?pp files
tschatzl
parents: 52445
diff changeset
    54
#include "runtime/vmOperations.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7123
diff changeset
    55
#include "utilities/exceptions.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// class JvmtiAgentThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// JavaThread used to wrap a thread started by an agent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// using the JVMTI method RunAgentThread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
JvmtiAgentThread::JvmtiAgentThread(JvmtiEnv* env, jvmtiStartFunction start_fn, const void *start_arg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    : JavaThread(start_function_wrapper) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    _env = env;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    _start_fn = start_fn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    _start_arg = start_arg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
JvmtiAgentThread::start_function_wrapper(JavaThread *thread, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // It is expected that any Agent threads will be created as
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    // Java Threads.  If this is the case, notification of the creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    // of the thread is given in JavaThread::thread_main().
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    assert(thread->is_Java_thread(), "debugger thread should be a Java Thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    assert(thread == JavaThread::current(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    JvmtiAgentThread *dthread = (JvmtiAgentThread *)thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    dthread->call_start_function();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
JvmtiAgentThread::call_start_function() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    ThreadToNativeFromVM transition(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    _start_fn(_env->jvmti_external(), jni_environment(), (void*)_start_arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// class GrowableCache - private methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
void GrowableCache::recache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  int len = _elements->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 26558
diff changeset
    97
  FREE_C_HEAP_ARRAY(address, _cache);
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
    98
  _cache = NEW_C_HEAP_ARRAY(address,len+1, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  for (int i=0; i<len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    _cache[i] = _elements->at(i)->getCacheValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    // The cache entry has gone bad. Without a valid frame pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    // value, the entry is useless so we simply delete it in product
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    // mode. The call to remove() will rebuild the cache again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    // without the bad entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    if (_cache[i] == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
      assert(false, "cannot recache NULL elements");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      remove(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  _cache[len] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  _listener_fun(_this_obj,_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
bool GrowableCache::equals(void* v, GrowableElement *e2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  GrowableElement *e1 = (GrowableElement *) v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  assert(e1 != NULL, "e1 != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  assert(e2 != NULL, "e2 != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  return e1->equals(e2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
// class GrowableCache - public methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
GrowableCache::GrowableCache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  _this_obj       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  _listener_fun   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  _elements       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  _cache          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
GrowableCache::~GrowableCache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  delete _elements;
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 26558
diff changeset
   141
  FREE_C_HEAP_ARRAY(address, _cache);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
void GrowableCache::initialize(void *this_obj, void listener_fun(void *, address*) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  _this_obj       = this_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  _listener_fun   = listener_fun;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   147
  _elements       = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<GrowableElement*>(5,true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  recache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
// number of elements in the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
int GrowableCache::length() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  return _elements->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
// get the value of the index element in the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
GrowableElement* GrowableCache::at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  GrowableElement *e = (GrowableElement *) _elements->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  assert(e != NULL, "e != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  return e;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
int GrowableCache::find(GrowableElement* e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  return _elements->find(e, GrowableCache::equals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// append a copy of the element to the end of the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
void GrowableCache::append(GrowableElement* e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  GrowableElement *new_e = e->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  _elements->append(new_e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  recache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
// insert a copy of the element using lessthan()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
void GrowableCache::insert(GrowableElement* e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  GrowableElement *new_e = e->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  _elements->append(new_e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  int n = length()-2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  for (int i=n; i>=0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    GrowableElement *e1 = _elements->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    GrowableElement *e2 = _elements->at(i+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    if (e2->lessThan(e1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      _elements->at_put(i+1, e1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      _elements->at_put(i,   e2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  recache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
// remove the element at index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
void GrowableCache::remove (int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  GrowableElement *e = _elements->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  assert(e != NULL, "e != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  _elements->remove(e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  delete e;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  recache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
// clear out all elements, release all heap space and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
// let our listener know that things have changed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
void GrowableCache::clear() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  int len = _elements->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  for (int i=0; i<len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    delete _elements->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  _elements->clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  recache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
void GrowableCache::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  int len = _elements->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  for (int i=0; i<len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    GrowableElement *e = _elements->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    e->oops_do(f);
7918
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7896
diff changeset
   217
  }
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7896
diff changeset
   218
}
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7896
diff changeset
   219
21519
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   220
void GrowableCache::metadata_do(void f(Metadata*)) {
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   221
  int len = _elements->length();
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   222
  for (int i=0; i<len; i++) {
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   223
    GrowableElement *e = _elements->at(i);
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   224
    e->metadata_do(f);
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   225
  }
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   226
}
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   227
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
// class JvmtiBreakpoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
JvmtiBreakpoint::JvmtiBreakpoint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  _method = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  _bci    = 0;
21519
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   235
  _class_holder = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   238
JvmtiBreakpoint::JvmtiBreakpoint(Method* m_method, jlocation location) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  _method        = m_method;
21519
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   240
  _class_holder  = _method->method_holder()->klass_holder();
21116
6e8fb0940359 8025834: NPE in Parallel Scavenge with -XX:+CheckUnhandledOops
ehelin
parents: 20059
diff changeset
   241
#ifdef CHECK_UNHANDLED_OOPS
21519
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   242
  // _class_holder can't be wrapped in a Handle, because JvmtiBreakpoints are
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   243
  // sometimes allocated on the heap.
21116
6e8fb0940359 8025834: NPE in Parallel Scavenge with -XX:+CheckUnhandledOops
ehelin
parents: 20059
diff changeset
   244
  //
21519
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   245
  // The code handling JvmtiBreakpoints allocated on the stack can't be
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   246
  // interrupted by a GC until _class_holder is reachable by the GC via the
21116
6e8fb0940359 8025834: NPE in Parallel Scavenge with -XX:+CheckUnhandledOops
ehelin
parents: 20059
diff changeset
   247
  // oops_do method.
21519
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   248
  Thread::current()->allow_unhandled_oop(&_class_holder);
21116
6e8fb0940359 8025834: NPE in Parallel Scavenge with -XX:+CheckUnhandledOops
ehelin
parents: 20059
diff changeset
   249
#endif // CHECK_UNHANDLED_OOPS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  assert(_method != NULL, "_method != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  _bci           = (int) location;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  assert(_bci >= 0, "_bci >= 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
void JvmtiBreakpoint::copy(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  _method   = bp._method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  _bci      = bp._bci;
21519
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   258
  _class_holder = bp._class_holder;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
bool JvmtiBreakpoint::lessThan(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
bool JvmtiBreakpoint::equals(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  return _method   == bp._method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    &&   _bci      == bp._bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
bool JvmtiBreakpoint::is_valid() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   272
  // class loader can be NULL
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  return _method != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
         _bci >= 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
38091
d7e51f40ba2d 8154719: JvmtiBreakpoint rename method print() to print_on()
rehn
parents: 37992
diff changeset
   277
address JvmtiBreakpoint::getBcp() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  return _method->bcp_from(_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
void JvmtiBreakpoint::each_method_version_do(method_action meth_act) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   282
  ((Method*)_method->*meth_act)(_bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
26558
b7df27df6384 8055008: Clean up code that saves the previous versions of redefined classes
coleenp
parents: 25626
diff changeset
   284
  // add/remove breakpoint to/from versions of the method that are EMCP.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  Thread *thread = Thread::current();
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
   286
  InstanceKlass* ik = _method->method_holder();
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   287
  Symbol* m_name = _method->name();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   288
  Symbol* m_signature = _method->signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
20059
c26474fd5ac0 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 18025
diff changeset
   290
  // search previous versions if they exist
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
   291
  for (InstanceKlass* pv_node = ik->previous_versions();
26558
b7df27df6384 8055008: Clean up code that saves the previous versions of redefined classes
coleenp
parents: 25626
diff changeset
   292
       pv_node != NULL;
b7df27df6384 8055008: Clean up code that saves the previous versions of redefined classes
coleenp
parents: 25626
diff changeset
   293
       pv_node = pv_node->previous_versions()) {
b7df27df6384 8055008: Clean up code that saves the previous versions of redefined classes
coleenp
parents: 25626
diff changeset
   294
    Array<Method*>* methods = pv_node->methods();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
20059
c26474fd5ac0 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 18025
diff changeset
   296
    for (int i = methods->length() - 1; i >= 0; i--) {
c26474fd5ac0 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 18025
diff changeset
   297
      Method* method = methods->at(i);
26558
b7df27df6384 8055008: Clean up code that saves the previous versions of redefined classes
coleenp
parents: 25626
diff changeset
   298
      // Only set breakpoints in running EMCP methods.
b7df27df6384 8055008: Clean up code that saves the previous versions of redefined classes
coleenp
parents: 25626
diff changeset
   299
      if (method->is_running_emcp() &&
20059
c26474fd5ac0 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 18025
diff changeset
   300
          method->name() == m_name &&
c26474fd5ac0 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 18025
diff changeset
   301
          method->signature() == m_signature) {
38259
b495d1cfe673 8153535: Convert TraceRedefineClasses to Unified Logging
rehn
parents: 38091
diff changeset
   302
        ResourceMark rm;
b495d1cfe673 8153535: Convert TraceRedefineClasses to Unified Logging
rehn
parents: 38091
diff changeset
   303
        log_debug(redefine, class, breakpoint)
b495d1cfe673 8153535: Convert TraceRedefineClasses to Unified Logging
rehn
parents: 38091
diff changeset
   304
          ("%sing breakpoint in %s(%s)", meth_act == &Method::set_breakpoint ? "sett" : "clear",
b495d1cfe673 8153535: Convert TraceRedefineClasses to Unified Logging
rehn
parents: 38091
diff changeset
   305
           method->name()->as_C_string(), method->signature()->as_C_string());
20059
c26474fd5ac0 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 18025
diff changeset
   306
        (method->*meth_act)(_bci);
c26474fd5ac0 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 18025
diff changeset
   307
        break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
      }
20059
c26474fd5ac0 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 18025
diff changeset
   309
    }
c26474fd5ac0 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 18025
diff changeset
   310
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
void JvmtiBreakpoint::set() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   314
  each_method_version_do(&Method::set_breakpoint);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
void JvmtiBreakpoint::clear() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   318
  each_method_version_do(&Method::clear_breakpoint);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
38091
d7e51f40ba2d 8154719: JvmtiBreakpoint rename method print() to print_on()
rehn
parents: 37992
diff changeset
   321
void JvmtiBreakpoint::print_on(outputStream* out) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
#ifndef PRODUCT
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   323
  ResourceMark rm;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  const char *class_name  = (_method == NULL) ? "NULL" : _method->klass_name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  const char *method_name = (_method == NULL) ? "NULL" : _method->name()->as_C_string();
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   326
  out->print("Breakpoint(%s,%s,%d,%p)", class_name, method_name, _bci, getBcp());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
// class VM_ChangeBreakpoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
// Modify the Breakpoints data structure at a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
void VM_ChangeBreakpoints::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  switch (_operation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  case SET_BREAKPOINT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    _breakpoints->set_at_safepoint(*_bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  case CLEAR_BREAKPOINT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    _breakpoints->clear_at_safepoint(*_bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    assert(false, "Unknown operation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
void VM_ChangeBreakpoints::oops_do(OopClosure* f) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15937
diff changeset
   351
  // The JvmtiBreakpoints in _breakpoints will be visited via
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15937
diff changeset
   352
  // JvmtiExport::oops_do.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  if (_bp != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    _bp->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
21519
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   358
void VM_ChangeBreakpoints::metadata_do(void f(Metadata*)) {
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   359
  // Walk metadata in breakpoints to keep from being deallocated with RedefineClasses
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   360
  if (_bp != NULL) {
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   361
    _bp->metadata_do(f);
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   362
  }
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   363
}
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   364
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
// class JvmtiBreakpoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
// a JVMTI internal collection of JvmtiBreakpoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
JvmtiBreakpoints::JvmtiBreakpoints(void listener_fun(void *,address *)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  _bps.initialize(this,listener_fun);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
JvmtiBreakpoints:: ~JvmtiBreakpoints() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
void  JvmtiBreakpoints::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  _bps.oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
21519
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   381
void  JvmtiBreakpoints::metadata_do(void f(Metadata*)) {
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   382
  _bps.metadata_do(f);
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   383
}
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   384
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   385
void JvmtiBreakpoints::print() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
#ifndef PRODUCT
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   387
  LogTarget(Trace, jvmti) log;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46630
diff changeset
   388
  LogStream log_stream(log);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  int n = _bps.length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  for (int i=0; i<n; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    JvmtiBreakpoint& bp = _bps.at(i);
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   393
    log_stream.print("%d: ", i);
38091
d7e51f40ba2d 8154719: JvmtiBreakpoint rename method print() to print_on()
rehn
parents: 37992
diff changeset
   394
    bp.print_on(&log_stream);
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   395
    log_stream.cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
void JvmtiBreakpoints::set_at_safepoint(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  int i = _bps.find(bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  if (i == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    _bps.append(bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    bp.set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
void JvmtiBreakpoints::clear_at_safepoint(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  int i = _bps.find(bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  if (i != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    _bps.remove(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    bp.clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
int JvmtiBreakpoints::length() { return _bps.length(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
int JvmtiBreakpoints::set(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  if ( _bps.find(bp) != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
     return JVMTI_ERROR_DUPLICATE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15937
diff changeset
   427
  VM_ChangeBreakpoints set_breakpoint(VM_ChangeBreakpoints::SET_BREAKPOINT, &bp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  VMThread::execute(&set_breakpoint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  return JVMTI_ERROR_NONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
int JvmtiBreakpoints::clear(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  if ( _bps.find(bp) == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
     return JVMTI_ERROR_NOT_FOUND;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15937
diff changeset
   437
  VM_ChangeBreakpoints clear_breakpoint(VM_ChangeBreakpoints::CLEAR_BREAKPOINT, &bp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  VMThread::execute(&clear_breakpoint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  return JVMTI_ERROR_NONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   442
void JvmtiBreakpoints::clearall_in_class_at_safepoint(Klass* klass) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  bool changed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  // We are going to run thru the list of bkpts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  // and delete some.  This deletion probably alters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  // the list in some implementation defined way such
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // that when we delete entry i, the next entry might
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  // no longer be at i+1.  To be safe, each time we delete
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // an entry, we'll just start again from the beginning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  // We'll stop when we make a pass thru the whole list without
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  // deleting anything.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  while (changed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    int len = _bps.length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    changed = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      JvmtiBreakpoint& bp = _bps.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      if (bp.method()->method_holder() == klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
        bp.clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
        _bps.remove(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
        // This changed 'i' so we have to start over.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
        changed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
// class JvmtiCurrentBreakpoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
JvmtiBreakpoints *JvmtiCurrentBreakpoints::_jvmti_breakpoints  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
address *         JvmtiCurrentBreakpoints::_breakpoint_list    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
JvmtiBreakpoints& JvmtiCurrentBreakpoints::get_jvmti_breakpoints() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  if (_jvmti_breakpoints != NULL) return (*_jvmti_breakpoints);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  _jvmti_breakpoints = new JvmtiBreakpoints(listener_fun);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  assert(_jvmti_breakpoints != NULL, "_jvmti_breakpoints != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  return (*_jvmti_breakpoints);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
void  JvmtiCurrentBreakpoints::listener_fun(void *this_obj, address *cache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  JvmtiBreakpoints *this_jvmti = (JvmtiBreakpoints *) this_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  assert(this_jvmti != NULL, "this_jvmti != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  debug_only(int n = this_jvmti->length(););
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  assert(cache[n] == NULL, "cache must be NULL terminated");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  set_breakpoint_list(cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
void JvmtiCurrentBreakpoints::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  if (_jvmti_breakpoints != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    _jvmti_breakpoints->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
21519
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   500
void JvmtiCurrentBreakpoints::metadata_do(void f(Metadata*)) {
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   501
  if (_jvmti_breakpoints != NULL) {
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   502
    _jvmti_breakpoints->metadata_do(f);
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   503
  }
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   504
}
72e63a0dbda2 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 21116
diff changeset
   505
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
///////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
// class VM_GetOrSetLocal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
// Constructor for non-object getter
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47216
diff changeset
   512
VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, jint index, BasicType type)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  : _thread(thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  , _calling_thread(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  , _depth(depth)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  , _index(index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  , _type(type)
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 51329
diff changeset
   518
  , _jvf(NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  , _set(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  , _result(JVMTI_ERROR_NONE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
// Constructor for object or non-object setter
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47216
diff changeset
   525
VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, jint index, BasicType type, jvalue value)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  : _thread(thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  , _calling_thread(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  , _depth(depth)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  , _index(index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  , _type(type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  , _value(value)
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 51329
diff changeset
   532
  , _jvf(NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  , _set(true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  , _result(JVMTI_ERROR_NONE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
// Constructor for object getter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, JavaThread* calling_thread, jint depth, int index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  : _thread(thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  , _calling_thread(calling_thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  , _depth(depth)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  , _index(index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  , _type(T_OBJECT)
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 51329
diff changeset
   545
  , _jvf(NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  , _set(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  , _result(JVMTI_ERROR_NONE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
vframe *VM_GetOrSetLocal::get_vframe() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  if (!_thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  RegisterMap reg_map(_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  vframe *vf = _thread->last_java_vframe(&reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  int d = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  while ((vf != NULL) && (d < _depth)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    vf = vf->java_sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    d++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  return vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
javaVFrame *VM_GetOrSetLocal::get_java_vframe() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  vframe* vf = get_vframe();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  if (vf == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    _result = JVMTI_ERROR_NO_MORE_FRAMES;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  javaVFrame *jvf = (javaVFrame*)vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   573
  if (!vf->is_java_frame()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    _result = JVMTI_ERROR_OPAQUE_FRAME;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  return jvf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
// Check that the klass is assignable to a type with the given signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
// Another solution could be to use the function Klass::is_subtype_of(type).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
// But the type class can be forced to load/initialize eagerly in such a case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
// This may cause unexpected consequences like CFLH or class-init JVMTI events.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
// It is better to avoid such a behavior.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
bool VM_GetOrSetLocal::is_assignable(const char* ty_sign, Klass* klass, Thread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  assert(ty_sign != NULL, "type signature must not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  assert(thread != NULL, "thread must not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  assert(klass != NULL, "klass must not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  int len = (int) strlen(ty_sign);
58722
cba8afa5cfed 8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents: 58093
diff changeset
   591
  if (ty_sign[0] == JVM_SIGNATURE_CLASS &&
cba8afa5cfed 8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents: 58093
diff changeset
   592
      ty_sign[len-1] == JVM_SIGNATURE_ENDCLASS) { // Need pure class/interface name
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    ty_sign++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    len -= 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  }
54847
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
   596
  TempNewSymbol ty_sym = SymbolTable::new_symbol(ty_sign, len);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   597
  if (klass->name() == ty_sym) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  // Compare primary supers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  int super_depth = klass->super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  int idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  for (idx = 0; idx < super_depth; idx++) {
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   604
    if (klass->primary_super_of_depth(idx)->name() == ty_sym) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  // Compare secondary supers
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 49480
diff changeset
   609
  const Array<Klass*>* sec_supers = klass->secondary_supers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  for (idx = 0; idx < sec_supers->length(); idx++) {
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   611
    if (((Klass*) sec_supers->at(idx))->name() == ty_sym) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
// Checks error conditions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
//   JVMTI_ERROR_INVALID_SLOT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
//   JVMTI_ERROR_TYPE_MISMATCH
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
// Returns: 'true' - everything is Ok, 'false' - error code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
52445
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   623
bool VM_GetOrSetLocal::check_slot_type_lvt(javaVFrame* jvf) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   624
  Method* method_oop = jvf->method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  jint num_entries = method_oop->localvariable_table_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  if (num_entries == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    _result = JVMTI_ERROR_INVALID_SLOT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    return false;       // There are no slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  int signature_idx = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  int vf_bci = jvf->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  LocalVariableTableElement* table = method_oop->localvariable_table_start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  for (int i = 0; i < num_entries; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    int start_bci = table[i].start_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    int end_bci = start_bci + table[i].length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    // Here we assume that locations of LVT entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    // with the same slot number cannot be overlapped
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    if (_index == (jint) table[i].slot && start_bci <= vf_bci && vf_bci <= end_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
      signature_idx = (int) table[i].descriptor_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  if (signature_idx == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    _result = JVMTI_ERROR_INVALID_SLOT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    return false;       // Incorrect slot index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   648
  Symbol*   sign_sym  = method_oop->constants()->symbol_at(signature_idx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  const char* signature = (const char *) sign_sym->as_utf8();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  BasicType slot_type = char2type(signature[0]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  switch (slot_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  case T_BOOLEAN:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    slot_type = T_INT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  case T_ARRAY:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    slot_type = T_OBJECT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    break;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46438
diff changeset
   662
  default:
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46438
diff changeset
   663
    break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  if (_type != slot_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    _result = JVMTI_ERROR_TYPE_MISMATCH;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  jobject jobj = _value.l;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  if (_set && slot_type == T_OBJECT && jobj != NULL) { // NULL reference is allowed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    // Check that the jobject class matches the return type signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    JavaThread* cur_thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
    HandleMark hm(cur_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 40655
diff changeset
   676
    Handle obj(cur_thread, JNIHandles::resolve_external_guard(jobj));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    NULL_CHECK(obj, (_result = JVMTI_ERROR_INVALID_OBJECT, false));
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
   678
    Klass* ob_k = obj->klass();
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
   679
    NULL_CHECK(ob_k, (_result = JVMTI_ERROR_INVALID_OBJECT, false));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
   681
    if (!is_assignable(signature, ob_k, cur_thread)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
      _result = JVMTI_ERROR_TYPE_MISMATCH;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
52445
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   689
bool VM_GetOrSetLocal::check_slot_type_no_lvt(javaVFrame* jvf) {
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   690
  Method* method_oop = jvf->method();
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   691
  jint extra_slot = (_type == T_LONG || _type == T_DOUBLE) ? 1 : 0;
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   692
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   693
  if (_index < 0 || _index + extra_slot >= method_oop->max_locals()) {
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   694
    _result = JVMTI_ERROR_INVALID_SLOT;
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   695
    return false;
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   696
  }
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   697
  StackValueCollection *locals = _jvf->locals();
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   698
  BasicType slot_type = locals->at(_index)->type();
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   699
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   700
  if (slot_type == T_CONFLICT) {
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   701
    _result = JVMTI_ERROR_INVALID_SLOT;
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   702
    return false;
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   703
  }
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   704
  if (extra_slot) {
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   705
    BasicType extra_slot_type = locals->at(_index + 1)->type();
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   706
    if (extra_slot_type != T_INT) {
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   707
      _result = JVMTI_ERROR_INVALID_SLOT;
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   708
      return false;
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   709
    }
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   710
  }
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   711
  if (_type != slot_type && (_type == T_OBJECT || slot_type != T_INT)) {
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   712
    _result = JVMTI_ERROR_TYPE_MISMATCH;
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   713
    return false;
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   714
  }
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   715
  return true;
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   716
}
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   717
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
static bool can_be_deoptimized(vframe* vf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  return (vf->is_compiled_frame() && vf->fr().can_be_deoptimized());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
bool VM_GetOrSetLocal::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  _jvf = get_java_vframe();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  NULL_CHECK(_jvf, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
52445
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   726
  Method* method_oop = _jvf->method();
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   727
  if (method_oop->is_native()) {
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   728
    if (getting_receiver() && !method_oop->is_static()) {
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   729
      return true;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   730
    } else {
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   731
      _result = JVMTI_ERROR_OPAQUE_FRAME;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   732
      return false;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   733
    }
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   734
  }
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   735
55117
b6418e5aad70 8223718: Checks in check_slot_type_no_lvt() should be always executed
sspitsyn
parents: 54847
diff changeset
   736
  if (!check_slot_type_no_lvt(_jvf)) {
b6418e5aad70 8223718: Checks in check_slot_type_no_lvt() should be always executed
sspitsyn
parents: 54847
diff changeset
   737
    return false;
b6418e5aad70 8223718: Checks in check_slot_type_no_lvt() should be always executed
sspitsyn
parents: 54847
diff changeset
   738
  }
52445
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   739
  if (method_oop->has_localvariable_table()) {
a1eb4f1b94c1 8080406: VM_GetOrSetLocal doesn't check local slot type against requested type
sspitsyn
parents: 51334
diff changeset
   740
    return check_slot_type_lvt(_jvf);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
void VM_GetOrSetLocal::doit() {
25626
362d0c3a7651 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 25351
diff changeset
   746
  InterpreterOopMap oop_mask;
362d0c3a7651 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 25351
diff changeset
   747
  _jvf->method()->mask_for(_jvf->bci(), &oop_mask);
362d0c3a7651 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 25351
diff changeset
   748
  if (oop_mask.is_dead(_index)) {
362d0c3a7651 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 25351
diff changeset
   749
    // The local can be invalid and uninitialized in the scope of current bci
362d0c3a7651 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 25351
diff changeset
   750
    _result = JVMTI_ERROR_INVALID_SLOT;
362d0c3a7651 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 25351
diff changeset
   751
    return;
362d0c3a7651 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 25351
diff changeset
   752
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  if (_set) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
    // Force deoptimization of frame if compiled because it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
    // possible the compiler emitted some locals as constant values,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
    // meaning they are not mutable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
    if (can_be_deoptimized(_jvf)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
      // Schedule deoptimization so that eventually the local
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
      // update will be written to an interpreter frame.
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   761
      Deoptimization::deoptimize_frame(_jvf->thread(), _jvf->fr().id());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
      // Now store a new value for the local which will be applied
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
      // once deoptimization occurs. Note however that while this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
      // write is deferred until deoptimization actually happens
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
      // can vframe created after this point will have its locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
      // reflecting this update so as far as anyone can see the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
      // write has already taken place.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
      // If we are updating an oop then get the oop from the handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
      // since the handle will be long gone by the time the deopt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
      // happens. The oop stored in the deferred local will be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
      // gc'd on its own.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
      if (_type == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
        _value.l = (jobject) (JNIHandles::resolve_external_guard(_value.l));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
      // Re-read the vframe so we can see that it is deoptimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
      // [ Only need because of assert in update_local() ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
      _jvf = get_java_vframe();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
      ((compiledVFrame*)_jvf)->update_local(_type, _index, _value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    StackValueCollection *locals = _jvf->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
    switch (_type) {
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   787
      case T_INT:    locals->set_int_at   (_index, _value.i); break;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   788
      case T_LONG:   locals->set_long_at  (_index, _value.j); break;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   789
      case T_FLOAT:  locals->set_float_at (_index, _value.f); break;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   790
      case T_DOUBLE: locals->set_double_at(_index, _value.d); break;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   791
      case T_OBJECT: {
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 40655
diff changeset
   792
        Handle ob_h(Thread::current(), JNIHandles::resolve_external_guard(_value.l));
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   793
        locals->set_obj_at (_index, ob_h);
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   794
        break;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   795
      }
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   796
      default: ShouldNotReachHere();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
    _jvf->set_locals(locals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  } else {
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   800
    if (_jvf->method()->is_native() && _jvf->is_compiled_frame()) {
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   801
      assert(getting_receiver(), "Can only get here when getting receiver");
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   802
      oop receiver = _jvf->fr().get_native_receiver();
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   803
      _value.l = JNIHandles::make_local(_calling_thread, receiver);
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   804
    } else {
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   805
      StackValueCollection *locals = _jvf->locals();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   807
      switch (_type) {
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   808
        case T_INT:    _value.i = locals->int_at   (_index);   break;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   809
        case T_LONG:   _value.j = locals->long_at  (_index);   break;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   810
        case T_FLOAT:  _value.f = locals->float_at (_index);   break;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   811
        case T_DOUBLE: _value.d = locals->double_at(_index);   break;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   812
        case T_OBJECT: {
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   813
          // Wrap the oop to be returned in a local JNI handle since
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   814
          // oops_do() no longer applies after doit() is finished.
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   815
          oop obj = locals->obj_at(_index)();
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   816
          _value.l = JNIHandles::make_local(_calling_thread, obj);
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   817
          break;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   818
        }
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   819
        default: ShouldNotReachHere();
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   820
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
bool VM_GetOrSetLocal::allow_nested_vm_operations() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  return true; // May need to deoptimize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   831
VM_GetReceiver::VM_GetReceiver(
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   832
    JavaThread* thread, JavaThread* caller_thread, jint depth)
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   833
    : VM_GetOrSetLocal(thread, caller_thread, depth, 0) {}
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
   834
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
/////////////////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
// class JvmtiSuspendControl - see comments in jvmtiImpl.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
bool JvmtiSuspendControl::suspend(JavaThread *java_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  // external suspend should have caught suspending a thread twice
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  // Immediate suspension required for JPDA back-end so JVMTI agent threads do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  // not deadlock due to later suspension on transitions while holding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  // raw monitors.  Passing true causes the immediate suspension.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  // java_suspend() will catch threads in the process of exiting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  // and will ignore them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  java_thread->java_suspend();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  // It would be nice to have the following assertion in all the time,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  // but it is possible for a racing resume request to have resumed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  // this thread right after we suspended it. Temporarily enable this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  // assertion if you are chasing a different kind of bug.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  // assert(java_lang_Thread::thread(java_thread->threadObj()) == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  //   java_thread->is_being_ext_suspended(), "thread is not suspended");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  if (java_lang_Thread::thread(java_thread->threadObj()) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
    // check again because we can get delayed in java_suspend():
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    // the thread is in process of exiting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
bool JvmtiSuspendControl::resume(JavaThread *java_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  // external suspend should have caught resuming a thread twice
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  assert(java_thread->is_being_ext_suspended(), "thread should be suspended");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  // resume thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
    // must always grab Threads_lock, see JVM_SuspendThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    MutexLocker ml(Threads_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
    java_thread->java_resume();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
void JvmtiSuspendControl::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
#ifndef PRODUCT
58093
50e1d346a126 8230830: No required ResourceMark in src/hotspot/share/prims/jvmtiImpl.cpp:JvmtiSuspendControl::print()
lmesnik
parents: 55513
diff changeset
   885
  ResourceMark rm;
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   886
  LogStreamHandle(Trace, jvmti) log_stream;
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   887
  log_stream.print("Suspended Threads: [");
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47765
diff changeset
   888
  for (JavaThreadIteratorWithHandle jtiwh; JavaThread *thread = jtiwh.next(); ) {
15937
fd3d2d0175f9 8006498: #if <symbol> is wrong in the code.
jprovino
parents: 15432
diff changeset
   889
#ifdef JVMTI_TRACE
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    const char *name   = JvmtiTrace::safe_get_thread_name(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    const char *name   = "";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
#endif /*JVMTI_TRACE */
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   894
    log_stream.print("%s(%c ", name, thread->is_being_ext_suspended() ? 'S' : '_');
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    if (!thread->has_last_Java_frame()) {
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   896
      log_stream.print("no stack");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    }
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   898
    log_stream.print(") ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  }
37992
c7ec6a3275f7 8154041: JVMTI trace to Unified Logging
rehn
parents: 29081
diff changeset
   900
  log_stream.print_cr("]");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
}
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   903
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   904
JvmtiDeferredEvent JvmtiDeferredEvent::compiled_method_load_event(
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   905
    nmethod* nm) {
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   906
  JvmtiDeferredEvent event = JvmtiDeferredEvent(TYPE_COMPILED_METHOD_LOAD);
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   907
  event._event_data.compiled_method_load = nm;
8661
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   908
  // Keep the nmethod alive until the ServiceThread can process
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   909
  // this deferred event.
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   910
  nmethodLocker::lock_nmethod(nm);
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   911
  return event;
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   912
}
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   913
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   914
JvmtiDeferredEvent JvmtiDeferredEvent::compiled_method_unload_event(
8661
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   915
    nmethod* nm, jmethodID id, const void* code) {
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   916
  JvmtiDeferredEvent event = JvmtiDeferredEvent(TYPE_COMPILED_METHOD_UNLOAD);
8661
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   917
  event._event_data.compiled_method_unload.nm = nm;
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   918
  event._event_data.compiled_method_unload.method_id = id;
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   919
  event._event_data.compiled_method_unload.code_begin = code;
8661
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   920
  // Keep the nmethod alive until the ServiceThread can process
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   921
  // this deferred event. This will keep the memory for the
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   922
  // generated code from being reused too early. We pass
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   923
  // zombie_ok == true here so that our nmethod that was just
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   924
  // made into a zombie can be locked.
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   925
  nmethodLocker::lock_nmethod(nm, true /* zombie_ok */);
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   926
  return event;
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   927
}
9405
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   928
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   929
JvmtiDeferredEvent JvmtiDeferredEvent::dynamic_code_generated_event(
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   930
      const char* name, const void* code_begin, const void* code_end) {
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   931
  JvmtiDeferredEvent event = JvmtiDeferredEvent(TYPE_DYNAMIC_CODE_GENERATED);
9405
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   932
  // Need to make a copy of the name since we don't know how long
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   933
  // the event poster will keep it around after we enqueue the
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   934
  // deferred event and return. strdup() failure is handled in
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   935
  // the post() routine below.
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   936
  event._event_data.dynamic_code_generated.name = os::strdup(name);
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   937
  event._event_data.dynamic_code_generated.code_begin = code_begin;
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   938
  event._event_data.dynamic_code_generated.code_end = code_end;
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   939
  return event;
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   940
}
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   941
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   942
void JvmtiDeferredEvent::post() {
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   943
  assert(ServiceThread::is_service_thread(Thread::current()),
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   944
         "Service thread must post enqueued events");
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   945
  switch(_type) {
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   946
    case TYPE_COMPILED_METHOD_LOAD: {
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   947
      nmethod* nm = _event_data.compiled_method_load;
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   948
      JvmtiExport::post_compiled_method_load(nm);
8661
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   949
      // done with the deferred event so unlock the nmethod
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   950
      nmethodLocker::unlock_nmethod(nm);
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   951
      break;
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   952
    }
8661
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   953
    case TYPE_COMPILED_METHOD_UNLOAD: {
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   954
      nmethod* nm = _event_data.compiled_method_unload.nm;
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   955
      JvmtiExport::post_compiled_method_unload(
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   956
        _event_data.compiled_method_unload.method_id,
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   957
        _event_data.compiled_method_unload.code_begin);
8661
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   958
      // done with the deferred event so unlock the nmethod
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   959
      nmethodLocker::unlock_nmethod(nm);
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   960
      break;
8661
3dc8a18ac563 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 8475
diff changeset
   961
    }
9405
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   962
    case TYPE_DYNAMIC_CODE_GENERATED: {
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   963
      JvmtiExport::post_dynamic_code_generated_internal(
9405
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   964
        // if strdup failed give the event a default name
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   965
        (_event_data.dynamic_code_generated.name == NULL)
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   966
          ? "unknown_code" : _event_data.dynamic_code_generated.name,
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   967
        _event_data.dynamic_code_generated.code_begin,
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
   968
        _event_data.dynamic_code_generated.code_end);
9405
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   969
      if (_event_data.dynamic_code_generated.name != NULL) {
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   970
        // release our copy
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   971
        os::free((void *)_event_data.dynamic_code_generated.name);
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   972
      }
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   973
      break;
9405
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8661
diff changeset
   974
    }
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   975
    default:
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   976
      ShouldNotReachHere();
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   977
  }
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   978
}
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   979
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   980
JvmtiDeferredEventQueue::QueueNode* JvmtiDeferredEventQueue::_queue_tail = NULL;
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   981
JvmtiDeferredEventQueue::QueueNode* JvmtiDeferredEventQueue::_queue_head = NULL;
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   982
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   983
bool JvmtiDeferredEventQueue::has_events() {
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   984
  assert(Service_lock->owned_by_self(), "Must own Service_lock");
46438
b093c3f1ab3d 8164563: Test nsk/jvmti/CompiledMethodUnload/compmethunload001 keeps reporting: PRODUCT BUG: class was not unloaded in 5
cjplummer
parents: 46329
diff changeset
   985
  return _queue_head != NULL;
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   986
}
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   987
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   988
void JvmtiDeferredEventQueue::enqueue(const JvmtiDeferredEvent& event) {
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   989
  assert(Service_lock->owned_by_self(), "Must own Service_lock");
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   990
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   991
  // Events get added to the end of the queue (and are pulled off the front).
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   992
  QueueNode* node = new QueueNode(event);
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   993
  if (_queue_tail == NULL) {
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   994
    _queue_tail = _queue_head = node;
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   995
  } else {
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   996
    assert(_queue_tail->next() == NULL, "Must be the last element in the list");
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   997
    _queue_tail->set_next(node);
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   998
    _queue_tail = node;
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   999
  }
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1000
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1001
  Service_lock->notify_all();
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1002
  assert((_queue_head == NULL) == (_queue_tail == NULL),
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1003
         "Inconsistent queue markers");
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1004
}
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1005
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1006
JvmtiDeferredEvent JvmtiDeferredEventQueue::dequeue() {
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1007
  assert(Service_lock->owned_by_self(), "Must own Service_lock");
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1008
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1009
  assert(_queue_head != NULL, "Nothing to dequeue");
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1010
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1011
  if (_queue_head == NULL) {
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1012
    // Just in case this happens in product; it shouldn't but let's not crash
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1013
    return JvmtiDeferredEvent();
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1014
  }
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1015
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1016
  QueueNode* node = _queue_head;
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1017
  _queue_head = _queue_head->next();
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1018
  if (_queue_head == NULL) {
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1019
    _queue_tail = NULL;
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1020
  }
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1021
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1022
  assert((_queue_head == NULL) == (_queue_tail == NULL),
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1023
         "Inconsistent queue markers");
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1024
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1025
  JvmtiDeferredEvent event = node->event();
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1026
  delete node;
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1027
  return event;
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1028
}