src/share/vm/prims/jvmtiImpl.cpp

Thu, 09 Dec 2010 15:04:26 -0500

author
kamg
date
Thu, 09 Dec 2010 15:04:26 -0500
changeset 2361
09b4dd4f152b
parent 2314
f95d63e2154a
child 2445
7246a374a9f2
permissions
-rw-r--r--

7004582: Add GetThisObject() function to JVMTI 1.2
Summary: Add 'GetThisObject' function
Reviewed-by: never, coleenp

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

mercurial