hotspot/src/share/vm/prims/jvmtiExport.cpp
author goetz
Thu, 26 Jun 2014 16:05:15 +0200
changeset 25468 5331df506290
parent 24424 2658d7834c6e
child 27880 afb974a04396
permissions -rw-r--r--
8048241: Introduce umbrella header os.inline.hpp and clean up includes Reviewed-by: coleenp, dholmes, lfoltan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
23447
271ad7631939 6976636: JVM/TI test ex03t001 fails assertion
sspitsyn
parents: 22897
diff changeset
     2
 * Copyright (c) 2003, 2014, 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: 5353
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5353
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: 5353
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: 6418
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    27
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    28
#include "code/pcDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    29
#include "code/scopeDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    30
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    31
#include "jvmtifiles/jvmtiEnv.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    32
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    33
#include "oops/objArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    34
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    35
#include "prims/jvmtiCodeBlobEvents.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    36
#include "prims/jvmtiEventController.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    37
#include "prims/jvmtiEventController.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    38
#include "prims/jvmtiExport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    39
#include "prims/jvmtiImpl.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    40
#include "prims/jvmtiManageCapabilities.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    41
#include "prims/jvmtiRawMonitor.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    42
#include "prims/jvmtiTagMap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    43
#include "prims/jvmtiThreadState.inline.hpp"
18940
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
    44
#include "prims/jvmtiRedefineClasses.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    45
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    46
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    47
#include "runtime/interfaceSupport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    48
#include "runtime/objectMonitor.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    49
#include "runtime/objectMonitor.inline.hpp"
25468
5331df506290 8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents: 24424
diff changeset
    50
#include "runtime/os.inline.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 23447
diff changeset
    51
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    52
#include "runtime/vframe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    53
#include "services/attachListener.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    54
#include "services/serviceUtil.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15109
diff changeset
    55
#include "utilities/macros.hpp"
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15109
diff changeset
    56
