hotspot/src/share/vm/prims/jvmtiImpl.cpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 2137 b03f1da1a3d3
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_jvmtiImpl.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
GrowableArray<JvmtiRawMonitor*> *JvmtiPendingMonitors::_monitors = new (ResourceObj::C_HEAP) GrowableArray<JvmtiRawMonitor*>(1,true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
void JvmtiPendingMonitors::transition_raw_monitors() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  assert((Threads::number_of_threads()==1),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
         "Java thread has not created yet or more than one java thread \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
is running. Raw monitor transition will not work");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  JavaThread *current_java_thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  assert(current_java_thread->thread_state() == _thread_in_vm, "Must be in vm");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    ThreadBlockInVM __tbivm(current_java_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    for(int i=0; i< count(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
      JvmtiRawMonitor *rmonitor = monitors()->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
      int r = rmonitor->raw_enter(current_java_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
      assert(r == ObjectMonitor::OM_OK, "raw_enter should have worked");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // pending monitors are converted to real monitor so delete them all.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  dispose();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// class JvmtiAgentThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// JavaThread used to wrap a thread started by an agent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// using the JVMTI method RunAgentThread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
JvmtiAgentThread::JvmtiAgentThread(JvmtiEnv* env, jvmtiStartFunction start_fn, const void *start_arg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    : JavaThread(start_function_wrapper) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    _env = env;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    _start_fn = start_fn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    _start_arg = start_arg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
JvmtiAgentThread::start_function_wrapper(JavaThread *thread, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    // It is expected that any Agent threads will be created as
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    // Java Threads.  If this is the case, notification of the creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    // of the thread is given in JavaThread::thread_main().
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    assert(thread->is_Java_thread(), "debugger thread should be a Java Thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    assert(thread == JavaThread::current(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    JvmtiAgentThread *dthread = (JvmtiAgentThread *)thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    dthread->call_start_function();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
JvmtiAgentThread::call_start_function() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    ThreadToNativeFromVM transition(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    _start_fn(_env->jvmti_external(), jni_environment(), (void*)_start_arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// class GrowableCache - private methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
void GrowableCache::recache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  int len = _elements->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  FREE_C_HEAP_ARRAY(address, _cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  _cache = NEW_C_HEAP_ARRAY(address,len+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  for (int i=0; i<len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    _cache[i] = _elements->at(i)->getCacheValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    // The cache entry has gone bad. Without a valid frame pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    // value, the entry is useless so we simply delete it in product
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    // mode. The call to remove() will rebuild the cache again
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    // without the bad entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    if (_cache[i] == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      assert(false, "cannot recache NULL elements");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
      remove(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  _cache[len] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  _listener_fun(_this_obj,_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
bool GrowableCache::equals(void* v, GrowableElement *e2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  GrowableElement *e1 = (GrowableElement *) v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  assert(e1 != NULL, "e1 != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  assert(e2 != NULL, "e2 != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  return e1->equals(e2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// class GrowableCache - public methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
GrowableCache::GrowableCache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  _this_obj       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  _listener_fun   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  _elements       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  _cache          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
GrowableCache::~GrowableCache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  delete _elements;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  FREE_C_HEAP_ARRAY(address, _cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
void GrowableCache::initialize(void *this_obj, void listener_fun(void *, address*) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  _this_obj       = this_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  _listener_fun   = listener_fun;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  _elements       = new (ResourceObj::C_HEAP) GrowableArray<GrowableElement*>(5,true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  recache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
// number of elements in the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
int GrowableCache::length() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  return _elements->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// get the value of the index element in the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
GrowableElement* GrowableCache::at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  GrowableElement *e = (GrowableElement *) _elements->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  assert(e != NULL, "e != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  return e;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
int GrowableCache::find(GrowableElement* e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  return _elements->find(e, GrowableCache::equals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
// append a copy of the element to the end of the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
void GrowableCache::append(GrowableElement* e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  GrowableElement *new_e = e->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  _elements->append(new_e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  recache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// insert a copy of the element using lessthan()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
void GrowableCache::insert(GrowableElement* e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  GrowableElement *new_e = e->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  _elements->append(new_e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  int n = length()-2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  for (int i=n; i>=0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    GrowableElement *e1 = _elements->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    GrowableElement *e2 = _elements->at(i+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    if (e2->lessThan(e1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
      _elements->at_put(i+1, e1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      _elements->at_put(i,   e2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  recache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
// remove the element at index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
void GrowableCache::remove (int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  GrowableElement *e = _elements->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  assert(e != NULL, "e != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  _elements->remove(e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  delete e;
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
// clear out all elements, release all heap space and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
// let our listener know that things have changed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
void GrowableCache::clear() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  int len = _elements->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  for (int i=0; i<len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    delete _elements->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  _elements->clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  recache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
void GrowableCache::oops_do(OopClosure* f) {
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
    GrowableElement *e = _elements->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    e->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
void GrowableCache::gc_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  int len = _elements->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // recompute the new cache value after GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  for (int i=0; i<len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    _cache[i] = _elements->at(i)->getCacheValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
// class JvmtiRawMonitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
JvmtiRawMonitor::JvmtiRawMonitor(const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  _name = strcpy(NEW_C_HEAP_ARRAY(char, strlen(name) + 1), name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  _name = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  _magic = JVMTI_RM_MAGIC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
JvmtiRawMonitor::~JvmtiRawMonitor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  FreeHeap(_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  _magic = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
// class JvmtiBreakpoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
JvmtiBreakpoint::JvmtiBreakpoint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  _method = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  _bci    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
#ifdef CHECK_UNHANDLED_OOPS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  // This one is always allocated with new, but check it just in case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  if (thread->is_in_stack((address)&_method)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    thread->allow_unhandled_oop((oop*)&_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
#endif // CHECK_UNHANDLED_OOPS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
JvmtiBreakpoint::JvmtiBreakpoint(methodOop m_method, jlocation location) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  _method        = m_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  assert(_method != NULL, "_method != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  _bci           = (int) location;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
#ifdef CHECK_UNHANDLED_OOPS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // Could be allocated with new and wouldn't be on the unhandled oop list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  if (thread->is_in_stack((address)&_method)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    thread->allow_unhandled_oop(&_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
#endif // CHECK_UNHANDLED_OOPS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  assert(_bci >= 0, "_bci >= 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
void JvmtiBreakpoint::copy(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  _method   = bp._method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  _bci      = bp._bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
bool JvmtiBreakpoint::lessThan(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
bool JvmtiBreakpoint::equals(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  return _method   == bp._method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    &&   _bci      == bp._bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
bool JvmtiBreakpoint::is_valid() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  return _method != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
         _bci >= 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
address JvmtiBreakpoint::getBcp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  return _method->bcp_from(_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
void JvmtiBreakpoint::each_method_version_do(method_action meth_act) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  ((methodOopDesc*)_method->*meth_act)(_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // add/remove breakpoint to/from versions of the method that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // are EMCP. Directly or transitively obsolete methods are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // not saved in the PreviousVersionInfo.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  instanceKlassHandle ikh = instanceKlassHandle(thread, _method->method_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  symbolOop m_name = _method->name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  symbolOop m_signature = _method->signature();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    // PreviousVersionInfo objects returned via PreviousVersionWalker
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    // contain a GrowableArray of handles. We have to clean up the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    // GrowableArray _after_ the PreviousVersionWalker destructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    // has destroyed the handles.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      // search previous versions if they exist
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      PreviousVersionWalker pvw((instanceKlass *)ikh()->klass_part());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
      for (PreviousVersionInfo * pv_info = pvw.next_previous_version();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
           pv_info != NULL; pv_info = pvw.next_previous_version()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
        GrowableArray<methodHandle>* methods =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
          pv_info->prev_EMCP_method_handles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
        if (methods == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
          // We have run into a PreviousVersion generation where
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
          // all methods were made obsolete during that generation's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
          // RedefineClasses() operation. At the time of that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
          // operation, all EMCP methods were flushed so we don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
          // have to go back any further.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
          //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
          // A NULL methods array is different than an empty methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
          // array. We cannot infer any optimizations about older
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
          // generations from an empty methods array for the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
          // generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
        for (int i = methods->length() - 1; i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
          methodHandle method = methods->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
          if (method->name() == m_name && method->signature() == m_signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
            RC_TRACE(0x00000800, ("%sing breakpoint in %s(%s)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
              meth_act == &methodOopDesc::set_breakpoint ? "sett" : "clear",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
              method->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
              method->signature()->as_C_string()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
            assert(!method->is_obsolete(), "only EMCP methods here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
            ((methodOopDesc*)method()->*meth_act)(_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    } // pvw is cleaned up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  } // rm is cleaned up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
void JvmtiBreakpoint::set() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  each_method_version_do(&methodOopDesc::set_breakpoint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
void JvmtiBreakpoint::clear() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  each_method_version_do(&methodOopDesc::clear_breakpoint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
void JvmtiBreakpoint::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  const char *class_name  = (_method == NULL) ? "NULL" : _method->klass_name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  const char *method_name = (_method == NULL) ? "NULL" : _method->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  tty->print("Breakpoint(%s,%s,%d,%p)",class_name, method_name, _bci, getBcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
// class VM_ChangeBreakpoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
// Modify the Breakpoints data structure at a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
void VM_ChangeBreakpoints::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  switch (_operation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  case SET_BREAKPOINT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    _breakpoints->set_at_safepoint(*_bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  case CLEAR_BREAKPOINT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    _breakpoints->clear_at_safepoint(*_bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  case CLEAR_ALL_BREAKPOINT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    _breakpoints->clearall_at_safepoint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    assert(false, "Unknown operation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
void VM_ChangeBreakpoints::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // This operation keeps breakpoints alive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  if (_breakpoints != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    _breakpoints->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  if (_bp != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    _bp->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
// class JvmtiBreakpoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
// a JVMTI internal collection of JvmtiBreakpoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
JvmtiBreakpoints::JvmtiBreakpoints(void listener_fun(void *,address *)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  _bps.initialize(this,listener_fun);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
JvmtiBreakpoints:: ~JvmtiBreakpoints() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
void  JvmtiBreakpoints::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  _bps.oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
void  JvmtiBreakpoints::gc_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  _bps.gc_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
void  JvmtiBreakpoints::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  int n = _bps.length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  for (int i=0; i<n; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    JvmtiBreakpoint& bp = _bps.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    tty->print("%d: ", i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    bp.print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    tty->print_cr("");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
void JvmtiBreakpoints::set_at_safepoint(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  int i = _bps.find(bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  if (i == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    _bps.append(bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    bp.set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
void JvmtiBreakpoints::clear_at_safepoint(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  int i = _bps.find(bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  if (i != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    _bps.remove(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    bp.clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
void JvmtiBreakpoints::clearall_at_safepoint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  int len = _bps.length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  for (int i=0; i<len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    _bps.at(i).clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  _bps.clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
int JvmtiBreakpoints::length() { return _bps.length(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
int JvmtiBreakpoints::set(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  if ( _bps.find(bp) != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
     return JVMTI_ERROR_DUPLICATE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  VM_ChangeBreakpoints set_breakpoint(this,VM_ChangeBreakpoints::SET_BREAKPOINT, &bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  VMThread::execute(&set_breakpoint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  return JVMTI_ERROR_NONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
int JvmtiBreakpoints::clear(JvmtiBreakpoint& bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  if ( _bps.find(bp) == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
     return JVMTI_ERROR_NOT_FOUND;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  VM_ChangeBreakpoints clear_breakpoint(this,VM_ChangeBreakpoints::CLEAR_BREAKPOINT, &bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  VMThread::execute(&clear_breakpoint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  return JVMTI_ERROR_NONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
void JvmtiBreakpoints::clearall_in_class_at_safepoint(klassOop klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  bool changed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  // We are going to run thru the list of bkpts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  // and delete some.  This deletion probably alters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  // the list in some implementation defined way such
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  // that when we delete entry i, the next entry might
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  // no longer be at i+1.  To be safe, each time we delete
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // an entry, we'll just start again from the beginning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // We'll stop when we make a pass thru the whole list without
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  // deleting anything.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  while (changed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    int len = _bps.length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    changed = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
      JvmtiBreakpoint& bp = _bps.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
      if (bp.method()->method_holder() == klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
        bp.clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
        _bps.remove(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
        // This changed 'i' so we have to start over.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
        changed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
void JvmtiBreakpoints::clearall() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  VM_ChangeBreakpoints clearall_breakpoint(this,VM_ChangeBreakpoints::CLEAR_ALL_BREAKPOINT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  VMThread::execute(&clearall_breakpoint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
// class JvmtiCurrentBreakpoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
JvmtiBreakpoints *JvmtiCurrentBreakpoints::_jvmti_breakpoints  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
address *         JvmtiCurrentBreakpoints::_breakpoint_list    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
JvmtiBreakpoints& JvmtiCurrentBreakpoints::get_jvmti_breakpoints() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  if (_jvmti_breakpoints != NULL) return (*_jvmti_breakpoints);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  _jvmti_breakpoints = new JvmtiBreakpoints(listener_fun);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  assert(_jvmti_breakpoints != NULL, "_jvmti_breakpoints != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  return (*_jvmti_breakpoints);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
void  JvmtiCurrentBreakpoints::listener_fun(void *this_obj, address *cache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  JvmtiBreakpoints *this_jvmti = (JvmtiBreakpoints *) this_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  assert(this_jvmti != NULL, "this_jvmti != NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  debug_only(int n = this_jvmti->length(););
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  assert(cache[n] == NULL, "cache must be NULL terminated");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  set_breakpoint_list(cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
void JvmtiCurrentBreakpoints::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  if (_jvmti_breakpoints != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    _jvmti_breakpoints->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
void JvmtiCurrentBreakpoints::gc_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  if (_jvmti_breakpoints != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    _jvmti_breakpoints->gc_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
///////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
// class VM_GetOrSetLocal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
// Constructor for non-object getter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  : _thread(thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  , _calling_thread(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  , _depth(depth)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  , _index(index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  , _type(type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  , _set(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  , _jvf(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  , _result(JVMTI_ERROR_NONE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
// Constructor for object or non-object setter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type, jvalue value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  : _thread(thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  , _calling_thread(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  , _depth(depth)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  , _index(index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  , _type(type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  , _value(value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  , _set(true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  , _jvf(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  , _result(JVMTI_ERROR_NONE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
// Constructor for object getter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, JavaThread* calling_thread, jint depth, int index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  : _thread(thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  , _calling_thread(calling_thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  , _depth(depth)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  , _index(index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  , _type(T_OBJECT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  , _set(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  , _jvf(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  , _result(JVMTI_ERROR_NONE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
vframe *VM_GetOrSetLocal::get_vframe() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  if (!_thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  RegisterMap reg_map(_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  vframe *vf = _thread->last_java_vframe(&reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  int d = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  while ((vf != NULL) && (d < _depth)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    vf = vf->java_sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    d++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  return vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
javaVFrame *VM_GetOrSetLocal::get_java_vframe() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  vframe* vf = get_vframe();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  if (vf == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    _result = JVMTI_ERROR_NO_MORE_FRAMES;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  javaVFrame *jvf = (javaVFrame*)vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  if (!vf->is_java_frame() || jvf->method()->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    _result = JVMTI_ERROR_OPAQUE_FRAME;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  return jvf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
// Check that the klass is assignable to a type with the given signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
// Another solution could be to use the function Klass::is_subtype_of(type).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
// But the type class can be forced to load/initialize eagerly in such a case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
// This may cause unexpected consequences like CFLH or class-init JVMTI events.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
// It is better to avoid such a behavior.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
bool VM_GetOrSetLocal::is_assignable(const char* ty_sign, Klass* klass, Thread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  assert(ty_sign != NULL, "type signature must not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  assert(thread != NULL, "thread must not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  assert(klass != NULL, "klass must not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  int len = (int) strlen(ty_sign);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  if (ty_sign[0] == 'L' && ty_sign[len-1] == ';') { // Need pure class/interface name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    ty_sign++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    len -= 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  symbolHandle ty_sym = oopFactory::new_symbol_handle(ty_sign, len, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  if (klass->name() == ty_sym()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  // Compare primary supers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  int super_depth = klass->super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  int idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  for (idx = 0; idx < super_depth; idx++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    if (Klass::cast(klass->primary_super_of_depth(idx))->name() == ty_sym()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  // Compare secondary supers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  objArrayOop sec_supers = klass->secondary_supers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  for (idx = 0; idx < sec_supers->length(); idx++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    if (Klass::cast((klassOop) sec_supers->obj_at(idx))->name() == ty_sym()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
// Checks error conditions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
//   JVMTI_ERROR_INVALID_SLOT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
//   JVMTI_ERROR_TYPE_MISMATCH
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
// Returns: 'true' - everything is Ok, 'false' - error code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
bool VM_GetOrSetLocal::check_slot_type(javaVFrame* jvf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  methodOop method_oop = jvf->method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  if (!method_oop->has_localvariable_table()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    // Just to check index boundaries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
    jint extra_slot = (_type == T_LONG || _type == T_DOUBLE) ? 1 : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
    if (_index < 0 || _index + extra_slot >= method_oop->max_locals()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
      _result = JVMTI_ERROR_INVALID_SLOT;
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
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  jint num_entries = method_oop->localvariable_table_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  if (num_entries == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
    _result = JVMTI_ERROR_INVALID_SLOT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    return false;       // There are no slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  int signature_idx = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  int vf_bci = jvf->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  LocalVariableTableElement* table = method_oop->localvariable_table_start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  for (int i = 0; i < num_entries; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
    int start_bci = table[i].start_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
    int end_bci = start_bci + table[i].length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    // Here we assume that locations of LVT entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    // with the same slot number cannot be overlapped
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    if (_index == (jint) table[i].slot && start_bci <= vf_bci && vf_bci <= end_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
      signature_idx = (int) table[i].descriptor_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  if (signature_idx == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    _result = JVMTI_ERROR_INVALID_SLOT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    return false;       // Incorrect slot index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  symbolOop   sign_sym  = method_oop->constants()->symbol_at(signature_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  const char* signature = (const char *) sign_sym->as_utf8();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  BasicType slot_type = char2type(signature[0]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  switch (slot_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  case T_BOOLEAN:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
    slot_type = T_INT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  case T_ARRAY:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    slot_type = T_OBJECT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  if (_type != slot_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    _result = JVMTI_ERROR_TYPE_MISMATCH;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  jobject jobj = _value.l;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  if (_set && slot_type == T_OBJECT && jobj != NULL) { // NULL reference is allowed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    // Check that the jobject class matches the return type signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    JavaThread* cur_thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    HandleMark hm(cur_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    Handle obj = Handle(cur_thread, JNIHandles::resolve_external_guard(jobj));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    NULL_CHECK(obj, (_result = JVMTI_ERROR_INVALID_OBJECT, false));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    KlassHandle ob_kh = KlassHandle(cur_thread, obj->klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    NULL_CHECK(ob_kh, (_result = JVMTI_ERROR_INVALID_OBJECT, false));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    if (!is_assignable(signature, Klass::cast(ob_kh()), cur_thread)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
      _result = JVMTI_ERROR_TYPE_MISMATCH;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
static bool can_be_deoptimized(vframe* vf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  return (vf->is_compiled_frame() && vf->fr().can_be_deoptimized());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
bool VM_GetOrSetLocal::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  _jvf = get_java_vframe();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  NULL_CHECK(_jvf, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  if (!check_slot_type(_jvf)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
void VM_GetOrSetLocal::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  if (_set) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
    // Force deoptimization of frame if compiled because it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    // possible the compiler emitted some locals as constant values,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    // meaning they are not mutable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    if (can_be_deoptimized(_jvf)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
      // Schedule deoptimization so that eventually the local
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
      // update will be written to an interpreter frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
      VM_DeoptimizeFrame deopt(_jvf->thread(), _jvf->fr().id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
      VMThread::execute(&deopt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
      // Now store a new value for the local which will be applied
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
      // once deoptimization occurs. Note however that while this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
      // write is deferred until deoptimization actually happens
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
      // can vframe created after this point will have its locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
      // reflecting this update so as far as anyone can see the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
      // write has already taken place.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
      // If we are updating an oop then get the oop from the handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
      // since the handle will be long gone by the time the deopt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
      // happens. The oop stored in the deferred local will be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
      // gc'd on its own.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
      if (_type == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
        _value.l = (jobject) (JNIHandles::resolve_external_guard(_value.l));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
      // Re-read the vframe so we can see that it is deoptimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
      // [ Only need because of assert in update_local() ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
      _jvf = get_java_vframe();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
      ((compiledVFrame*)_jvf)->update_local(_type, _index, _value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
    StackValueCollection *locals = _jvf->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    switch (_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    case T_INT:    locals->set_int_at   (_index, _value.i); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    case T_LONG:   locals->set_long_at  (_index, _value.j); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
    case T_FLOAT:  locals->set_float_at (_index, _value.f); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    case T_DOUBLE: locals->set_double_at(_index, _value.d); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
    case T_OBJECT: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
      Handle ob_h(JNIHandles::resolve_external_guard(_value.l));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
      locals->set_obj_at (_index, ob_h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
    default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
    _jvf->set_locals(locals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
    StackValueCollection *locals = _jvf->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
    if (locals->at(_index)->type() == T_CONFLICT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
      memset(&_value, 0, sizeof(_value));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
      _value.l = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
    switch (_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
    case T_INT:    _value.i = locals->int_at   (_index);   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
    case T_LONG:   _value.j = locals->long_at  (_index);   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
    case T_FLOAT:  _value.f = locals->float_at (_index);   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
    case T_DOUBLE: _value.d = locals->double_at(_index);   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
    case T_OBJECT: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
      // Wrap the oop to be returned in a local JNI handle since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
      // oops_do() no longer applies after doit() is finished.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
      oop obj = locals->obj_at(_index)();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
      _value.l = JNIHandles::make_local(_calling_thread, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    }
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
bool VM_GetOrSetLocal::allow_nested_vm_operations() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  return true; // May need to deoptimize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
/////////////////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
// class JvmtiSuspendControl - see comments in jvmtiImpl.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
bool JvmtiSuspendControl::suspend(JavaThread *java_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  // external suspend should have caught suspending a thread twice
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  // Immediate suspension required for JPDA back-end so JVMTI agent threads do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  // not deadlock due to later suspension on transitions while holding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  // raw monitors.  Passing true causes the immediate suspension.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  // java_suspend() will catch threads in the process of exiting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  // and will ignore them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  java_thread->java_suspend();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  // It would be nice to have the following assertion in all the time,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  // but it is possible for a racing resume request to have resumed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  // this thread right after we suspended it. Temporarily enable this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  // assertion if you are chasing a different kind of bug.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  // assert(java_lang_Thread::thread(java_thread->threadObj()) == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  //   java_thread->is_being_ext_suspended(), "thread is not suspended");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  if (java_lang_Thread::thread(java_thread->threadObj()) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
    // check again because we can get delayed in java_suspend():
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
    // the thread is in process of exiting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
bool JvmtiSuspendControl::resume(JavaThread *java_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  // external suspend should have caught resuming a thread twice
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  assert(java_thread->is_being_ext_suspended(), "thread should be suspended");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  // resume thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    // must always grab Threads_lock, see JVM_SuspendThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    MutexLocker ml(Threads_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    java_thread->java_resume();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
void JvmtiSuspendControl::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  MutexLocker mu(Threads_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  tty->print("Suspended Threads: [");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  for (JavaThread *thread = Threads::first(); thread != NULL; thread = thread->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
#if JVMTI_TRACE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
    const char *name   = JvmtiTrace::safe_get_thread_name(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    const char *name   = "";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
#endif /*JVMTI_TRACE */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
    tty->print("%s(%c ", name, thread->is_being_ext_suspended() ? 'S' : '_');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
    if (!thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
      tty->print("no stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    tty->print(") ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  tty->print_cr("]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
}