src/share/vm/services/lowMemoryDetector.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6766644 Sdiff src/share/vm/services

src/share/vm/services/lowMemoryDetector.cpp

Print this page
rev 2029 : 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
Summary: Defer posting events from the compiler thread: use service thread
Reviewed-by:
* * *
   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  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/systemDictionary.hpp"
  27 #include "classfile/vmSymbols.hpp"
  28 #include "oops/oop.inline.hpp"
  29 #include "runtime/interfaceSupport.hpp"
  30 #include "runtime/java.hpp"
  31 #include "runtime/javaCalls.hpp"
  32 #include "runtime/mutex.hpp"
  33 #include "runtime/mutexLocker.hpp"
  34 #include "services/lowMemoryDetector.hpp"
  35 #include "services/management.hpp"
  36 
  37 LowMemoryDetectorThread* LowMemoryDetector::_detector_thread = NULL;
  38 volatile bool LowMemoryDetector::_enabled_for_collected_pools = false;
  39 volatile jint LowMemoryDetector::_disabled_count = 0;
  40 
  41 void LowMemoryDetector::initialize() {
  42   EXCEPTION_MARK;
  43 
  44   instanceKlassHandle klass (THREAD,  SystemDictionary::Thread_klass());
  45   instanceHandle thread_oop = klass->allocate_instance_handle(CHECK);
  46 
  47   const char thread_name[] = "Low Memory Detector";
  48   Handle string = java_lang_String::create_from_str(thread_name, CHECK);
  49 
  50   // Initialize thread_oop to put it into the system threadGroup
  51   Handle thread_group (THREAD, Universe::system_thread_group());
  52   JavaValue result(T_VOID);
  53   JavaCalls::call_special(&result, thread_oop,
  54                           klass,
  55                           vmSymbolHandles::object_initializer_name(),
  56                           vmSymbolHandles::threadgroup_string_void_signature(),
  57                           thread_group,
  58                           string,
  59                           CHECK);
  60 
  61   {
  62     MutexLocker mu(Threads_lock);
  63     _detector_thread = new LowMemoryDetectorThread(&low_memory_detector_thread_entry);
  64 
  65     // At this point it may be possible that no osthread was created for the
  66     // JavaThread due to lack of memory. We would have to throw an exception
  67     // in that case. However, since this must work and we do not allow
  68     // exceptions anyway, check and abort if this fails.
  69     if (_detector_thread == NULL || _detector_thread->osthread() == NULL) {
  70       vm_exit_during_initialization("java.lang.OutOfMemoryError",
  71                                     "unable to create new native thread");
  72     }
  73 
  74     java_lang_Thread::set_thread(thread_oop(), _detector_thread);
  75     java_lang_Thread::set_priority(thread_oop(), NearMaxPriority);
  76     java_lang_Thread::set_daemon(thread_oop());
  77     _detector_thread->set_threadObj(thread_oop());
  78 
  79     Threads::add(_detector_thread);
  80     Thread::start(_detector_thread);
  81   }
  82 }
  83 
  84 bool LowMemoryDetector::has_pending_requests() {
  85   assert(LowMemory_lock->owned_by_self(), "Must own LowMemory_lock");
  86   bool has_requests = false;
  87   int num_memory_pools = MemoryService::num_memory_pools();
  88   for (int i = 0; i < num_memory_pools; i++) {
  89     MemoryPool* pool = MemoryService::get_memory_pool(i);
  90     SensorInfo* sensor = pool->usage_sensor();
  91     if (sensor != NULL) {
  92       has_requests = has_requests || sensor->has_pending_requests();
  93     }
  94 
  95     SensorInfo* gc_sensor = pool->gc_usage_sensor();
  96     if (gc_sensor != NULL) {
  97       has_requests = has_requests || gc_sensor->has_pending_requests();
  98     }
  99   }
 100   return has_requests;
 101 }
 102 
 103 void LowMemoryDetector::low_memory_detector_thread_entry(JavaThread* jt, TRAPS) {
 104   while (true) {
 105     bool   sensors_changed = false;
 106 
 107     {
 108       // _no_safepoint_check_flag is used here as LowMemory_lock is a
 109       // special lock and the VMThread may acquire this lock at safepoint.
 110       // Need state transition ThreadBlockInVM so that this thread
 111       // will be handled by safepoint correctly when this thread is
 112       // notified at a safepoint.
 113 
 114       // This ThreadBlockInVM object is not also considered to be
 115       // suspend-equivalent because LowMemoryDetector threads are
 116       // not visible to external suspension.
 117 
 118       ThreadBlockInVM tbivm(jt);
 119 
 120       MutexLockerEx ml(LowMemory_lock, Mutex::_no_safepoint_check_flag);
 121       while (!(sensors_changed = has_pending_requests())) {
 122         // wait until one of the sensors has pending requests
 123         LowMemory_lock->wait(Mutex::_no_safepoint_check_flag);
 124       }
 125     }
 126 
 127     {
 128       ResourceMark rm(THREAD);
 129       HandleMark hm(THREAD);
 130 
 131       // No need to hold LowMemory_lock to call out to Java
 132       int num_memory_pools = MemoryService::num_memory_pools();
 133       for (int i = 0; i < num_memory_pools; i++) {
 134         MemoryPool* pool = MemoryService::get_memory_pool(i);
 135         SensorInfo* sensor = pool->usage_sensor();
 136         SensorInfo* gc_sensor = pool->gc_usage_sensor();
 137         if (sensor != NULL && sensor->has_pending_requests()) {
 138           sensor->process_pending_requests(CHECK);
 139         }
 140         if (gc_sensor != NULL && gc_sensor->has_pending_requests()) {
 141           gc_sensor->process_pending_requests(CHECK);
 142         }
 143       }
 144     }
 145   }
 146 }
 147 
 148 // This method could be called from any Java threads
 149 // and also VMThread.
 150 void LowMemoryDetector::detect_low_memory() {
 151   MutexLockerEx ml(LowMemory_lock, Mutex::_no_safepoint_check_flag);
 152 
 153   bool has_pending_requests = false;
 154   int num_memory_pools = MemoryService::num_memory_pools();
 155   for (int i = 0; i < num_memory_pools; i++) {
 156     MemoryPool* pool = MemoryService::get_memory_pool(i);
 157     SensorInfo* sensor = pool->usage_sensor();
 158     if (sensor != NULL &&
 159         pool->usage_threshold()->is_high_threshold_supported() &&
 160         pool->usage_threshold()->high_threshold() != 0) {
 161       MemoryUsage usage = pool->get_memory_usage();
 162       sensor->set_gauge_sensor_level(usage,
 163                                      pool->usage_threshold());
 164       has_pending_requests = has_pending_requests || sensor->has_pending_requests();
 165     }
 166   }
 167 
 168   if (has_pending_requests) {
 169     LowMemory_lock->notify_all();
 170   }
 171 }
 172 
 173 // This method could be called from any Java threads
 174 // and also VMThread.
 175 void LowMemoryDetector::detect_low_memory(MemoryPool* pool) {
 176   SensorInfo* sensor = pool->usage_sensor();
 177   if (sensor == NULL ||
 178       !pool->usage_threshold()->is_high_threshold_supported() ||
 179       pool->usage_threshold()->high_threshold() == 0) {
 180     return;
 181   }
 182 
 183   {
 184     MutexLockerEx ml(LowMemory_lock, Mutex::_no_safepoint_check_flag);
 185 
 186     MemoryUsage usage = pool->get_memory_usage();
 187     sensor->set_gauge_sensor_level(usage,
 188                                    pool->usage_threshold());
 189     if (sensor->has_pending_requests()) {
 190       // notify sensor state update
 191       LowMemory_lock->notify_all();
 192     }
 193   }
 194 }
 195 
 196 // Only called by VMThread at GC time
 197 void LowMemoryDetector::detect_after_gc_memory(MemoryPool* pool) {
 198   SensorInfo* sensor = pool->gc_usage_sensor();
 199   if (sensor == NULL ||
 200       !pool->gc_usage_threshold()->is_high_threshold_supported() ||
 201       pool->gc_usage_threshold()->high_threshold() == 0) {
 202     return;
 203   }
 204 
 205   {
 206     MutexLockerEx ml(LowMemory_lock, Mutex::_no_safepoint_check_flag);
 207 
 208     MemoryUsage usage = pool->get_last_collection_usage();
 209     sensor->set_counter_sensor_level(usage, pool->gc_usage_threshold());
 210 
 211     if (sensor->has_pending_requests()) {
 212       // notify sensor state update
 213       LowMemory_lock->notify_all();
 214     }
 215   }
 216 }
 217 
 218 // recompute enabled flag
 219 void LowMemoryDetector::recompute_enabled_for_collected_pools() {
 220   bool enabled = false;
 221   int num_memory_pools = MemoryService::num_memory_pools();
 222   for (int i=0; i<num_memory_pools; i++) {
 223     MemoryPool* pool = MemoryService::get_memory_pool(i);
 224     if (pool->is_collected_pool() && is_enabled(pool)) {
 225       enabled = true;
 226       break;
 227     }
 228   }
 229   _enabled_for_collected_pools = enabled;
 230 }
 231 
 232 SensorInfo::SensorInfo() {
 233   _sensor_obj = NULL;


 367   if (_sensor_obj != NULL) {
 368     klassOop k = Management::sun_management_Sensor_klass(CHECK);
 369     instanceKlassHandle sensorKlass (THREAD, k);
 370     Handle sensor_h(THREAD, _sensor_obj);
 371     Handle usage_h = MemoryService::create_MemoryUsage_obj(_usage, CHECK);
 372 
 373     JavaValue result(T_VOID);
 374     JavaCallArguments args(sensor_h);
 375     args.push_int((int) count);
 376     args.push_oop(usage_h);
 377 
 378     JavaCalls::call_virtual(&result,
 379                             sensorKlass,
 380                             vmSymbolHandles::trigger_name(),
 381                             vmSymbolHandles::trigger_method_signature(),
 382                             &args,
 383                             CHECK);
 384   }
 385 
 386   {
 387     // Holds LowMemory_lock and update the sensor state
 388     MutexLockerEx ml(LowMemory_lock, Mutex::_no_safepoint_check_flag);
 389     _sensor_on = true;
 390     _sensor_count += count;
 391     _pending_trigger_count = _pending_trigger_count - count;
 392   }
 393 }
 394 
 395 void SensorInfo::clear(int count, TRAPS) {
 396   if (_sensor_obj != NULL) {
 397     klassOop k = Management::sun_management_Sensor_klass(CHECK);
 398     instanceKlassHandle sensorKlass (THREAD, k);
 399     Handle sensor(THREAD, _sensor_obj);
 400 
 401     JavaValue result(T_VOID);
 402     JavaCallArguments args(sensor);
 403     args.push_int((int) count);
 404     JavaCalls::call_virtual(&result,
 405                             sensorKlass,
 406                             vmSymbolHandles::clear_name(),
 407                             vmSymbolHandles::int_void_signature(),
 408                             &args,
 409                             CHECK);
 410   }
 411 
 412   {
 413     // Holds LowMemory_lock and update the sensor state
 414     MutexLockerEx ml(LowMemory_lock, Mutex::_no_safepoint_check_flag);
 415     _sensor_on = false;
 416     _pending_clear_count = 0;
 417     _pending_trigger_count = _pending_trigger_count - count;
 418   }
 419 }
 420 
 421 //--------------------------------------------------------------
 422 // Non-product code
 423 
 424 #ifndef PRODUCT
 425 void SensorInfo::print() {
 426   tty->print_cr("%s count = %ld pending_triggers = %ld pending_clears = %ld",
 427                 (_sensor_on ? "on" : "off"),
 428                 _sensor_count, _pending_trigger_count, _pending_clear_count);
 429 }
 430 
 431 #endif // PRODUCT
   1 /*
   2  * Copyright (c) 2003, 2011, 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  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/systemDictionary.hpp"
  27 #include "classfile/vmSymbols.hpp"
  28 #include "oops/oop.inline.hpp"
  29 #include "runtime/interfaceSupport.hpp"
  30 #include "runtime/java.hpp"
  31 #include "runtime/javaCalls.hpp"
  32 #include "runtime/mutex.hpp"
  33 #include "runtime/mutexLocker.hpp"
  34 #include "services/lowMemoryDetector.hpp"
  35 #include "services/management.hpp"
  36 

  37 volatile bool LowMemoryDetector::_enabled_for_collected_pools = false;
  38 volatile jint LowMemoryDetector::_disabled_count = 0;
  39 











































  40 bool LowMemoryDetector::has_pending_requests() {
  41   assert(Service_lock->owned_by_self(), "Must own Service_lock");
  42   bool has_requests = false;
  43   int num_memory_pools = MemoryService::num_memory_pools();
  44   for (int i = 0; i < num_memory_pools; i++) {
  45     MemoryPool* pool = MemoryService::get_memory_pool(i);
  46     SensorInfo* sensor = pool->usage_sensor();
  47     if (sensor != NULL) {
  48       has_requests = has_requests || sensor->has_pending_requests();
  49     }
  50 
  51     SensorInfo* gc_sensor = pool->gc_usage_sensor();
  52     if (gc_sensor != NULL) {
  53       has_requests = has_requests || gc_sensor->has_pending_requests();
  54     }
  55   }
  56   return has_requests;
  57 }
  58 
  59 void LowMemoryDetector::process_sensor_changes(TRAPS) {
























  60   ResourceMark rm(THREAD);
  61   HandleMark hm(THREAD);
  62 
  63   // No need to hold Service_lock to call out to Java
  64   int num_memory_pools = MemoryService::num_memory_pools();
  65   for (int i = 0; i < num_memory_pools; i++) {
  66     MemoryPool* pool = MemoryService::get_memory_pool(i);
  67     SensorInfo* sensor = pool->usage_sensor();
  68     SensorInfo* gc_sensor = pool->gc_usage_sensor();
  69     if (sensor != NULL && sensor->has_pending_requests()) {
  70       sensor->process_pending_requests(CHECK);
  71     }
  72     if (gc_sensor != NULL && gc_sensor->has_pending_requests()) {
  73       gc_sensor->process_pending_requests(CHECK);
  74     }
  75   }


  76 }
  77 
  78 // This method could be called from any Java threads
  79 // and also VMThread.
  80 void LowMemoryDetector::detect_low_memory() {
  81   MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
  82 
  83   bool has_pending_requests = false;
  84   int num_memory_pools = MemoryService::num_memory_pools();
  85   for (int i = 0; i < num_memory_pools; i++) {
  86     MemoryPool* pool = MemoryService::get_memory_pool(i);
  87     SensorInfo* sensor = pool->usage_sensor();
  88     if (sensor != NULL &&
  89         pool->usage_threshold()->is_high_threshold_supported() &&
  90         pool->usage_threshold()->high_threshold() != 0) {
  91       MemoryUsage usage = pool->get_memory_usage();
  92       sensor->set_gauge_sensor_level(usage,
  93                                      pool->usage_threshold());
  94       has_pending_requests = has_pending_requests || sensor->has_pending_requests();
  95     }
  96   }
  97 
  98   if (has_pending_requests) {
  99     Service_lock->notify_all();
 100   }
 101 }
 102 
 103 // This method could be called from any Java threads
 104 // and also VMThread.
 105 void LowMemoryDetector::detect_low_memory(MemoryPool* pool) {
 106   SensorInfo* sensor = pool->usage_sensor();
 107   if (sensor == NULL ||
 108       !pool->usage_threshold()->is_high_threshold_supported() ||
 109       pool->usage_threshold()->high_threshold() == 0) {
 110     return;
 111   }
 112 
 113   {
 114     MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
 115 
 116     MemoryUsage usage = pool->get_memory_usage();
 117     sensor->set_gauge_sensor_level(usage,
 118                                    pool->usage_threshold());
 119     if (sensor->has_pending_requests()) {
 120       // notify sensor state update
 121       Service_lock->notify_all();
 122     }
 123   }
 124 }
 125 
 126 // Only called by VMThread at GC time
 127 void LowMemoryDetector::detect_after_gc_memory(MemoryPool* pool) {
 128   SensorInfo* sensor = pool->gc_usage_sensor();
 129   if (sensor == NULL ||
 130       !pool->gc_usage_threshold()->is_high_threshold_supported() ||
 131       pool->gc_usage_threshold()->high_threshold() == 0) {
 132     return;
 133   }
 134 
 135   {
 136     MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
 137 
 138     MemoryUsage usage = pool->get_last_collection_usage();
 139     sensor->set_counter_sensor_level(usage, pool->gc_usage_threshold());
 140 
 141     if (sensor->has_pending_requests()) {
 142       // notify sensor state update
 143       Service_lock->notify_all();
 144     }
 145   }
 146 }
 147 
 148 // recompute enabled flag
 149 void LowMemoryDetector::recompute_enabled_for_collected_pools() {
 150   bool enabled = false;
 151   int num_memory_pools = MemoryService::num_memory_pools();
 152   for (int i=0; i<num_memory_pools; i++) {
 153     MemoryPool* pool = MemoryService::get_memory_pool(i);
 154     if (pool->is_collected_pool() && is_enabled(pool)) {
 155       enabled = true;
 156       break;
 157     }
 158   }
 159   _enabled_for_collected_pools = enabled;
 160 }
 161 
 162 SensorInfo::SensorInfo() {
 163   _sensor_obj = NULL;


 297   if (_sensor_obj != NULL) {
 298     klassOop k = Management::sun_management_Sensor_klass(CHECK);
 299     instanceKlassHandle sensorKlass (THREAD, k);
 300     Handle sensor_h(THREAD, _sensor_obj);
 301     Handle usage_h = MemoryService::create_MemoryUsage_obj(_usage, CHECK);
 302 
 303     JavaValue result(T_VOID);
 304     JavaCallArguments args(sensor_h);
 305     args.push_int((int) count);
 306     args.push_oop(usage_h);
 307 
 308     JavaCalls::call_virtual(&result,
 309                             sensorKlass,
 310                             vmSymbolHandles::trigger_name(),
 311                             vmSymbolHandles::trigger_method_signature(),
 312                             &args,
 313                             CHECK);
 314   }
 315 
 316   {
 317     // Holds Service_lock and update the sensor state
 318     MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
 319     _sensor_on = true;
 320     _sensor_count += count;
 321     _pending_trigger_count = _pending_trigger_count - count;
 322   }
 323 }
 324 
 325 void SensorInfo::clear(int count, TRAPS) {
 326   if (_sensor_obj != NULL) {
 327     klassOop k = Management::sun_management_Sensor_klass(CHECK);
 328     instanceKlassHandle sensorKlass (THREAD, k);
 329     Handle sensor(THREAD, _sensor_obj);
 330 
 331     JavaValue result(T_VOID);
 332     JavaCallArguments args(sensor);
 333     args.push_int((int) count);
 334     JavaCalls::call_virtual(&result,
 335                             sensorKlass,
 336                             vmSymbolHandles::clear_name(),
 337                             vmSymbolHandles::int_void_signature(),
 338                             &args,
 339                             CHECK);
 340   }
 341 
 342   {
 343     // Holds Service_lock and update the sensor state
 344     MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
 345     _sensor_on = false;
 346     _pending_clear_count = 0;
 347     _pending_trigger_count = _pending_trigger_count - count;
 348   }
 349 }
 350 
 351 //--------------------------------------------------------------
 352 // Non-product code
 353 
 354 #ifndef PRODUCT
 355 void SensorInfo::print() {
 356   tty->print_cr("%s count = %ld pending_triggers = %ld pending_clears = %ld",
 357                 (_sensor_on ? "on" : "off"),
 358                 _sensor_count, _pending_trigger_count, _pending_clear_count);
 359 }
 360 
 361 #endif // PRODUCT
src/share/vm/services/lowMemoryDetector.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File