#if INCLUDE_ALL_GCS
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    57
#include "gc_implementation/parallelScavenge/psMarkSweep.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15109
diff changeset
    58
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
    60
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
    61
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#ifdef JVMTI_TRACE
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#define EVT_TRACE(evt,out) if ((JvmtiTrace::event_trace_flags(evt) & JvmtiTrace::SHOW_EVENT_SENT) != 0) { SafeResourceMark rm; tty->print_cr out; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
#define EVT_TRIG_TRACE(evt,out) if ((JvmtiTrace::event_trace_flags(evt) & JvmtiTrace::SHOW_EVENT_TRIGGER) != 0) { SafeResourceMark rm; tty->print_cr out; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
#define EVT_TRIG_TRACE(evt,out)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
#define EVT_TRACE(evt,out)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
///////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// JvmtiEventTransition
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// TO DO --
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
//  more handle purging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
// Use this for JavaThreads and state is  _thread_in_vm.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
class JvmtiJavaThreadEventTransition : StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  ResourceMark _rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  ThreadToNativeFromVM _transition;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  HandleMark _hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  JvmtiJavaThreadEventTransition(JavaThread *thread) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    _rm(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    _transition(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    _hm(thread)  {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// For JavaThreads which are not in _thread_in_vm state
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// and other system threads use this.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
class JvmtiThreadEventTransition : StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  ResourceMark _rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  HandleMark _hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  JavaThreadState _saved_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  JavaThread *_jthread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  JvmtiThreadEventTransition(Thread *thread) : _rm(), _hm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    if (thread->is_Java_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
       _jthread = (JavaThread *)thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
       _saved_state = _jthread->thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
       if (_saved_state == _thread_in_Java) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
         ThreadStateTransition::transition_from_java(_jthread, _thread_in_native);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
         ThreadStateTransition::transition(_jthread, _saved_state, _thread_in_native);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      _jthread = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  ~JvmtiThreadEventTransition() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    if (_jthread != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      ThreadStateTransition::transition_from_native(_jthread, _saved_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
///////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
// JvmtiEventMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
class JvmtiEventMark : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  JavaThread *_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  JNIEnv* _jni_env;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  bool _exception_detected;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  bool _exception_caught;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
#if 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  JNIHandleBlock* _hblock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  JvmtiEventMark(JavaThread *thread) :  _thread(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
                                         _jni_env(thread->jni_environment()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#if 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    _hblock = thread->active_handles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    _hblock->clear_thoroughly(); // so we can be safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    // we want to use the code above - but that needs the JNIHandle changes - later...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    // for now, steal JNI push local frame code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    // we are before an event.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    // Save current jvmti thread exception state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    if (state != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      _exception_detected = state->is_exception_detected();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      _exception_caught = state->is_exception_caught();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      _exception_detected = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      _exception_caught = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    JNIHandleBlock* old_handles = thread->active_handles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    JNIHandleBlock* new_handles = JNIHandleBlock::allocate_block(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    assert(new_handles != NULL, "should not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    new_handles->set_pop_frame_link(old_handles);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    thread->set_active_handles(new_handles);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    assert(thread == JavaThread::current(), "thread must be current!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    thread->frame_anchor()->make_walkable(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  ~JvmtiEventMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
#if 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    _hblock->clear(); // for consistency with future correct behavior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // we want to use the code above - but that needs the JNIHandle changes - later...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // for now, steal JNI pop local frame code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    JNIHandleBlock* old_handles = _thread->active_handles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    JNIHandleBlock* new_handles = old_handles->pop_frame_link();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    assert(new_handles != NULL, "should not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    _thread->set_active_handles(new_handles);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    // Note that we set the pop_frame_link to NULL explicitly, otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    // the release_block call will release the blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    old_handles->set_pop_frame_link(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    JNIHandleBlock::release_block(old_handles, _thread); // may block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    JvmtiThreadState* state = _thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    // we are continuing after an event.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    if (state != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      // Restore the jvmti thread exception state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      if (_exception_detected) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
        state->set_exception_detected();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
      if (_exception_caught) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
        state->set_exception_caught();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
#if 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  jobject to_jobject(oop obj) { return obj == NULL? NULL : _hblock->allocate_handle_fast(obj); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // we want to use the code above - but that needs the JNIHandle changes - later...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // for now, use regular make_local
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  jobject to_jobject(oop obj) { return JNIHandles::make_local(_thread,obj); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   204
  jclass to_jclass(Klass* klass) { return (klass == NULL ? NULL : (jclass)to_jobject(klass->java_mirror())); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  jmethodID to_jmethodID(methodHandle method) { return method->jmethod_id(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  JNIEnv* jni_env() { return _jni_env; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
class JvmtiThreadEventMark : public JvmtiEventMark {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  jthread _jt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  JvmtiThreadEventMark(JavaThread *thread) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    JvmtiEventMark(thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    _jt = (jthread)(to_jobject(thread->threadObj()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
 jthread jni_thread() { return _jt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
class JvmtiClassEventMark : public JvmtiThreadEventMark {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  jclass _jc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   228
  JvmtiClassEventMark(JavaThread *thread, Klass* klass) :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    JvmtiThreadEventMark(thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    _jc = to_jclass(klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  jclass jni_class() { return _jc; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
class JvmtiMethodEventMark : public JvmtiThreadEventMark {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  jmethodID _mid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  JvmtiMethodEventMark(JavaThread *thread, methodHandle method) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    JvmtiThreadEventMark(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    _mid(to_jmethodID(method)) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  jmethodID jni_methodID() { return _mid; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
class JvmtiLocationEventMark : public JvmtiMethodEventMark {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  jlocation _loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  JvmtiLocationEventMark(JavaThread *thread, methodHandle method, address location) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    JvmtiMethodEventMark(thread, method),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    _loc(location - method->code_base()) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  jlocation location() { return _loc; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
class JvmtiExceptionEventMark : public JvmtiLocationEventMark {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  jobject _exc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  JvmtiExceptionEventMark(JavaThread *thread, methodHandle method, address location, Handle exception) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    JvmtiLocationEventMark(thread, method, location),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    _exc(to_jobject(exception())) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  jobject exception() { return _exc; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
class JvmtiClassFileLoadEventMark : public JvmtiThreadEventMark {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  const char *_class_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  jobject _jloader;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  jobject _protection_domain;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  jclass  _class_being_redefined;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
public:
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   276
  JvmtiClassFileLoadEventMark(JavaThread *thread, Symbol* name,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
     Handle class_loader, Handle prot_domain, KlassHandle *class_being_redefined) : JvmtiThreadEventMark(thread) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   278
      _class_name = name != NULL? name->as_utf8() : NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      _jloader = (jobject)to_jobject(class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
      _protection_domain = (jobject)to_jobject(prot_domain());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      if (class_being_redefined == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
        _class_being_redefined = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
        _class_being_redefined = (jclass)to_jclass((*class_being_redefined)());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  const char *class_name() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    return _class_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  jobject jloader() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    return _jloader;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  jobject protection_domain() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    return _protection_domain;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  jclass class_being_redefined() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    return _class_being_redefined;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
//////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
int               JvmtiExport::_field_access_count                        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
int               JvmtiExport::_field_modification_count                  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
bool              JvmtiExport::_can_access_local_variables                = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
bool              JvmtiExport::_can_hotswap_or_post_breakpoint            = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
bool              JvmtiExport::_can_modify_any_class                      = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
bool              JvmtiExport::_can_walk_any_space                        = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
bool              JvmtiExport::_has_redefined_a_class                     = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
bool              JvmtiExport::_all_dependencies_are_recorded             = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// field access management
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
// interpreter generator needs the address of the counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
address JvmtiExport::get_field_access_count_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // We don't grab a lock because we don't want to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // serialize field access between all threads. This means that a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // thread on another processor can see the wrong count value and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // may either miss making a needed call into post_field_access()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // or will make an unneeded call into post_field_access(). We pay
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // this price to avoid slowing down the VM when we aren't watching
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // field accesses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  // Other access/mutation safe by virtue of being in VM state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  return (address)(&_field_access_count);
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
// field modification management
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
// interpreter generator needs the address of the counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
address JvmtiExport::get_field_modification_count_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  // We don't grab a lock because we don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  // want to serialize field modification between all threads. This
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // means that a thread on another processor can see the wrong
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // count value and may either miss making a needed call into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // post_field_modification() or will make an unneeded call into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  // post_field_modification(). We pay this price to avoid slowing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // down the VM when we aren't watching field modifications.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // Other access/mutation safe by virtue of being in VM state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  return (address)(&_field_modification_count);
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
///////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
// Functions needed by java.lang.instrument for starting up javaagent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
///////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
jint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
JvmtiExport::get_jvmti_interface(JavaVM *jvm, void **penv, jint version) {
4491
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   355
  // The JVMTI_VERSION_INTERFACE_JVMTI part of the version number
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   356
  // has already been validated in JNI GetEnv().
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   357
  int major, minor, micro;
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   358
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   359
  // micro version doesn't matter here (yet?)
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   360
  decode_version_values(version, &major, &minor, &micro);
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   361
  switch (major) {
7413
59b978f8fbdf 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 7405
diff changeset
   362
    case 1:
4491
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   363
      switch (minor) {
7413
59b978f8fbdf 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 7405
diff changeset
   364
        case 0:  // version 1.0.<micro> is recognized
59b978f8fbdf 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 7405
diff changeset
   365
        case 1:  // version 1.1.<micro> is recognized
59b978f8fbdf 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 7405
diff changeset
   366
        case 2:  // version 1.2.<micro> is recognized
4491
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   367
          break;
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   368
7413
59b978f8fbdf 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 7405
diff changeset
   369
        default:
4491
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   370
          return JNI_EVERSION;  // unsupported minor version number
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   371
      }
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   372
      break;
7413
59b978f8fbdf 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 7405
diff changeset
   373
    default:
4491
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   374
      return JNI_EVERSION;  // unsupported major version number
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   375
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  if (JvmtiEnv::get_phase() == JVMTI_PHASE_LIVE) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    JavaThread* current_thread = (JavaThread*) ThreadLocalStorage::thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    // transition code: native to VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    ThreadInVMfromNative __tiv(current_thread);
10969
3ecf25293e5a 7103224: collision between __LEAF define in interfaceSupport.hpp and /usr/include/sys/cdefs.h with gcc
never
parents: 9405
diff changeset
   381
    VM_ENTRY_BASE(jvmtiEnv*, JvmtiExport::get_jvmti_interface, current_thread)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    debug_only(VMNativeEntryWrapper __vew;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
4491
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   384
    JvmtiEnv *jvmti_env = JvmtiEnv::create_a_jvmti(version);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    *penv = jvmti_env->jvmti_external();  // actual type is jvmtiEnv* -- not to be confused with JvmtiEnv*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  } else if (JvmtiEnv::get_phase() == JVMTI_PHASE_ONLOAD) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    // not live, no thread to transition
4491
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   390
    JvmtiEnv *jvmti_env = JvmtiEnv::create_a_jvmti(version);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    *penv = jvmti_env->jvmti_external();  // actual type is jvmtiEnv* -- not to be confused with JvmtiEnv*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    // Called at the wrong time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    *penv = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    return JNI_EDETACHED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
4491
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   401
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   402
void
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   403
JvmtiExport::decode_version_values(jint version, int * major, int * minor,
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   404
                                   int * micro) {
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   405
  *major = (version & JVMTI_VERSION_MASK_MAJOR) >> JVMTI_VERSION_SHIFT_MAJOR;
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   406
  *minor = (version & JVMTI_VERSION_MASK_MINOR) >> JVMTI_VERSION_SHIFT_MINOR;
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   407
  *micro = (version & JVMTI_VERSION_MASK_MICRO) >> JVMTI_VERSION_SHIFT_MICRO;
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   408
}
212bd48525d4 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 3580
diff changeset
   409
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
void JvmtiExport::enter_primordial_phase() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  JvmtiEnvBase::set_phase(JVMTI_PHASE_PRIMORDIAL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
void JvmtiExport::enter_start_phase() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  JvmtiManageCapabilities::recompute_always_capabilities();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  JvmtiEnvBase::set_phase(JVMTI_PHASE_START);
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 JvmtiExport::enter_onload_phase() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  JvmtiEnvBase::set_phase(JVMTI_PHASE_ONLOAD);
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 JvmtiExport::enter_live_phase() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  JvmtiEnvBase::set_phase(JVMTI_PHASE_LIVE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
// JVMTI events that the VM posts to the debugger and also startup agent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
// and call the agent's premain() for java.lang.instrument.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
void JvmtiExport::post_vm_start() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  EVT_TRIG_TRACE(JVMTI_EVENT_VM_START, ("JVMTI Trg VM start event triggered" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // can now enable some events
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  JvmtiEventController::vm_start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    if (env->is_enabled(JVMTI_EVENT_VM_START)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
      EVT_TRACE(JVMTI_EVENT_VM_START, ("JVMTI Evt VM start event sent" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
      JavaThread *thread  = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
      JvmtiThreadEventMark jem(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
      jvmtiEventVMStart callback = env->callbacks()->VMStart;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
        (*callback)(env->jvmti_external(), jem.jni_env());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
void JvmtiExport::post_vm_initialized() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  EVT_TRIG_TRACE(JVMTI_EVENT_VM_INIT, ("JVMTI Trg VM init event triggered" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  // can now enable events
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  JvmtiEventController::vm_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    if (env->is_enabled(JVMTI_EVENT_VM_INIT)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      EVT_TRACE(JVMTI_EVENT_VM_INIT, ("JVMTI Evt VM init event sent" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
      JavaThread *thread  = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
      JvmtiThreadEventMark jem(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
      jvmtiEventVMInit callback = env->callbacks()->VMInit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
void JvmtiExport::post_vm_death() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  EVT_TRIG_TRACE(JVMTI_EVENT_VM_DEATH, ("JVMTI Trg VM death event triggered" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    if (env->is_enabled(JVMTI_EVENT_VM_DEATH)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
      EVT_TRACE(JVMTI_EVENT_VM_DEATH, ("JVMTI Evt VM death event sent" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
      JavaThread *thread  = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
      JvmtiEventMark jem(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
      jvmtiEventVMDeath callback = env->callbacks()->VMDeath;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
        (*callback)(env->jvmti_external(), jem.jni_env());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  JvmtiEnvBase::set_phase(JVMTI_PHASE_DEAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  JvmtiEventController::vm_death();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
char**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
JvmtiExport::get_all_native_method_prefixes(int* count_ptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  // Have to grab JVMTI thread state lock to be sure environment doesn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  // go away while we iterate them.  No locks during VM bring-up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  if (Threads::number_of_threads() == 0 || SafepointSynchronize::is_at_safepoint()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
    return JvmtiEnvBase::get_all_native_method_prefixes(count_ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    MutexLocker mu(JvmtiThreadState_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    return JvmtiEnvBase::get_all_native_method_prefixes(count_ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
class JvmtiClassFileLoadHookPoster : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
 private:
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   514
  Symbol*            _h_name;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  Handle               _class_loader;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  Handle               _h_protection_domain;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  unsigned char **     _data_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  unsigned char **     _end_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  JavaThread *         _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  jint                 _curr_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  unsigned char *      _curr_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  JvmtiEnv *           _curr_env;
18940
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   523
  JvmtiCachedClassFileData ** _cached_class_file_ptr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  JvmtiThreadState *   _state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  KlassHandle *        _h_class_being_redefined;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  JvmtiClassLoadKind   _load_kind;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
 public:
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   529
  inline JvmtiClassFileLoadHookPoster(Symbol* h_name, Handle class_loader,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
                                      Handle h_protection_domain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
                                      unsigned char **data_ptr, unsigned char **end_ptr,
18940
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   532
                                      JvmtiCachedClassFileData **cache_ptr) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    _h_name = h_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    _class_loader = class_loader;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    _h_protection_domain = h_protection_domain;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    _data_ptr = data_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    _end_ptr = end_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    _thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    _curr_len = *end_ptr - *data_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    _curr_data = *data_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    _curr_env = NULL;
18940
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   542
    _cached_class_file_ptr = cache_ptr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    _state = _thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    if (_state != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
      _h_class_being_redefined = _state->get_class_being_redefined();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
      _load_kind = _state->get_class_load_kind();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
      // Clear class_being_redefined flag here. The action
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
      // from agent handler could generate a new class file load
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
      // hook event and if it is not cleared the new event generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      // from regular class file load could have this stale redefined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      // class handle info.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      _state->clear_class_being_redefined();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
      // redefine and retransform will always set the thread state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
      _h_class_being_redefined = (KlassHandle *) NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
      _load_kind = jvmti_class_load_kind_load;
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
  void post() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
//    EVT_TRIG_TRACE(JVMTI_EVENT_CLASS_FILE_LOAD_HOOK,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
//                   ("JVMTI [%s] class file load hook event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
//                    JvmtiTrace::safe_get_thread_name(_thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    post_all_envs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    copy_modified_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  void post_all_envs() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    if (_load_kind != jvmti_class_load_kind_retransform) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
      // for class load and redefine,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
      // call the non-retransformable agents
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
      JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
      for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
        if (!env->is_retransformable() && env->is_enabled(JVMTI_EVENT_CLASS_FILE_LOAD_HOOK)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
          // non-retransformable agents cannot retransform back,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
          // so no need to cache the original class file bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
          post_to_env(env, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
      // retransformable agents get all events
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
      if (env->is_retransformable() && env->is_enabled(JVMTI_EVENT_CLASS_FILE_LOAD_HOOK)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
        // retransformable agents need to cache the original class file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
        // bytes if changes are made via the ClassFileLoadHook
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
        post_to_env(env, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  void post_to_env(JvmtiEnv* env, bool caching_needed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
    unsigned char *new_data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    jint new_len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
//    EVT_TRACE(JVMTI_EVENT_CLASS_FILE_LOAD_HOOK,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
//     ("JVMTI [%s] class file load hook event sent %s  data_ptr = %d, data_len = %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
//               JvmtiTrace::safe_get_thread_name(_thread),
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   600
//               _h_name == NULL ? "NULL" : _h_name->as_utf8(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
//               _curr_data, _curr_len ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    JvmtiClassFileLoadEventMark jem(_thread, _h_name, _class_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
                                    _h_protection_domain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
                                    _h_class_being_redefined);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    JvmtiJavaThreadEventTransition jet(_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    JNIEnv* jni_env =  (JvmtiEnv::get_phase() == JVMTI_PHASE_PRIMORDIAL)?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
                                                        NULL : jem.jni_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    jvmtiEventClassFileLoadHook callback = env->callbacks()->ClassFileLoadHook;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
      (*callback)(env->jvmti_external(), jni_env,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
                  jem.class_being_redefined(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
                  jem.jloader(), jem.class_name(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
                  jem.protection_domain(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
                  _curr_len, _curr_data,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
                  &new_len, &new_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    if (new_data != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
      // this agent has modified class data.
18940
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   619
      if (caching_needed && *_cached_class_file_ptr == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
        // data has been changed by the new retransformable agent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
        // and it hasn't already been cached, cache it
18940
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   622
        JvmtiCachedClassFileData *p;
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   623
        p = (JvmtiCachedClassFileData *)os::malloc(
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   624
          offset_of(JvmtiCachedClassFileData, data) + _curr_len, mtInternal);
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   625
        if (p == NULL) {
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   626
          vm_exit_out_of_memory(offset_of(JvmtiCachedClassFileData, data) + _curr_len,
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   627
            OOM_MALLOC_ERROR,
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   628
            "unable to allocate cached copy of original class bytes");
17368
b7cb1739172e 8008255: jvmtiExport.cpp::post_to_env() does not check malloc() return
rbackman
parents: 15484
diff changeset
   629
        }
18940
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   630
        p->length = _curr_len;
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   631
        memcpy(p->data, _curr_data, _curr_len);
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   632
        *_cached_class_file_ptr = p;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
      if (_curr_data != *_data_ptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
        // curr_data is previous agent modified class data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
        // And this has been changed by the new agent so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
        // we can delete it now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
        _curr_env->Deallocate(_curr_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
      // Class file data has changed by the current agent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
      _curr_data = new_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
      _curr_len = new_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
      // Save the current agent env we need this to deallocate the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
      // memory allocated by this agent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
      _curr_env = env;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  void copy_modified_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    // if one of the agent has modified class file data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    // Copy modified class data to new resources array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    if (_curr_data != *_data_ptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
      *_data_ptr = NEW_RESOURCE_ARRAY(u1, _curr_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
      memcpy(*_data_ptr, _curr_data, _curr_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
      *_end_ptr = *_data_ptr + _curr_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
      _curr_env->Deallocate(_curr_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
bool JvmtiExport::_should_post_class_file_load_hook = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
// this entry is for class file load hook on class load, redefine and retransform
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   666
void JvmtiExport::post_class_file_load_hook(Symbol* h_name,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
                                            Handle class_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
                                            Handle h_protection_domain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
                                            unsigned char **data_ptr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
                                            unsigned char **end_ptr,
18940
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   671
                                            JvmtiCachedClassFileData **cache_ptr) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  JvmtiClassFileLoadHookPoster poster(h_name, class_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
                                      h_protection_domain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
                                      data_ptr, end_ptr,
18940
d39d4765e6cb 8020309: Eliminate InstanceKlass::_cached_class_file_len.
jiangli
parents: 17597
diff changeset
   675
                                      cache_ptr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  poster.post();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
void JvmtiExport::report_unsupported(bool on) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  // If any JVMTI service is turned on, we need to exit before native code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  // tries to access nonexistant services.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  if (on) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    vm_exit_during_initialization("Java Kernel does not support JVMTI.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   688
static inline Klass* oop_to_klass(oop obj) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   689
  Klass* k = obj->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  // if the object is a java.lang.Class then return the java mirror
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 3581
diff changeset
   692
  if (k == SystemDictionary::Class_klass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
    if (!java_lang_Class::is_primitive(obj)) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   694
      k = java_lang_Class::as_Klass(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      assert(k != NULL, "class for non-primitive mirror must exist");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  return k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
class JvmtiVMObjectAllocEventMark : public JvmtiClassEventMark  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
   jobject _jobj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
   jlong    _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   706
   JvmtiVMObjectAllocEventMark(JavaThread *thread, oop obj) : JvmtiClassEventMark(thread, oop_to_klass(obj)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
     _jobj = (jobject)to_jobject(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
     _size = obj->size() * wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
   };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
   jobject jni_jobject() { return _jobj; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
   jlong size() { return _size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
class JvmtiCompiledMethodLoadEventMark : public JvmtiMethodEventMark {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  jint _code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  const void *_code_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  jint _map_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  jvmtiAddrLocationMap *_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  const void *_compile_info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
 public:
4732
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
   722
  JvmtiCompiledMethodLoadEventMark(JavaThread *thread, nmethod *nm, void* compile_info_ptr = NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
          : JvmtiMethodEventMark(thread,methodHandle(thread, nm->method())) {
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   724
    _code_data = nm->insts_begin();
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   725
    _code_size = nm->insts_size();
4732
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
   726
    _compile_info = compile_info_ptr; // Set void pointer of compiledMethodLoad Event. Default value is NULL.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    JvmtiCodeBlobEvents::build_jvmti_addr_location_map(nm, &_map, &_map_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  ~JvmtiCompiledMethodLoadEventMark() {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11399
diff changeset
   730
     FREE_C_HEAP_ARRAY(jvmtiAddrLocationMap, _map, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  jint code_size() { return _code_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  const void *code_data() { return _code_data; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  jint map_length() { return _map_length; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  const jvmtiAddrLocationMap* map() { return _map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  const void *compile_info() { return _compile_info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
class JvmtiMonitorEventMark : public JvmtiThreadEventMark {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  jobject _jobj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  JvmtiMonitorEventMark(JavaThread *thread, oop object)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
          : JvmtiThreadEventMark(thread){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
     _jobj = to_jobject(object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  jobject jni_object() { return _jobj; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
///////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
// pending CompiledMethodUnload support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   758
void JvmtiExport::post_compiled_method_unload(
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   759
       jmethodID method, const void *code_begin) {
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   760
  JavaThread* thread = JavaThread::current();
5700
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   761
  EVT_TRIG_TRACE(JVMTI_EVENT_COMPILED_METHOD_UNLOAD,
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   762
                 ("JVMTI [%s] method compile unload event triggered",
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   763
                  JvmtiTrace::safe_get_thread_name(thread)));
5700
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   764
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   765
  // post the event for each environment that has this event enabled.
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   766
  JvmtiEnvIterator it;
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   767
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   768
    if (env->is_enabled(JVMTI_EVENT_COMPILED_METHOD_UNLOAD)) {
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   769
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   770
      EVT_TRACE(JVMTI_EVENT_COMPILED_METHOD_UNLOAD,
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   771
                ("JVMTI [%s] class compile method unload event sent jmethodID " PTR_FORMAT,
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   772
                 JvmtiTrace::safe_get_thread_name(thread), method));
5700
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   773
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   774
      ResourceMark rm(thread);
5700
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   775
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   776
      JvmtiEventMark jem(thread);
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
   777
      JvmtiJavaThreadEventTransition jet(thread);
5700
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   778
      jvmtiEventCompiledMethodUnload callback = env->callbacks()->CompiledMethodUnload;
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   779
      if (callback != NULL) {
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   780
        (*callback)(env->jvmti_external(), method, code_begin);
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   781
      }
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   782
    }
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   783
  }
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   784
}
a78767273dc1 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 5353
diff changeset
   785
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
///////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
// JvmtiExport
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   791
void JvmtiExport::post_raw_breakpoint(JavaThread *thread, Method* method, address location) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  EVT_TRIG_TRACE(JVMTI_EVENT_BREAKPOINT, ("JVMTI [%s] Trg Breakpoint triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    ets->compare_and_set_current_location(mh(), location, JVMTI_EVENT_BREAKPOINT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
    if (!ets->breakpoint_posted() && ets->is_enabled(JVMTI_EVENT_BREAKPOINT)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
      ThreadState old_os_state = thread->osthread()->get_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
      thread->osthread()->set_state(BREAKPOINTED);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
      EVT_TRACE(JVMTI_EVENT_BREAKPOINT, ("JVMTI [%s] Evt Breakpoint sent %s.%s @ %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
                     JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
                     (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
                     (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
                     location - mh()->code_base() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
      JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
      JvmtiLocationEventMark jem(thread, mh, location);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
      jvmtiEventBreakpoint callback = env->callbacks()->Breakpoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
                    jem.jni_methodID(), jem.location());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
      ets->set_breakpoint_posted();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
      thread->osthread()->set_state(old_os_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
//////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
bool              JvmtiExport::_can_get_source_debug_extension            = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
bool              JvmtiExport::_can_maintain_original_method_order        = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
bool              JvmtiExport::_can_post_interpreter_events               = false;
4761
bdb7375a1fee 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 4733
diff changeset
   833
bool              JvmtiExport::_can_post_on_exceptions                    = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
bool              JvmtiExport::_can_post_breakpoint                       = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
bool              JvmtiExport::_can_post_field_access                     = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
bool              JvmtiExport::_can_post_field_modification               = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
bool              JvmtiExport::_can_post_method_entry                     = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
bool              JvmtiExport::_can_post_method_exit                      = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
bool              JvmtiExport::_can_pop_frame                             = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
bool              JvmtiExport::_can_force_early_return                    = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
bool              JvmtiExport::_should_post_single_step                   = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
bool              JvmtiExport::_should_post_field_access                  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
bool              JvmtiExport::_should_post_field_modification            = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
bool              JvmtiExport::_should_post_class_load                    = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
bool              JvmtiExport::_should_post_class_prepare                 = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
bool              JvmtiExport::_should_post_class_unload                  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
bool              JvmtiExport::_should_post_thread_life                   = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
bool              JvmtiExport::_should_clean_up_heap_objects              = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
bool              JvmtiExport::_should_post_native_method_bind            = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
bool              JvmtiExport::_should_post_dynamic_code_generated        = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
bool              JvmtiExport::_should_post_data_dump                     = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
bool              JvmtiExport::_should_post_compiled_method_load          = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
bool              JvmtiExport::_should_post_compiled_method_unload        = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
bool              JvmtiExport::_should_post_monitor_contended_enter       = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
bool              JvmtiExport::_should_post_monitor_contended_entered     = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
bool              JvmtiExport::_should_post_monitor_wait                  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
bool              JvmtiExport::_should_post_monitor_waited                = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
bool              JvmtiExport::_should_post_garbage_collection_start      = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
bool              JvmtiExport::_should_post_garbage_collection_finish     = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
bool              JvmtiExport::_should_post_object_free                   = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
bool              JvmtiExport::_should_post_resource_exhausted            = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
bool              JvmtiExport::_should_post_vm_object_alloc               = false;
4761
bdb7375a1fee 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 4733
diff changeset
   864
bool              JvmtiExport::_should_post_on_exceptions                 = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
////////////////////////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
// JVMTI single step management
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   872
void JvmtiExport::at_single_stepping_point(JavaThread *thread, Method* method, address location) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  assert(JvmtiExport::should_post_single_step(), "must be single stepping");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  // update information about current location and post a step event
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  EVT_TRIG_TRACE(JVMTI_EVENT_SINGLE_STEP, ("JVMTI [%s] Trg Single Step triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  if (!state->hide_single_stepping()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    if (state->is_pending_step_for_popframe()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
      state->process_pending_step_for_popframe();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    if (state->is_pending_step_for_earlyret()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
      state->process_pending_step_for_earlyret();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    JvmtiExport::post_single_step(thread, mh(), location);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
void JvmtiExport::expose_single_stepping(JavaThread *thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  if (state != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
    state->clear_hide_single_stepping();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
bool JvmtiExport::hide_single_stepping(JavaThread *thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  if (state != NULL && state->is_enabled(JVMTI_EVENT_SINGLE_STEP)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    state->set_hide_single_stepping();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   915
void JvmtiExport::post_class_load(JavaThread *thread, Klass* klass) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  KlassHandle kh(thread, klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  EVT_TRIG_TRACE(JVMTI_EVENT_CLASS_LOAD, ("JVMTI [%s] Trg Class Load triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  JvmtiThreadState* state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
    if (ets->is_enabled(JVMTI_EVENT_CLASS_LOAD)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
      EVT_TRACE(JVMTI_EVENT_CLASS_LOAD, ("JVMTI [%s] Evt Class Load sent %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
                                         JvmtiTrace::safe_get_thread_name(thread),
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   930
                                         kh()==NULL? "NULL" : kh()->external_name() ));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
      JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
      JvmtiClassEventMark jem(thread, kh());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
      jvmtiEventClassLoad callback = env->callbacks()->ClassLoad;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(), jem.jni_class());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   944
void JvmtiExport::post_class_prepare(JavaThread *thread, Klass* klass) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
  KlassHandle kh(thread, klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  EVT_TRIG_TRACE(JVMTI_EVENT_CLASS_PREPARE, ("JVMTI [%s] Trg Class Prepare triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  JvmtiThreadState* state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
    if (ets->is_enabled(JVMTI_EVENT_CLASS_PREPARE)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
      EVT_TRACE(JVMTI_EVENT_CLASS_PREPARE, ("JVMTI [%s] Evt Class Prepare sent %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
                                            JvmtiTrace::safe_get_thread_name(thread),
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   959
                                            kh()==NULL? "NULL" : kh()->external_name() ));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
      JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
      JvmtiClassEventMark jem(thread, kh());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
      jvmtiEventClassPrepare callback = env->callbacks()->ClassPrepare;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(), jem.jni_class());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   972
void JvmtiExport::post_class_unload(Klass* klass) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  KlassHandle kh(thread, klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  EVT_TRIG_TRACE(EXT_EVENT_CLASS_UNLOAD, ("JVMTI [?] Trg Class Unload triggered" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  if (JvmtiEventController::is_enabled((jvmtiEvent)EXT_EVENT_CLASS_UNLOAD)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    assert(thread->is_VM_thread(), "wrong thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
    // get JavaThread for whom we are proxy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    JavaThread *real_thread =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
        (JavaThread *)((VMThread *)thread)->vm_operation()->calling_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
    JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
    for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
      if (env->is_enabled((jvmtiEvent)EXT_EVENT_CLASS_UNLOAD)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
        EVT_TRACE(EXT_EVENT_CLASS_UNLOAD, ("JVMTI [?] Evt Class Unload sent %s",
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   989
                  kh()==NULL? "NULL" : kh()->external_name() ));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
        // do everything manually, since this is a proxy - needs special care
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
        JNIEnv* jni_env = real_thread->jni_environment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
        jthread jt = (jthread)JNIHandles::make_local(real_thread, real_thread->threadObj());
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   994
        jclass jk = (jclass)JNIHandles::make_local(real_thread, kh()->java_mirror());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
        // Before we call the JVMTI agent, we have to set the state in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
        // thread for which we are proxying.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
        JavaThreadState prev_state = real_thread->thread_state();
23447
271ad7631939 6976636: JVM/TI test ex03t001 fails assertion
sspitsyn
parents: 22897
diff changeset
   999
        assert(((Thread *)real_thread)->is_ConcurrentGC_thread() ||
271ad7631939 6976636: JVM/TI test ex03t001 fails assertion
sspitsyn
parents: 22897
diff changeset
  1000
               (real_thread->is_Java_thread() && prev_state == _thread_blocked),
271ad7631939 6976636: JVM/TI test ex03t001 fails assertion
sspitsyn
parents: 22897
diff changeset
  1001
               "should be ConcurrentGCThread or JavaThread at safepoint");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
        real_thread->set_thread_state(_thread_in_native);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
        jvmtiExtensionEvent callback = env->ext_callbacks()->ClassUnload;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
        if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
          (*callback)(env->jvmti_external(), jni_env, jt, jk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
        assert(real_thread->thread_state() == _thread_in_native,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
               "JavaThread should be in native");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
        real_thread->set_thread_state(prev_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
        JNIHandles::destroy_local(jk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
        JNIHandles::destroy_local(jt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
void JvmtiExport::post_thread_start(JavaThread *thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  assert(thread->thread_state() == _thread_in_vm, "must be in vm state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  EVT_TRIG_TRACE(JVMTI_EVENT_THREAD_START, ("JVMTI [%s] Trg Thread Start event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  // do JVMTI thread initialization (if needed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  JvmtiEventController::thread_started(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  // Do not post thread start event for hidden java thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  if (JvmtiEventController::is_enabled(JVMTI_EVENT_THREAD_START) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
      !thread->is_hidden_from_external_view()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
    JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
    for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
      if (env->is_enabled(JVMTI_EVENT_THREAD_START)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
        EVT_TRACE(JVMTI_EVENT_THREAD_START, ("JVMTI [%s] Evt Thread Start event sent",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
                     JvmtiTrace::safe_get_thread_name(thread) ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
        JvmtiThreadEventMark jem(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
        JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
        jvmtiEventThreadStart callback = env->callbacks()->ThreadStart;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
        if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
          (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
void JvmtiExport::post_thread_end(JavaThread *thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  EVT_TRIG_TRACE(JVMTI_EVENT_THREAD_END, ("JVMTI [%s] Trg Thread End event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  // Do not post thread end event for hidden java thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  if (state->is_enabled(JVMTI_EVENT_THREAD_END) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
      !thread->is_hidden_from_external_view()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
    JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
      if (ets->is_enabled(JVMTI_EVENT_THREAD_END)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
        EVT_TRACE(JVMTI_EVENT_THREAD_END, ("JVMTI [%s] Evt Thread End event sent",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
                     JvmtiTrace::safe_get_thread_name(thread) ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
        JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
        JvmtiThreadEventMark jem(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
        JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
        jvmtiEventThreadEnd callback = env->callbacks()->ThreadEnd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
        if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
          (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
void JvmtiExport::post_object_free(JvmtiEnv* env, jlong tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
  assert(SafepointSynchronize::is_at_safepoint(), "must be executed at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  assert(env->is_enabled(JVMTI_EVENT_OBJECT_FREE), "checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  EVT_TRIG_TRACE(JVMTI_EVENT_OBJECT_FREE, ("JVMTI [?] Trg Object Free triggered" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  EVT_TRACE(JVMTI_EVENT_OBJECT_FREE, ("JVMTI [?] Evt Object Free sent"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  jvmtiEventObjectFree callback = env->callbacks()->ObjectFree;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
    (*callback)(env->jvmti_external(), tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
void JvmtiExport::post_resource_exhausted(jint resource_exhausted_flags, const char* description) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  EVT_TRIG_TRACE(JVMTI_EVENT_RESOURCE_EXHAUSTED, ("JVMTI Trg resource exhausted event triggered" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
    if (env->is_enabled(JVMTI_EVENT_RESOURCE_EXHAUSTED)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
      EVT_TRACE(JVMTI_EVENT_RESOURCE_EXHAUSTED, ("JVMTI Evt resource exhausted event sent" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
      JavaThread *thread  = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
      JvmtiThreadEventMark jem(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
      jvmtiEventResourceExhausted callback = env->callbacks()->ResourceExhausted;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
        (*callback)(env->jvmti_external(), jem.jni_env(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
                    resource_exhausted_flags, NULL, description);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1115
void JvmtiExport::post_method_entry(JavaThread *thread, Method* method, frame current_frame) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  EVT_TRIG_TRACE(JVMTI_EVENT_METHOD_ENTRY, ("JVMTI [%s] Trg Method Entry triggered %s.%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
                     JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
                     (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
                     (mh() == NULL) ? "NULL" : mh()->name()->as_C_string() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  JvmtiThreadState* state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  if (state == NULL || !state->is_interp_only_mode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
    // for any thread that actually wants method entry, interp_only_mode is set
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
  state->incr_cur_stack_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  if (state->is_enabled(JVMTI_EVENT_METHOD_ENTRY)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
    JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
    for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
      if (ets->is_enabled(JVMTI_EVENT_METHOD_ENTRY)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
        EVT_TRACE(JVMTI_EVENT_METHOD_ENTRY, ("JVMTI [%s] Evt Method Entry sent %s.%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
                                             JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
                                             (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
                                             (mh() == NULL) ? "NULL" : mh()->name()->as_C_string() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
        JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
        JvmtiMethodEventMark jem(thread, mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
        JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
        jvmtiEventMethodEntry callback = env->callbacks()->MethodEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
        if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
          (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(), jem.jni_methodID());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1153
void JvmtiExport::post_method_exit(JavaThread *thread, Method* method, frame current_frame) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  EVT_TRIG_TRACE(JVMTI_EVENT_METHOD_EXIT, ("JVMTI [%s] Trg Method Exit triggered %s.%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
                     JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
                     (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
                     (mh() == NULL) ? "NULL" : mh()->name()->as_C_string() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  if (state == NULL || !state->is_interp_only_mode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
    // for any thread that actually wants method exit, interp_only_mode is set
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
  // return a flag when a method terminates by throwing an exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  // i.e. if an exception is thrown and it's not caught by the current method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  bool exception_exit = state->is_exception_detected() && !state->is_exception_caught();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
  if (state->is_enabled(JVMTI_EVENT_METHOD_EXIT)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
    Handle result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
    jvalue value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
    value.j = 0L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
    // if the method hasn't been popped because of an exception then we populate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
    // the return_value parameter for the callback. At this point we only have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
    // the address of a "raw result" and we just call into the interpreter to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
    // convert this into a jvalue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
    if (!exception_exit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
      oop oop_result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
      BasicType type = current_frame.interpreter_frame_result(&oop_result, &value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
      if (type == T_OBJECT || type == T_ARRAY) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
        result = Handle(thread, oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
    JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
    for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
      if (ets->is_enabled(JVMTI_EVENT_METHOD_EXIT)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
        EVT_TRACE(JVMTI_EVENT_METHOD_EXIT, ("JVMTI [%s] Evt Method Exit sent %s.%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
                                            JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
                                            (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
                                            (mh() == NULL) ? "NULL" : mh()->name()->as_C_string() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
        JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
        JvmtiMethodEventMark jem(thread, mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
        if (result.not_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
          value.l = JNIHandles::make_local(thread, result());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
        JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
        jvmtiEventMethodExit callback = env->callbacks()->MethodExit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
        if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
          (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
                      jem.jni_methodID(), exception_exit,  value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
  if (state->is_enabled(JVMTI_EVENT_FRAME_POP)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
    JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
    for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
      int cur_frame_number = state->cur_stack_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
      if (ets->is_frame_pop(cur_frame_number)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
        // we have a NotifyFramePop entry for this frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
        // now check that this env/thread wants this event
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
        if (ets->is_enabled(JVMTI_EVENT_FRAME_POP)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
          EVT_TRACE(JVMTI_EVENT_FRAME_POP, ("JVMTI [%s] Evt Frame Pop sent %s.%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
                                            JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
                                            (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
                                            (mh() == NULL) ? "NULL" : mh()->name()->as_C_string() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
          // we also need to issue a frame pop event for this frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
          JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
          JvmtiMethodEventMark jem(thread, mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
          JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
          jvmtiEventFramePop callback = env->callbacks()->FramePop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
          if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
            (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
                        jem.jni_methodID(), exception_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
        // remove the frame's entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
        ets->clear_frame_pop(cur_frame_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
  state->decr_cur_stack_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
// Todo: inline this for optimization
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1248
void JvmtiExport::post_single_step(JavaThread *thread, Method* method, address location) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
  methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
  for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
    ets->compare_and_set_current_location(mh(), location, JVMTI_EVENT_SINGLE_STEP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
    if (!ets->single_stepping_posted() && ets->is_enabled(JVMTI_EVENT_SINGLE_STEP)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
      EVT_TRACE(JVMTI_EVENT_SINGLE_STEP, ("JVMTI [%s] Evt Single Step sent %s.%s @ %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
                    JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
                    (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
                    (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
                    location - mh()->code_base() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
      JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
      JvmtiLocationEventMark jem(thread, mh, location);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
      jvmtiEventSingleStep callback = env->callbacks()->SingleStep;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
                    jem.jni_methodID(), jem.location());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
      ets->set_single_stepping_posted();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1281
void JvmtiExport::post_exception_throw(JavaThread *thread, Method* method, address location, oop exception) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
  Handle exception_handle(thread, exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
  EVT_TRIG_TRACE(JVMTI_EVENT_EXCEPTION, ("JVMTI [%s] Trg Exception thrown triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
  if (!state->is_exception_detected()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
    state->set_exception_detected();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
    for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
      if (ets->is_enabled(JVMTI_EVENT_EXCEPTION) && (exception != NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
        EVT_TRACE(JVMTI_EVENT_EXCEPTION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
                     ("JVMTI [%s] Evt Exception thrown sent %s.%s @ %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
                      JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
                      (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
                      (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
                      location - mh()->code_base() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
        JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
        JvmtiExceptionEventMark jem(thread, mh, location, exception_handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
        // It's okay to clear these exceptions here because we duplicate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
        // this lookup in InterpreterRuntime::exception_handler_for_exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
        EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
        bool should_repeat;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
        vframeStream st(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
        assert(!st.at_end(), "cannot be at end");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1316
        Method* current_method = NULL;
15109
088b1ea04490 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 14490
diff changeset
  1317
        // A GC may occur during the Method::fast_exception_handler_bci_for()
088b1ea04490 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 14490
diff changeset
  1318
        // call below if it needs to load the constraint class. Using a
088b1ea04490 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 14490
diff changeset
  1319
        // methodHandle to keep the 'current_method' from being deallocated
088b1ea04490 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 14490
diff changeset
  1320
        // if GC happens.
088b1ea04490 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 14490
diff changeset
  1321
        methodHandle current_mh = methodHandle(thread, current_method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
        int current_bci = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
        do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
          current_method = st.method();
15109
088b1ea04490 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 14490
diff changeset
  1325
          current_mh = methodHandle(thread, current_method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
          current_bci = st.bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
          do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
            should_repeat = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
            KlassHandle eh_klass(thread, exception_handle()->klass());
15109
088b1ea04490 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 14490
diff changeset
  1330
            current_bci = Method::fast_exception_handler_bci_for(
088b1ea04490 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 14490
diff changeset
  1331
              current_mh, eh_klass, current_bci, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
            if (HAS_PENDING_EXCEPTION) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1333
              exception_handle = Handle(thread, PENDING_EXCEPTION);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
              CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
              should_repeat = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
          } while (should_repeat && (current_bci != -1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
          st.next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
        } while ((current_bci < 0) && (!st.at_end()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
        jmethodID catch_jmethodID;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
        if (current_bci < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
          catch_jmethodID = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
          current_bci = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
        } else {
15109
088b1ea04490 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 14490
diff changeset
  1346
          catch_jmethodID = jem.to_jmethodID(current_mh);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
        JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
        jvmtiEventException callback = env->callbacks()->Exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
        if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
          (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
                      jem.jni_methodID(), jem.location(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
                      jem.exception(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
                      catch_jmethodID, current_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
  // frames may get popped because of this throw, be safe - invalidate cached depth
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
  state->invalidate_cur_stack_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1366
void JvmtiExport::notice_unwind_due_to_exception(JavaThread *thread, Method* method, address location, oop exception, bool in_handler_frame) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  Handle exception_handle(thread, exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  EVT_TRIG_TRACE(JVMTI_EVENT_EXCEPTION_CATCH,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
                    ("JVMTI [%s] Trg unwind_due_to_exception triggered %s.%s @ %s%d - %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
                     JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
                     (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
                     (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
                     location==0? "no location:" : "",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
                     location==0? 0 : location - mh()->code_base(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
                     in_handler_frame? "in handler frame" : "not handler frame" ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  if (state->is_exception_detected()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
    state->invalidate_cur_stack_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
    if (!in_handler_frame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
      // Not in exception handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
      if(state->is_interp_only_mode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
        // method exit and frame pop events are posted only in interp mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
        // When these events are enabled code should be in running in interp mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
        JvmtiExport::post_method_exit(thread, method, thread->last_frame());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
        // The cached cur_stack_depth might have changed from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
        // operations of frame pop or method exit. We are not 100% sure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
        // the cached cur_stack_depth is still valid depth so invalidate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
        // it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
        state->invalidate_cur_stack_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
      // In exception handler frame. Report exception catch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
      assert(location != NULL, "must be a known location");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
      // Update cur_stack_depth - the frames above the current frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
      // have been unwound due to this exception:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
      assert(!state->is_exception_caught(), "exception must not be caught yet.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
      state->set_exception_caught();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
      JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
      for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
        if (ets->is_enabled(JVMTI_EVENT_EXCEPTION_CATCH) && (exception_handle() != NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
          EVT_TRACE(JVMTI_EVENT_EXCEPTION_CATCH,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
                     ("JVMTI [%s] Evt ExceptionCatch sent %s.%s @ %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
                      JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
                      (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
                      (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
                      location - mh()->code_base() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
          JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
          JvmtiExceptionEventMark jem(thread, mh, location, exception_handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
          JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
          jvmtiEventExceptionCatch callback = env->callbacks()->ExceptionCatch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
          if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
            (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
                      jem.jni_methodID(), jem.location(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
                      jem.exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
oop JvmtiExport::jni_GetField_probe(JavaThread *thread, jobject jobj, oop obj,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1433
                                    Klass* klass, jfieldID fieldID, bool is_static) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  if (*((int *)get_field_access_count_addr()) > 0 && thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
    // At least one field access watch is set so we have more work
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
    // to do. This wrapper is used by entry points that allow us
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
    // to create handles in post_field_access_by_jni().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
    post_field_access_by_jni(thread, obj, klass, fieldID, is_static);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
    // event posting can block so refetch oop if we were passed a jobj
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
    if (jobj != NULL) return JNIHandles::resolve_non_null(jobj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
oop JvmtiExport::jni_GetField_probe_nh(JavaThread *thread, jobject jobj, oop obj,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1446
                                       Klass* klass, jfieldID fieldID, bool is_static) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  if (*((int *)get_field_access_count_addr()) > 0 && thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
    // At least one field access watch is set so we have more work
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
    // to do. This wrapper is used by "quick" entry points that don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
    // allow us to create handles in post_field_access_by_jni(). We
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
    // override that with a ResetNoHandleMark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
    ResetNoHandleMark rnhm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
    post_field_access_by_jni(thread, obj, klass, fieldID, is_static);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
    // event posting can block so refetch oop if we were passed a jobj
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
    if (jobj != NULL) return JNIHandles::resolve_non_null(jobj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
void JvmtiExport::post_field_access_by_jni(JavaThread *thread, oop obj,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1461
                                           Klass* klass, jfieldID fieldID, bool is_static) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  // We must be called with a Java context in order to provide reasonable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
  // values for the klazz, method, and location fields. The callers of this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  // function don't make the call unless there is a Java context.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
  assert(thread->has_last_Java_frame(), "must be called with a Java context");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  fieldDescriptor fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
  // if get_field_descriptor finds fieldID to be invalid, then we just bail
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
  bool valid_fieldID = JvmtiEnv::get_field_descriptor(klass, fieldID, &fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
  assert(valid_fieldID == true,"post_field_access_by_jni called with invalid fieldID");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  if (!valid_fieldID) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  // field accesses are not watched so bail
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  if (!fd.is_field_access_watched()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  KlassHandle h_klass(thread, klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
  Handle h_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
  if (!is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
    // non-static field accessors have an object, but we need a handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
    assert(obj != NULL, "non-static needs an object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
    h_obj = Handle(thread, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
  post_field_access(thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
                    thread->last_frame().interpreter_frame_method(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
                    thread->last_frame().interpreter_frame_bcp(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
                    h_klass, h_obj, fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1490
void JvmtiExport::post_field_access(JavaThread *thread, Method* method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
  address location, KlassHandle field_klass, Handle object, jfieldID field) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
  methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
  EVT_TRIG_TRACE(JVMTI_EVENT_FIELD_ACCESS, ("JVMTI [%s] Trg Field Access event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
  JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
  for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
    if (ets->is_enabled(JVMTI_EVENT_FIELD_ACCESS)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
      EVT_TRACE(JVMTI_EVENT_FIELD_ACCESS, ("JVMTI [%s] Evt Field Access event sent %s.%s @ %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
                     JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
                     (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
                     (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
                     location - mh()->code_base() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
      JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
      JvmtiLocationEventMark jem(thread, mh, location);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
      jclass field_jclass = jem.to_jclass(field_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
      jobject field_jobject = jem.to_jobject(object());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
      jvmtiEventFieldAccess callback = env->callbacks()->FieldAccess;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
                    jem.jni_methodID(), jem.location(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
                    field_jclass, field_jobject, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
oop JvmtiExport::jni_SetField_probe(JavaThread *thread, jobject jobj, oop obj,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1527
                                    Klass* klass, jfieldID fieldID, bool is_static,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
                                    char sig_type, jvalue *value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
  if (*((int *)get_field_modification_count_addr()) > 0 && thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
    // At least one field modification watch is set so we have more work
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
    // to do. This wrapper is used by entry points that allow us
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
    // to create handles in post_field_modification_by_jni().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
    post_field_modification_by_jni(thread, obj, klass, fieldID, is_static, sig_type, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
    // event posting can block so refetch oop if we were passed a jobj
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
    if (jobj != NULL) return JNIHandles::resolve_non_null(jobj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
oop JvmtiExport::jni_SetField_probe_nh(JavaThread *thread, jobject jobj, oop obj,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1541
                                       Klass* klass, jfieldID fieldID, bool is_static,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
                                       char sig_type, jvalue *value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
  if (*((int *)get_field_modification_count_addr()) > 0 && thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
    // At least one field modification watch is set so we have more work
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
    // to do. This wrapper is used by "quick" entry points that don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
    // allow us to create handles in post_field_modification_by_jni(). We
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
    // override that with a ResetNoHandleMark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
    ResetNoHandleMark rnhm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
    post_field_modification_by_jni(thread, obj, klass, fieldID, is_static, sig_type, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
    // event posting can block so refetch oop if we were passed a jobj
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
    if (jobj != NULL) return JNIHandles::resolve_non_null(jobj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
void JvmtiExport::post_field_modification_by_jni(JavaThread *thread, oop obj,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1557
                                                 Klass* klass, jfieldID fieldID, bool is_static,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
                                                 char sig_type, jvalue *value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
  // We must be called with a Java context in order to provide reasonable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
  // values for the klazz, method, and location fields. The callers of this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
  // function don't make the call unless there is a Java context.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
  assert(thread->has_last_Java_frame(), "must be called with Java context");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
  fieldDescriptor fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
  // if get_field_descriptor finds fieldID to be invalid, then we just bail
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
  bool valid_fieldID = JvmtiEnv::get_field_descriptor(klass, fieldID, &fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
  assert(valid_fieldID == true,"post_field_modification_by_jni called with invalid fieldID");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
  if (!valid_fieldID) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
  // field modifications are not watched so bail
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
  if (!fd.is_field_modification_watched()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
  Handle h_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
  if (!is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
    // non-static field accessors have an object, but we need a handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
    assert(obj != NULL, "non-static needs an object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
    h_obj = Handle(thread, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
  KlassHandle h_klass(thread, klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
  post_field_modification(thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
                          thread->last_frame().interpreter_frame_method(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
                          thread->last_frame().interpreter_frame_bcp(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
                          h_klass, h_obj, fieldID, sig_type, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1588
void JvmtiExport::post_raw_field_modification(JavaThread *thread, Method* method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
  address location, KlassHandle field_klass, Handle object, jfieldID field,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
  char sig_type, jvalue *value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
  if (sig_type == 'I' || sig_type == 'Z' || sig_type == 'C' || sig_type == 'S') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
    // 'I' instructions are used for byte, char, short and int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
    // determine which it really is, and convert
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
    fieldDescriptor fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
    bool found = JvmtiEnv::get_field_descriptor(field_klass(), field, &fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
    // should be found (if not, leave as is)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
    if (found) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
      jint ival = value->i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
      // convert value from int to appropriate type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
      switch (fd.field_type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
      case T_BOOLEAN:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
        sig_type = 'Z';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
        value->i = 0; // clear it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
        value->z = (jboolean)ival;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
      case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
        sig_type = 'B';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
        value->i = 0; // clear it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
        value->b = (jbyte)ival;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
      case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
        sig_type = 'C';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
        value->i = 0; // clear it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
        value->c = (jchar)ival;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
      case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
        sig_type = 'S';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
        value->i = 0; // clear it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
        value->s = (jshort)ival;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
      case T_INT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
        // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
      default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
        // this is an integer instruction, should be one of above
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
        ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
17597
48ed8470e935 4965252: JvmtiExport::post_raw_field_modification jni ref handling is odd
rbackman
parents: 17368
diff changeset
  1633
  assert(sig_type != '[', "array should have sig_type == 'L'");
48ed8470e935 4965252: JvmtiExport::post_raw_field_modification jni ref handling is odd
rbackman
parents: 17368
diff changeset
  1634
  bool handle_created = false;
48ed8470e935 4965252: JvmtiExport::post_raw_field_modification jni ref handling is odd
rbackman
parents: 17368
diff changeset
  1635
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
  // convert oop to JNI handle.
17597
48ed8470e935 4965252: JvmtiExport::post_raw_field_modification jni ref handling is odd
rbackman
parents: 17368
diff changeset
  1637
  if (sig_type == 'L') {
48ed8470e935 4965252: JvmtiExport::post_raw_field_modification jni ref handling is odd
rbackman
parents: 17368
diff changeset
  1638
    handle_created = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
    value->l = (jobject)JNIHandles::make_local(thread, (oop)value->l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
  post_field_modification(thread, method, location, field_klass, object, field, sig_type, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
  // Destroy the JNI handle allocated above.
17597
48ed8470e935 4965252: JvmtiExport::post_raw_field_modification jni ref handling is odd
rbackman
parents: 17368
diff changeset
  1645
  if (handle_created) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
    JNIHandles::destroy_local(value->l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1650
void JvmtiExport::post_field_modification(JavaThread *thread, Method* method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
  address location, KlassHandle field_klass, Handle object, jfieldID field,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
  char sig_type, jvalue *value_ptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
  methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
  EVT_TRIG_TRACE(JVMTI_EVENT_FIELD_MODIFICATION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
                     ("JVMTI [%s] Trg Field Modification event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
  JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
  for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
    if (ets->is_enabled(JVMTI_EVENT_FIELD_MODIFICATION)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
      EVT_TRACE(JVMTI_EVENT_FIELD_MODIFICATION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
                   ("JVMTI [%s] Evt Field Modification event sent %s.%s @ %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
                    JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
                    (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
                    (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
                    location - mh()->code_base() ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
      JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
      JvmtiLocationEventMark jem(thread, mh, location);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
      jclass field_jclass = jem.to_jclass(field_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
      jobject field_jobject = jem.to_jobject(object());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
      jvmtiEventFieldModification callback = env->callbacks()->FieldModification;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
                    jem.jni_methodID(), jem.location(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
                    field_jclass, field_jobject, field, sig_type, *value_ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1690
void JvmtiExport::post_native_method_bind(Method* method, address* function_ptr) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
  assert(thread->thread_state() == _thread_in_vm, "must be in vm state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
  methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
  EVT_TRIG_TRACE(JVMTI_EVENT_NATIVE_METHOD_BIND, ("JVMTI [%s] Trg Native Method Bind event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
  if (JvmtiEventController::is_enabled(JVMTI_EVENT_NATIVE_METHOD_BIND)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
    JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
    for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
      if (env->is_enabled(JVMTI_EVENT_NATIVE_METHOD_BIND)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
        EVT_TRACE(JVMTI_EVENT_NATIVE_METHOD_BIND, ("JVMTI [%s] Evt Native Method Bind event sent",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
                     JvmtiTrace::safe_get_thread_name(thread) ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
        JvmtiMethodEventMark jem(thread, mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
        JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
        JNIEnv* jni_env =  JvmtiEnv::get_phase() == JVMTI_PHASE_PRIMORDIAL? NULL : jem.jni_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
        jvmtiEventNativeMethodBind callback = env->callbacks()->NativeMethodBind;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
        if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
          (*callback)(env->jvmti_external(), jni_env, jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
                      jem.jni_methodID(), (void*)(*function_ptr), (void**)function_ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
4732
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1720
// Returns a record containing inlining information for the given nmethod
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1721
jvmtiCompiledMethodLoadInlineRecord* create_inline_record(nmethod* nm) {
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1722
  jint numstackframes = 0;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1723
  jvmtiCompiledMethodLoadInlineRecord* record = (jvmtiCompiledMethodLoadInlineRecord*)NEW_RESOURCE_OBJ(jvmtiCompiledMethodLoadInlineRecord);
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1724
  record->header.kind = JVMTI_CMLR_INLINE_INFO;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1725
  record->header.next = NULL;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1726
  record->header.majorinfoversion = JVMTI_CMLR_MAJOR_VERSION_1;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1727
  record->header.minorinfoversion = JVMTI_CMLR_MINOR_VERSION_0;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1728
  record->numpcs = 0;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1729
  for(PcDesc* p = nm->scopes_pcs_begin(); p < nm->scopes_pcs_end(); p++) {
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1730
   if(p->scope_decode_offset() == DebugInformationRecorder::serialized_null) continue;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1731
   record->numpcs++;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1732
  }
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1733
  record->pcinfo = (PCStackInfo*)(NEW_RESOURCE_ARRAY(PCStackInfo, record->numpcs));
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1734
  int scope = 0;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1735
  for(PcDesc* p = nm->scopes_pcs_begin(); p < nm->scopes_pcs_end(); p++) {
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1736
    if(p->scope_decode_offset() == DebugInformationRecorder::serialized_null) continue;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1737
    void* pc_address = (void*)p->real_pc(nm);
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1738
    assert(pc_address != NULL, "pc_address must be non-null");
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1739
    record->pcinfo[scope].pc = pc_address;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1740
    numstackframes=0;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1741
    for(ScopeDesc* sd = nm->scope_desc_at(p->real_pc(nm));sd != NULL;sd = sd->sender()) {
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1742
      numstackframes++;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1743
    }
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1744
    assert(numstackframes != 0, "numstackframes must be nonzero.");
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1745
    record->pcinfo[scope].methods = (jmethodID *)NEW_RESOURCE_ARRAY(jmethodID, numstackframes);
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1746
    record->pcinfo[scope].bcis = (jint *)NEW_RESOURCE_ARRAY(jint, numstackframes);
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1747
    record->pcinfo[scope].numstackframes = numstackframes;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1748
    int stackframe = 0;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1749
    for(ScopeDesc* sd = nm->scope_desc_at(p->real_pc(nm));sd != NULL;sd = sd->sender()) {
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1750
      // sd->method() can be NULL for stubs but not for nmethods. To be completely robust, include an assert that we should never see a null sd->method()
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1751
      assert(sd->method() != NULL, "sd->method() cannot be null.");
4732
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1752
      record->pcinfo[scope].methods[stackframe] = sd->method()->jmethod_id();
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1753
      record->pcinfo[scope].bcis[stackframe] = sd->bci();
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1754
      stackframe++;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1755
    }
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1756
    scope++;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1757
  }
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1758
  return record;
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1759
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
void JvmtiExport::post_compiled_method_load(nmethod *nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
  EVT_TRIG_TRACE(JVMTI_EVENT_COMPILED_METHOD_LOAD,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
                 ("JVMTI [%s] method compile load event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
                 JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
  JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
    if (env->is_enabled(JVMTI_EVENT_COMPILED_METHOD_LOAD)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
      EVT_TRACE(JVMTI_EVENT_COMPILED_METHOD_LOAD,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
                ("JVMTI [%s] class compile method load event sent %s.%s  ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
                JvmtiTrace::safe_get_thread_name(thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
                (nm->method() == NULL) ? "NULL" : nm->method()->klass_name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
                (nm->method() == NULL) ? "NULL" : nm->method()->name()->as_C_string()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
      ResourceMark rm(thread);
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 8076
diff changeset
  1778
      HandleMark hm(thread);
4732
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1779
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1780
      // Add inlining information
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1781
      jvmtiCompiledMethodLoadInlineRecord* inlinerecord = create_inline_record(nm);
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1782
      // Pass inlining information through the void pointer
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 4491
diff changeset
  1783
      JvmtiCompiledMethodLoadEventMark jem(thread, nm, inlinerecord);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
      jvmtiEventCompiledMethodLoad callback = env->callbacks()->CompiledMethodLoad;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
        (*callback)(env->jvmti_external(), jem.jni_methodID(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
                    jem.code_size(), jem.code_data(), jem.map_length(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
                    jem.map(), jem.compile_info());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
// post a COMPILED_METHOD_LOAD event for a given environment
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
void JvmtiExport::post_compiled_method_load(JvmtiEnv* env, const jmethodID method, const jint length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
                                            const void *code_begin, const jint map_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
                                            const jvmtiAddrLocationMap* map)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
  EVT_TRIG_TRACE(JVMTI_EVENT_COMPILED_METHOD_LOAD,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
                 ("JVMTI [%s] method compile load event triggered (by GenerateEvents)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
                 JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
  if (env->is_enabled(JVMTI_EVENT_COMPILED_METHOD_LOAD)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
    EVT_TRACE(JVMTI_EVENT_COMPILED_METHOD_LOAD,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
              ("JVMTI [%s] class compile method load event sent (by GenerateEvents), jmethodID=" PTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
              JvmtiTrace::safe_get_thread_name(thread), method));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
    JvmtiEventMark jem(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
    JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
    jvmtiEventCompiledMethodLoad callback = env->callbacks()->CompiledMethodLoad;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
    if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
      (*callback)(env->jvmti_external(), method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
                  length, code_begin, map_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
                  map, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
void JvmtiExport::post_dynamic_code_generated_internal(const char *name, const void *code_begin, const void *code_end) {
9405
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8475
diff changeset
  1823
  assert(name != NULL && name[0] != '\0', "sanity check");
d2e9ee78c3c1 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 8475
diff changeset
  1824
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
  JavaThread* thread = JavaThread::current();
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1826
  // In theory everyone coming thru here is in_vm but we need to be certain
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1827
  // because a callee will do a vm->native transition
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1828
  ThreadInVMfromUnknown __tiv;
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1829
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
  EVT_TRIG_TRACE(JVMTI_EVENT_DYNAMIC_CODE_GENERATED,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
                 ("JVMTI [%s] method dynamic code generated event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
                 JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
  JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
    if (env->is_enabled(JVMTI_EVENT_DYNAMIC_CODE_GENERATED)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
      EVT_TRACE(JVMTI_EVENT_DYNAMIC_CODE_GENERATED,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
                ("JVMTI [%s] dynamic code generated event sent for %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
                JvmtiTrace::safe_get_thread_name(thread), name));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
      JvmtiEventMark jem(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
      jint length = (jint)pointer_delta(code_end, code_begin, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
      jvmtiEventDynamicCodeGenerated callback = env->callbacks()->DynamicCodeGenerated;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
        (*callback)(env->jvmti_external(), name, (void*)code_begin, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
void JvmtiExport::post_dynamic_code_generated(const char *name, const void *code_begin, const void *code_end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
  jvmtiPhase phase = JvmtiEnv::get_phase();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
  if (phase == JVMTI_PHASE_PRIMORDIAL || phase == JVMTI_PHASE_START) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
    post_dynamic_code_generated_internal(name, code_begin, code_end);
8475
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1854
  } else {
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1855
    // It may not be safe to post the event from this thread.  Defer all
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1856
    // postings to the service thread so that it can perform them in a safe
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1857
    // context and in-order.
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1858
    MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1859
    JvmtiDeferredEvent event = JvmtiDeferredEvent::dynamic_code_generated_event(
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1860
        name, code_begin, code_end);
c2b97a27943a 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 8110
diff changeset
  1861
    JvmtiDeferredEventQueue::enqueue(event);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
// post a DYNAMIC_CODE_GENERATED event for a given environment
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
// used by GenerateEvents
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
void JvmtiExport::post_dynamic_code_generated(JvmtiEnv* env, const char *name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
                                              const void *code_begin, const void *code_end)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
  EVT_TRIG_TRACE(JVMTI_EVENT_DYNAMIC_CODE_GENERATED,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
                 ("JVMTI [%s] dynamic code generated event triggered (by GenerateEvents)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
                  JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
  if (env->is_enabled(JVMTI_EVENT_DYNAMIC_CODE_GENERATED)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
    EVT_TRACE(JVMTI_EVENT_DYNAMIC_CODE_GENERATED,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
              ("JVMTI [%s] dynamic code generated event sent for %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
               JvmtiTrace::safe_get_thread_name(thread), name));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
    JvmtiEventMark jem(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
    JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
    jint length = (jint)pointer_delta(code_end, code_begin, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
    jvmtiEventDynamicCodeGenerated callback = env->callbacks()->DynamicCodeGenerated;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
    if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
      (*callback)(env->jvmti_external(), name, (void*)code_begin, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
// post a DynamicCodeGenerated event while holding locks in the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
void JvmtiExport::post_dynamic_code_generated_while_holding_locks(const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
                                                                  address code_begin, address code_end)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
  // register the stub with the current dynamic code event collector
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
  JvmtiThreadState* state = JvmtiThreadState::state_for(JavaThread::current());
2135
f82c3012ec86 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 1374
diff changeset
  1895
  // state can only be NULL if the current thread is exiting which
f82c3012ec86 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 1374
diff changeset
  1896
  // should not happen since we're trying to post an event
f82c3012ec86 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 1374
diff changeset
  1897
  guarantee(state != NULL, "attempt to register stub via an exiting thread");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
  JvmtiDynamicCodeEventCollector* collector = state->get_dynamic_code_event_collector();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
  guarantee(collector != NULL, "attempt to register stub without event collector");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
  collector->register_stub(name, code_begin, code_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
// Collect all the vm internally allocated objects which are visible to java world
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
void JvmtiExport::record_vm_internal_object_allocation(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
  Thread* thread = ThreadLocalStorage::thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
  if (thread != NULL && thread->is_Java_thread())  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
    // Can not take safepoint here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
    No_Safepoint_Verifier no_sfpt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
    // Can not take safepoint here so can not use state_for to get
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
    // jvmti thread state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
    JvmtiThreadState *state = ((JavaThread*)thread)->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
    if (state != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
      // state is non NULL when VMObjectAllocEventCollector is enabled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
      JvmtiVMObjectAllocEventCollector *collector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
      collector = state->get_vm_object_alloc_event_collector();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
      if (collector != NULL && collector->is_enabled()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
        // Don't record classes as these will be notified via the ClassLoad
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
        // event.
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 3581
diff changeset
  1919
        if (obj->klass() != SystemDictionary::Class_klass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
          collector->record_allocation(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
void JvmtiExport::post_garbage_collection_finish() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
  Thread *thread = Thread::current(); // this event is posted from VM-Thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
  EVT_TRIG_TRACE(JVMTI_EVENT_GARBAGE_COLLECTION_FINISH,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
                 ("JVMTI [%s] garbage collection finish event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
                  JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
  JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
    if (env->is_enabled(JVMTI_EVENT_GARBAGE_COLLECTION_FINISH)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
      EVT_TRACE(JVMTI_EVENT_GARBAGE_COLLECTION_FINISH,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
                ("JVMTI [%s] garbage collection finish event sent ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
                 JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
      JvmtiThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
      // JNIEnv is NULL here because this event is posted from VM Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
      jvmtiEventGarbageCollectionFinish callback = env->callbacks()->GarbageCollectionFinish;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
        (*callback)(env->jvmti_external());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
void JvmtiExport::post_garbage_collection_start() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
  Thread* thread = Thread::current(); // this event is posted from vm-thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
  EVT_TRIG_TRACE(JVMTI_EVENT_GARBAGE_COLLECTION_START,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
                 ("JVMTI [%s] garbage collection start event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
                  JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
  JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
    if (env->is_enabled(JVMTI_EVENT_GARBAGE_COLLECTION_START)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
      EVT_TRACE(JVMTI_EVENT_GARBAGE_COLLECTION_START,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
                ("JVMTI [%s] garbage collection start event sent ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
                 JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
      JvmtiThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
      // JNIEnv is NULL here because this event is posted from VM Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
      jvmtiEventGarbageCollectionStart callback = env->callbacks()->GarbageCollectionStart;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
        (*callback)(env->jvmti_external());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
void JvmtiExport::post_data_dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
  EVT_TRIG_TRACE(JVMTI_EVENT_DATA_DUMP_REQUEST,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
                 ("JVMTI [%s] data dump request event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
                  JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
  JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
    if (env->is_enabled(JVMTI_EVENT_DATA_DUMP_REQUEST)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
      EVT_TRACE(JVMTI_EVENT_DATA_DUMP_REQUEST,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
                ("JVMTI [%s] data dump request event sent ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
                 JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
     JvmtiThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
     // JNIEnv is NULL here because this event is posted from VM Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
     jvmtiEventDataDumpRequest callback = env->callbacks()->DataDumpRequest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
     if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
       (*callback)(env->jvmti_external());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
void JvmtiExport::post_monitor_contended_enter(JavaThread *thread, ObjectMonitor *obj_mntr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
  oop object = (oop)obj_mntr->object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
  if (!ServiceUtil::visible_oop(object)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
    // Ignore monitor contended enter for vm internal object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
  Handle h(thread, object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
  EVT_TRIG_TRACE(JVMTI_EVENT_MONITOR_CONTENDED_ENTER,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
                     ("JVMTI [%s] montior contended enter event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
  JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
  for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
    if (ets->is_enabled(JVMTI_EVENT_MONITOR_CONTENDED_ENTER)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
      EVT_TRACE(JVMTI_EVENT_MONITOR_CONTENDED_ENTER,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
                   ("JVMTI [%s] monitor contended enter event sent",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
                    JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
      JvmtiMonitorEventMark  jem(thread, h());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
      JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
      JvmtiThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
      jvmtiEventMonitorContendedEnter callback = env->callbacks()->MonitorContendedEnter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(), jem.jni_object());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
void JvmtiExport::post_monitor_contended_entered(JavaThread *thread, ObjectMonitor *obj_mntr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
  oop object = (oop)obj_mntr->object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
  if (!ServiceUtil::visible_oop(object)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
    // Ignore monitor contended entered for vm internal object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
  Handle h(thread, object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
  EVT_TRIG_TRACE(JVMTI_EVENT_MONITOR_CONTENDED_ENTERED,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
                     ("JVMTI [%s] montior contended entered event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
  JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
  for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
    if (ets->is_enabled(JVMTI_EVENT_MONITOR_CONTENDED_ENTERED)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
      EVT_TRACE(JVMTI_EVENT_MONITOR_CONTENDED_ENTERED,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
                   ("JVMTI [%s] monitor contended enter event sent",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
                    JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
      JvmtiMonitorEventMark  jem(thread, h());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
      JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
      JvmtiThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
      jvmtiEventMonitorContendedEntered callback = env->callbacks()->MonitorContendedEntered;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(), jem.jni_object());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
void JvmtiExport::post_monitor_wait(JavaThread *thread, oop object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
                                          jlong timeout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
  Handle h(thread, object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
  EVT_TRIG_TRACE(JVMTI_EVENT_MONITOR_WAIT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
                     ("JVMTI [%s] montior wait event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
  JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
  for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
    if (ets->is_enabled(JVMTI_EVENT_MONITOR_WAIT)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
      EVT_TRACE(JVMTI_EVENT_MONITOR_WAIT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
                   ("JVMTI [%s] monitor wait event sent ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
                    JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
      JvmtiMonitorEventMark  jem(thread, h());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
      JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
      JvmtiThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
      jvmtiEventMonitorWait callback = env->callbacks()->MonitorWait;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
                    jem.jni_object(), timeout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
void JvmtiExport::post_monitor_waited(JavaThread *thread, ObjectMonitor *obj_mntr, jboolean timed_out) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
  oop object = (oop)obj_mntr->object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
  if (!ServiceUtil::visible_oop(object)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
    // Ignore monitor waited for vm internal object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
  JvmtiThreadState *state = thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
  Handle h(thread, object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
  EVT_TRIG_TRACE(JVMTI_EVENT_MONITOR_WAITED,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
                     ("JVMTI [%s] montior waited event triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
  JvmtiEnvThreadStateIterator it(state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
  for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
    if (ets->is_enabled(JVMTI_EVENT_MONITOR_WAITED)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
      EVT_TRACE(JVMTI_EVENT_MONITOR_WAITED,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
                   ("JVMTI [%s] monitor waited event sent ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
                    JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
      JvmtiMonitorEventMark  jem(thread, h());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
      JvmtiEnv *env = ets->get_env();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
      JvmtiThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
      jvmtiEventMonitorWaited callback = env->callbacks()->MonitorWaited;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
                    jem.jni_object(), timed_out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
void JvmtiExport::post_vm_object_alloc(JavaThread *thread,  oop object) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
  EVT_TRIG_TRACE(JVMTI_EVENT_VM_OBJECT_ALLOC, ("JVMTI [%s] Trg vm object alloc triggered",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
                      JvmtiTrace::safe_get_thread_name(thread)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
  if (object == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
  HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
  Handle h(thread, object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
  JvmtiEnvIterator it;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
  for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
    if (env->is_enabled(JVMTI_EVENT_VM_OBJECT_ALLOC)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
      EVT_TRACE(JVMTI_EVENT_VM_OBJECT_ALLOC, ("JVMTI [%s] Evt vmobject alloc sent %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
                                         JvmtiTrace::safe_get_thread_name(thread),
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
  2142
                                         object==NULL? "NULL" : java_lang_Class::as_Klass(object)->external_name()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
      JvmtiVMObjectAllocEventMark jem(thread, h());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
      JvmtiJavaThreadEventTransition jet(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
      jvmtiEventVMObjectAlloc callback = env->callbacks()->VMObjectAlloc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
      if (callback != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
        (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
                    jem.jni_jobject(), jem.jni_class(), jem.size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
////////////////////////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
void JvmtiExport::cleanup_thread(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
  assert(JavaThread::current() == thread, "thread is not current");
7897
201a8b00ec91 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 7896
diff changeset
  2159
  MutexLocker mu(JvmtiThreadState_lock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
7897
201a8b00ec91 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 7896
diff changeset
  2161
  if (thread->jvmti_thread_state() != NULL) {
201a8b00ec91 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 7896
diff changeset
  2162
    // This has to happen after the thread state is removed, which is
201a8b00ec91 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 7896
diff changeset
  2163
    // why it is not in post_thread_end_event like its complement
201a8b00ec91 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 7896
diff changeset
  2164
    // Maybe both these functions should be rolled into the posts?
201a8b00ec91 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 7896
diff changeset
  2165
    JvmtiEventController::thread_ended(thread);
201a8b00ec91 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 7896
diff changeset
  2166
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
22897
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 19553
diff changeset
  2169
void JvmtiExport::clear_detected_exception(JavaThread* thread) {
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 19553
diff changeset
  2170
  assert(JavaThread::current() == thread, "thread is not current");
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 19553
diff changeset
  2171
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 19553
diff changeset
  2172
  JvmtiThreadState* state = thread->jvmti_thread_state();
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 19553
diff changeset
  2173
  if (state != NULL) {
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 19553
diff changeset
  2174
    state->clear_exception_detected();
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 19553
diff changeset
  2175
  }
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 19553
diff changeset
  2176
}
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 19553
diff changeset
  2177
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
void JvmtiExport::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
  JvmtiCurrentBreakpoints::oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
  JvmtiVMObjectAllocEventCollector::oops_do_for_all_threads(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
7918
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7897
diff changeset
  2183
void JvmtiExport::weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f) {
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7897
diff changeset
  2184
  JvmtiTagMap::weak_oops_do(is_alive, f);
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7897
diff changeset
  2185
}
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7897
diff changeset
  2186
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7897
diff changeset
  2187
void JvmtiExport::gc_epilogue() {
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7897
diff changeset
  2188
  JvmtiCurrentBreakpoints::gc_epilogue();
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7897
diff changeset
  2189
}
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7897
diff changeset
  2190
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
// Onload raw monitor transition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
void JvmtiExport::transition_pending_onload_raw_monitors() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
  JvmtiPendingMonitors::transition_raw_monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
////////////////////////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
// type for the Agent_OnAttach entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
  typedef jint (JNICALL *OnAttachEntry_t)(JavaVM*, char *, void *);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
jint JvmtiExport::load_agent_library(AttachOperation* op, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
  char ebuf[1024];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
  char buffer[JVM_MAXPATHLEN];
14471
f3a6b82e25cf 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 13728
diff changeset
  2206
  void* library = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
  jint result = JNI_ERR;
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2208
  const char *on_attach_symbols[] = AGENT_ONATTACH_SYMBOLS;
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2209
  size_t num_symbol_entries = ARRAY_SIZE(on_attach_symbols);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2211
  // get agent name and options
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
  const char* agent = op->arg(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
  const char* absParam = op->arg(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
  const char* options = op->arg(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
  // The abs paramter should be "true" or "false"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
  bool is_absolute_path = (absParam != NULL) && (strcmp(absParam,"true")==0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2219
  // Initially marked as invalid. It will be set to valid if we can find the agent
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2220
  AgentLibrary *agent_lib = new AgentLibrary(agent, options, is_absolute_path, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2222
  // Check for statically linked in agent. If not found then if the path is
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2223
  // absolute we attempt to load the library. Otherwise we try to load it
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2224
  // from the standard dll directory.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2226
  if (!os::find_builtin_agent(agent_lib, on_attach_symbols, num_symbol_entries)) {
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2227
    if (is_absolute_path) {
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2228
      library = os::dll_load(agent, ebuf, sizeof ebuf);
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2229
    } else {
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2230
      // Try to load the agent from the standard dll directory
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2231
      if (os::dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(),
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2232
                             agent)) {
14471
f3a6b82e25cf 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 13728
diff changeset
  2233
        library = os::dll_load(buffer, ebuf, sizeof ebuf);
f3a6b82e25cf 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 13728
diff changeset
  2234
      }
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2235
      if (library == NULL) {
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2236
        // not found - try local path
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2237
        char ns[1] = {0};
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2238
        if (os::dll_build_name(buffer, sizeof(buffer), ns, agent)) {
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2239
          library = os::dll_load(buffer, ebuf, sizeof ebuf);
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2240
        }
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2241
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
    }
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2243
    if (library != NULL) {
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2244
      agent_lib->set_os_lib(library);
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2245
      agent_lib->set_valid();
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2246
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
  // If the library was loaded then we attempt to invoke the Agent_OnAttach
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
  // function
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2250
  if (agent_lib->valid()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
    // Lookup the Agent_OnAttach function
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
    OnAttachEntry_t on_attach_entry = NULL;
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2253
    on_attach_entry = CAST_TO_FN_PTR(OnAttachEntry_t,
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2254
       os::find_agent_function(agent_lib, false, on_attach_symbols, num_symbol_entries));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
    if (on_attach_entry == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
      // Agent_OnAttach missing - unload library
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2257
      if (!agent_lib->is_static_lib()) {
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2258
        os::dll_unload(library);
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2259
      }
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2260
      delete agent_lib;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
      // Invoke the Agent_OnAttach function
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
      JavaThread* THREAD = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
        extern struct JavaVM_ main_vm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
        JvmtiThreadEventMark jem(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
        JvmtiJavaThreadEventTransition jet(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
        result = (*on_attach_entry)(&main_vm, (char*)options, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
      // Agent_OnAttach may have used JNI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
      if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
        CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
      // If OnAttach returns JNI_OK then we add it to the list of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
      // agent libraries so that we can call Agent_OnUnload later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
      if (result == JNI_OK) {
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2280
        Arguments::add_loaded_agent(agent_lib);
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2281
      } else {
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 18940
diff changeset
  2282
        delete agent_lib;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
      // Agent_OnAttach executed so completion status is JNI_OK
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
      st->print_cr("%d", result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
      result = JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
////////////////////////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
// Setup current current thread for event collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
void JvmtiEventCollector::setup_jvmti_thread_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
  // set this event collector to be the current one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
  JvmtiThreadState* state = JvmtiThreadState::state_for(JavaThread::current());
2135
f82c3012ec86 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 1374
diff changeset
  2299
  // state can only be NULL if the current thread is exiting which
f82c3012ec86 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 1374
diff changeset
  2300
  // should not happen since we're trying to configure for event collection
f82c3012ec86 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 1374
diff changeset
  2301
  guarantee(state != NULL, "exiting thread called setup_jvmti_thread_state");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
  if (is_vm_object_alloc_event()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
    _prev = state->get_vm_object_alloc_event_collector();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
    state->set_vm_object_alloc_event_collector((JvmtiVMObjectAllocEventCollector *)this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
  } else if (is_dynamic_code_event()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
    _prev = state->get_dynamic_code_event_collector();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
    state->set_dynamic_code_event_collector((JvmtiDynamicCodeEventCollector *)this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
// Unset current event collection in this thread and reset it with previous
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
// collector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
void JvmtiEventCollector::unset_jvmti_thread_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
  JvmtiThreadState* state = JavaThread::current()->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
  if (state != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
    // restore the previous event collector (if any)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
    if (is_vm_object_alloc_event()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
      if (state->get_vm_object_alloc_event_collector() == this) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
        state->set_vm_object_alloc_event_collector((JvmtiVMObjectAllocEventCollector *)_prev);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
        // this thread's jvmti state was created during the scope of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
        // the event collector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
      if (is_dynamic_code_event()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
        if (state->get_dynamic_code_event_collector() == this) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
          state->set_dynamic_code_event_collector((JvmtiDynamicCodeEventCollector *)_prev);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
          // this thread's jvmti state was created during the scope of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
          // the event collector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
// create the dynamic code event collector
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
JvmtiDynamicCodeEventCollector::JvmtiDynamicCodeEventCollector() : _code_blobs(NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
  if (JvmtiExport::should_post_dynamic_code_generated()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
    setup_jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
// iterate over any code blob descriptors collected and post a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
// DYNAMIC_CODE_GENERATED event to the profiler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
JvmtiDynamicCodeEventCollector::~JvmtiDynamicCodeEventCollector() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
  assert(!JavaThread::current()->owns_locks(), "all locks must be released to post deferred events");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
 // iterate over any code blob descriptors that we collected
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
 if (_code_blobs != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
   for (int i=0; i<_code_blobs->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
     JvmtiCodeBlobDesc* blob = _code_blobs->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
     JvmtiExport::post_dynamic_code_generated(blob->name(), blob->code_begin(), blob->code_end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
     FreeHeap(blob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
   delete _code_blobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
 }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
 unset_jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
// register a stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
void JvmtiDynamicCodeEventCollector::register_stub(const char* name, address start, address end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
 if (_code_blobs == NULL) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11399
diff changeset
  2363
   _code_blobs = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<JvmtiCodeBlobDesc*>(1,true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
 }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
 _code_blobs->append(new JvmtiCodeBlobDesc(name, start, end));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2366
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
// Setup current thread to record vm allocated objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2369
JvmtiVMObjectAllocEventCollector::JvmtiVMObjectAllocEventCollector() : _allocated(NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
  if (JvmtiExport::should_post_vm_object_alloc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
    _enable = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
    setup_jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
    _enable = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
// Post vm_object_alloc event for vm allocated objects visible to java
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
// world.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
JvmtiVMObjectAllocEventCollector::~JvmtiVMObjectAllocEventCollector() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
  if (_allocated != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
    set_enabled(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
    for (int i = 0; i < _allocated->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
      oop obj = _allocated->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
      if (ServiceUtil::visible_oop(obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
        JvmtiExport::post_vm_object_alloc(JavaThread::current(), obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
    delete _allocated;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
  unset_jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
void JvmtiVMObjectAllocEventCollector::record_allocation(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
  assert(is_enabled(), "VM object alloc event collector is not enabled");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
  if (_allocated == NULL) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11399
diff changeset
  2397
    _allocated = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<oop>(1, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
  _allocated->push(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
// GC support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
void JvmtiVMObjectAllocEventCollector::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
  if (_allocated != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
    for(int i=_allocated->length() - 1; i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
      if (_allocated->at(i) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
        f->do_oop(_allocated->adr_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2410
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
void JvmtiVMObjectAllocEventCollector::oops_do_for_all_threads(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
  // no-op if jvmti not enabled
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
  if (!JvmtiEnv::environments_might_exist()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2416
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2417
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2418
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
  // Runs at safepoint. So no need to acquire Threads_lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2420
  for (JavaThread *jthr = Threads::first(); jthr != NULL; jthr = jthr->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2421
    JvmtiThreadState *state = jthr->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2422
    if (state != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2423
      JvmtiVMObjectAllocEventCollector *collector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
      collector = state->get_vm_object_alloc_event_collector();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
      while (collector != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
        collector->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
        collector = (JvmtiVMObjectAllocEventCollector *)collector->get_prev();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
// Disable collection of VMObjectAlloc events
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
NoJvmtiVMObjectAllocMark::NoJvmtiVMObjectAllocMark() : _collector(NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2436
  // a no-op if VMObjectAlloc event is not enabled
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
  if (!JvmtiExport::should_post_vm_object_alloc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
  Thread* thread = ThreadLocalStorage::thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
  if (thread != NULL && thread->is_Java_thread())  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
    JavaThread* current_thread = (JavaThread*)thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
    JvmtiThreadState *state = current_thread->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
    if (state != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
      JvmtiVMObjectAllocEventCollector *collector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
      collector = state->get_vm_object_alloc_event_collector();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
      if (collector != NULL && collector->is_enabled()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
        _collector = collector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
        _collector->set_enabled(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
// Re-Enable collection of VMObjectAlloc events (if previously enabled)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
NoJvmtiVMObjectAllocMark::~NoJvmtiVMObjectAllocMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
  if (was_enabled()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
    _collector->set_enabled(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7413
diff changeset
  2462
JvmtiGCMarker::JvmtiGCMarker() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
  // if there aren't any JVMTI environments then nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
  if (!JvmtiEnv::environments_might_exist()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
  if (JvmtiExport::should_post_garbage_collection_start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
    JvmtiExport::post_garbage_collection_start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7413
diff changeset
  2472
  if (SafepointSynchronize::is_at_safepoint()) {
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7413
diff changeset
  2473
    // Do clean up tasks that need to be done at a safepoint
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7413
diff changeset
  2474
    JvmtiEnvBase::check_for_periodic_clean_up();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
JvmtiGCMarker::~JvmtiGCMarker() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
  // if there aren't any JVMTI environments then nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
  if (!JvmtiEnv::environments_might_exist()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2483
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
  // JVMTI notify gc finish
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2485
  if (JvmtiExport::should_post_garbage_collection_finish()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
    JvmtiExport::post_garbage_collection_finish();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2487
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
}