< prev index next >

src/hotspot/share/runtime/serviceThread.cpp

Print this page




   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  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/stringTable.hpp"

  27 #include "runtime/interfaceSupport.inline.hpp"
  28 #include "runtime/javaCalls.hpp"
  29 #include "runtime/serviceThread.hpp"
  30 #include "runtime/mutexLocker.hpp"
  31 #include "runtime/os.hpp"
  32 #include "prims/jvmtiImpl.hpp"
  33 #include "services/diagnosticArgument.hpp"
  34 #include "services/diagnosticFramework.hpp"
  35 #include "services/gcNotifier.hpp"
  36 #include "services/lowMemoryDetector.hpp"
  37 
  38 ServiceThread* ServiceThread::_instance = NULL;
  39 
  40 void ServiceThread::initialize() {
  41   EXCEPTION_MARK;
  42 
  43   const char* name = "Service Thread";
  44   Handle string = java_lang_String::create_from_str(name, CHECK);
  45 
  46   // Initialize thread_oop to put it into the system threadGroup


  67 
  68     java_lang_Thread::set_thread(thread_oop(), thread);
  69     java_lang_Thread::set_priority(thread_oop(), NearMaxPriority);
  70     java_lang_Thread::set_daemon(thread_oop());
  71     thread->set_threadObj(thread_oop());
  72     _instance = thread;
  73 
  74     Threads::add(thread);
  75     Thread::start(thread);
  76   }
  77 }
  78 
  79 void ServiceThread::service_thread_entry(JavaThread* jt, TRAPS) {
  80   while (true) {
  81     bool sensors_changed = false;
  82     bool has_jvmti_events = false;
  83     bool has_gc_notification_event = false;
  84     bool has_dcmd_notification_event = false;
  85     bool acs_notify = false;
  86     bool stringtable_work = false;

  87     JvmtiDeferredEvent jvmti_event;
  88     {
  89       // Need state transition ThreadBlockInVM so that this thread
  90       // will be handled by safepoint correctly when this thread is
  91       // notified at a safepoint.
  92 
  93       // This ThreadBlockInVM object is not also considered to be
  94       // suspend-equivalent because ServiceThread is not visible to
  95       // external suspension.
  96 
  97       ThreadBlockInVM tbivm(jt);
  98 
  99       MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
 100       while (!(sensors_changed = LowMemoryDetector::has_pending_requests()) &&
 101              !(has_jvmti_events = JvmtiDeferredEventQueue::has_events()) &&
 102               !(has_gc_notification_event = GCNotifier::has_event()) &&
 103               !(has_dcmd_notification_event = DCmdFactory::has_pending_jmx_notification()) &&
 104               !(stringtable_work = StringTable::has_work())) {

 105         // wait until one of the sensors has pending requests, or there is a
 106         // pending JVMTI event or JMX GC notification to post
 107         Service_lock->wait(Mutex::_no_safepoint_check_flag);
 108       }
 109 
 110       if (has_jvmti_events) {
 111         jvmti_event = JvmtiDeferredEventQueue::dequeue();
 112       }
 113     }
 114 
 115     if (stringtable_work) {
 116       StringTable::do_concurrent_work(jt);
 117     }
 118 




 119     if (has_jvmti_events) {
 120       jvmti_event.post();
 121     }
 122 
 123     if (sensors_changed) {
 124       LowMemoryDetector::process_sensor_changes(jt);
 125     }
 126 
 127     if(has_gc_notification_event) {
 128         GCNotifier::sendNotification(CHECK);
 129     }
 130 
 131     if(has_dcmd_notification_event) {
 132       DCmdFactory::send_notification(CHECK);
 133     }
 134   }
 135 }
 136 
 137 bool ServiceThread::is_service_thread(Thread* thread) {
 138   return thread == _instance;


   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  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/stringTable.hpp"
  27 #include "classfile/symbolTable.hpp"
  28 #include "runtime/interfaceSupport.inline.hpp"
  29 #include "runtime/javaCalls.hpp"
  30 #include "runtime/serviceThread.hpp"
  31 #include "runtime/mutexLocker.hpp"
  32 #include "runtime/os.hpp"
  33 #include "prims/jvmtiImpl.hpp"
  34 #include "services/diagnosticArgument.hpp"
  35 #include "services/diagnosticFramework.hpp"
  36 #include "services/gcNotifier.hpp"
  37 #include "services/lowMemoryDetector.hpp"
  38 
  39 ServiceThread* ServiceThread::_instance = NULL;
  40 
  41 void ServiceThread::initialize() {
  42   EXCEPTION_MARK;
  43 
  44   const char* name = "Service Thread";
  45   Handle string = java_lang_String::create_from_str(name, CHECK);
  46 
  47   // Initialize thread_oop to put it into the system threadGroup


  68 
  69     java_lang_Thread::set_thread(thread_oop(), thread);
  70     java_lang_Thread::set_priority(thread_oop(), NearMaxPriority);
  71     java_lang_Thread::set_daemon(thread_oop());
  72     thread->set_threadObj(thread_oop());
  73     _instance = thread;
  74 
  75     Threads::add(thread);
  76     Thread::start(thread);
  77   }
  78 }
  79 
  80 void ServiceThread::service_thread_entry(JavaThread* jt, TRAPS) {
  81   while (true) {
  82     bool sensors_changed = false;
  83     bool has_jvmti_events = false;
  84     bool has_gc_notification_event = false;
  85     bool has_dcmd_notification_event = false;
  86     bool acs_notify = false;
  87     bool stringtable_work = false;
  88     bool symboltable_work = false;
  89     JvmtiDeferredEvent jvmti_event;
  90     {
  91       // Need state transition ThreadBlockInVM so that this thread
  92       // will be handled by safepoint correctly when this thread is
  93       // notified at a safepoint.
  94 
  95       // This ThreadBlockInVM object is not also considered to be
  96       // suspend-equivalent because ServiceThread is not visible to
  97       // external suspension.
  98 
  99       ThreadBlockInVM tbivm(jt);
 100 
 101       MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
 102       while (!(sensors_changed = LowMemoryDetector::has_pending_requests()) &&
 103              !(has_jvmti_events = JvmtiDeferredEventQueue::has_events()) &&
 104               !(has_gc_notification_event = GCNotifier::has_event()) &&
 105               !(has_dcmd_notification_event = DCmdFactory::has_pending_jmx_notification()) &&
 106               !(stringtable_work = StringTable::has_work()) &&
 107               !(symboltable_work = SymbolTable::has_work())) {
 108         // wait until one of the sensors has pending requests, or there is a
 109         // pending JVMTI event or JMX GC notification to post
 110         Service_lock->wait(Mutex::_no_safepoint_check_flag);
 111       }
 112 
 113       if (has_jvmti_events) {
 114         jvmti_event = JvmtiDeferredEventQueue::dequeue();
 115       }
 116     }
 117 
 118     if (stringtable_work) {
 119       StringTable::do_concurrent_work(jt);
 120     }
 121 
 122     if (symboltable_work) {
 123       SymbolTable::do_concurrent_work(jt);
 124     }
 125 
 126     if (has_jvmti_events) {
 127       jvmti_event.post();
 128     }
 129 
 130     if (sensors_changed) {
 131       LowMemoryDetector::process_sensor_changes(jt);
 132     }
 133 
 134     if(has_gc_notification_event) {
 135         GCNotifier::sendNotification(CHECK);
 136     }
 137 
 138     if(has_dcmd_notification_event) {
 139       DCmdFactory::send_notification(CHECK);
 140     }
 141   }
 142 }
 143 
 144 bool ServiceThread::is_service_thread(Thread* thread) {
 145   return thread == _instance;
< prev index next >