1 /*
   2  * Copyright (c) 1997, 2014, 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 "code/codeCache.hpp"
  27 #include "code/compiledIC.hpp"
  28 #include "code/icBuffer.hpp"
  29 #include "code/nmethod.hpp"
  30 #include "compiler/compileBroker.hpp"
  31 #include "memory/resourceArea.hpp"
  32 #include "oops/method.hpp"
  33 #include "runtime/atomic.inline.hpp"
  34 #include "runtime/compilationPolicy.hpp"
  35 #include "runtime/mutexLocker.hpp"
  36 #include "runtime/orderAccess.inline.hpp"
  37 #include "runtime/os.hpp"
  38 #include "runtime/sweeper.hpp"
  39 #include "runtime/thread.inline.hpp"
  40 #include "runtime/vm_operations.hpp"
  41 #include "trace/tracing.hpp"
  42 #include "utilities/events.hpp"
  43 #include "utilities/ticks.inline.hpp"
  44 #include "utilities/xmlstream.hpp"
  45 
  46 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
  47 
  48 #ifdef ASSERT
  49 
  50 #define SWEEP(nm) record_sweep(nm, __LINE__)
  51 // Sweeper logging code
  52 class SweeperRecord {
  53  public:
  54   int traversal;
  55   int invocation;
  56   int compile_id;
  57   long traversal_mark;
  58   int state;
  59   const char* kind;
  60   address vep;
  61   address uep;
  62   int line;
  63 
  64   void print() {
  65       tty->print_cr("traversal = %d invocation = %d compile_id = %d %s uep = " PTR_FORMAT " vep = "
  66                     PTR_FORMAT " state = %d traversal_mark %d line = %d",
  67                     traversal,
  68                     invocation,
  69                     compile_id,
  70                     kind == NULL ? "" : kind,
  71                     uep,
  72                     vep,
  73                     state,
  74                     traversal_mark,
  75                     line);
  76   }
  77 };
  78 
  79 static int _sweep_index = 0;
  80 static SweeperRecord* _records = NULL;
  81 
  82 void NMethodSweeper::report_events(int id, address entry) {
  83   if (_records != NULL) {
  84     for (int i = _sweep_index; i < SweeperLogEntries; i++) {
  85       if (_records[i].uep == entry ||
  86           _records[i].vep == entry ||
  87           _records[i].compile_id == id) {
  88         _records[i].print();
  89       }
  90     }
  91     for (int i = 0; i < _sweep_index; i++) {
  92       if (_records[i].uep == entry ||
  93           _records[i].vep == entry ||
  94           _records[i].compile_id == id) {
  95         _records[i].print();
  96       }
  97     }
  98   }
  99 }
 100 
 101 void NMethodSweeper::report_events() {
 102   if (_records != NULL) {
 103     for (int i = _sweep_index; i < SweeperLogEntries; i++) {
 104       // skip empty records
 105       if (_records[i].vep == NULL) continue;
 106       _records[i].print();
 107     }
 108     for (int i = 0; i < _sweep_index; i++) {
 109       // skip empty records
 110       if (_records[i].vep == NULL) continue;
 111       _records[i].print();
 112     }
 113   }
 114 }
 115 
 116 void NMethodSweeper::record_sweep(nmethod* nm, int line) {
 117   if (_records != NULL) {
 118     _records[_sweep_index].traversal = _traversals;
 119     _records[_sweep_index].traversal_mark = nm->_stack_traversal_mark;
 120     _records[_sweep_index].invocation = _sweep_fractions_left;
 121     _records[_sweep_index].compile_id = nm->compile_id();
 122     _records[_sweep_index].kind = nm->compile_kind();
 123     _records[_sweep_index].state = nm->_state;
 124     _records[_sweep_index].vep = nm->verified_entry_point();
 125     _records[_sweep_index].uep = nm->entry_point();
 126     _records[_sweep_index].line = line;
 127     _sweep_index = (_sweep_index + 1) % SweeperLogEntries;
 128   }
 129 }
 130 #else
 131 #define SWEEP(nm)
 132 #endif
 133 
 134 nmethod* NMethodSweeper::_current                      = NULL; // Current nmethod
 135 long     NMethodSweeper::_traversals                   = 0;    // Stack scan count, also sweep ID.
 136 long     NMethodSweeper::_total_nof_code_cache_sweeps  = 0;    // Total number of full sweeps of the code cache
 137 long     NMethodSweeper::_time_counter                 = 0;    // Virtual time used to periodically invoke sweeper
 138 long     NMethodSweeper::_last_sweep                   = 0;    // Value of _time_counter when the last sweep happened
 139 int      NMethodSweeper::_seen                         = 0;    // Nof. nmethod we have currently processed in current pass of CodeCache
 140 int      NMethodSweeper::_flushed_count                = 0;    // Nof. nmethods flushed in current sweep
 141 int      NMethodSweeper::_zombified_count              = 0;    // Nof. nmethods made zombie in current sweep
 142 int      NMethodSweeper::_marked_for_reclamation_count = 0;    // Nof. nmethods marked for reclaim in current sweep
 143 
 144 volatile bool NMethodSweeper::_should_sweep            = true; // Indicates if we should invoke the sweeper
 145 volatile int  NMethodSweeper::_sweep_fractions_left    = 0;    // Nof. invocations left until we are completed with this pass
 146 volatile int  NMethodSweeper::_sweep_started           = 0;    // Flag to control conc sweeper
 147 volatile int  NMethodSweeper::_bytes_changed           = 0;    // Counts the total nmethod size if the nmethod changed from:
 148                                                                //   1) alive       -> not_entrant
 149                                                                //   2) not_entrant -> zombie
 150                                                                //   3) zombie      -> marked_for_reclamation
 151 int    NMethodSweeper::_hotness_counter_reset_val       = 0;
 152 
 153 long   NMethodSweeper::_total_nof_methods_reclaimed     = 0;    // Accumulated nof methods flushed
 154 long   NMethodSweeper::_total_nof_c2_methods_reclaimed  = 0;    // Accumulated nof methods flushed
 155 size_t NMethodSweeper::_total_flushed_size              = 0;    // Total number of bytes flushed from the code cache
 156 Tickspan  NMethodSweeper::_total_time_sweeping;                 // Accumulated time sweeping
 157 Tickspan  NMethodSweeper::_total_time_this_sweep;               // Total time this sweep
 158 Tickspan  NMethodSweeper::_peak_sweep_time;                     // Peak time for a full sweep
 159 Tickspan  NMethodSweeper::_peak_sweep_fraction_time;            // Peak time sweeping one fraction
 160 
 161 
 162 
 163 class MarkActivationClosure: public CodeBlobClosure {
 164 public:
 165   virtual void do_code_blob(CodeBlob* cb) {
 166     if (cb->is_nmethod()) {
 167       nmethod* nm = (nmethod*)cb;
 168       nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
 169       // If we see an activation belonging to a non_entrant nmethod, we mark it.
 170       if (nm->is_not_entrant()) {
 171         nm->mark_as_seen_on_stack();
 172       }
 173     }
 174   }
 175 };
 176 static MarkActivationClosure mark_activation_closure;
 177 
 178 class SetHotnessClosure: public CodeBlobClosure {
 179 public:
 180   virtual void do_code_blob(CodeBlob* cb) {
 181     if (cb->is_nmethod()) {
 182       nmethod* nm = (nmethod*)cb;
 183       nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
 184     }
 185   }
 186 };
 187 static SetHotnessClosure set_hotness_closure;
 188 
 189 
 190 int NMethodSweeper::hotness_counter_reset_val() {
 191   if (_hotness_counter_reset_val == 0) {
 192     _hotness_counter_reset_val = (ReservedCodeCacheSize < M) ? 1 : (ReservedCodeCacheSize / M) * 2;
 193   }
 194   return _hotness_counter_reset_val;
 195 }
 196 bool NMethodSweeper::sweep_in_progress() {
 197   return (_current != NULL);
 198 }
 199 
 200 // Scans the stacks of all Java threads and marks activations of not-entrant methods.
 201 // No need to synchronize access, since 'mark_active_nmethods' is always executed at a
 202 // safepoint.
 203 void NMethodSweeper::mark_active_nmethods() {
 204   assert(SafepointSynchronize::is_at_safepoint(), "must be executed at a safepoint");
 205   // If we do not want to reclaim not-entrant or zombie methods there is no need
 206   // to scan stacks
 207   if (!MethodFlushing) {
 208     return;
 209   }
 210 
 211   // Increase time so that we can estimate when to invoke the sweeper again.
 212   _time_counter++;
 213 
 214   // Check for restart
 215   assert(CodeCache::find_blob_unsafe(_current) == _current, "Sweeper nmethod cached state invalid");
 216   if (!sweep_in_progress()) {
 217     _seen = 0;
 218     _sweep_fractions_left = NmethodSweepFraction;
 219     _current = CodeCache::first_nmethod();
 220     _traversals += 1;
 221     _total_time_this_sweep = Tickspan();
 222 
 223     if (PrintMethodFlushing) {
 224       tty->print_cr("### Sweep: stack traversal %d", _traversals);
 225     }
 226     Threads::nmethods_do(&mark_activation_closure);
 227 
 228   } else {
 229     // Only set hotness counter
 230     Threads::nmethods_do(&set_hotness_closure);
 231   }
 232 
 233   OrderAccess::storestore();
 234 }
 235 /**
 236  * This function invokes the sweeper if at least one of the three conditions is met:
 237  *    (1) The code cache is getting full
 238  *    (2) There are sufficient state changes in/since the last sweep.
 239  *    (3) We have not been sweeping for 'some time'
 240  */
 241 void NMethodSweeper::possibly_sweep() {
 242   assert(JavaThread::current()->thread_state() == _thread_in_vm, "must run in vm mode");
 243   // Only compiler threads are allowed to sweep
 244   if (!MethodFlushing || !sweep_in_progress() || !Thread::current()->is_Compiler_thread()) {
 245     return;
 246   }
 247 
 248   // If there was no state change while nmethod sweeping, 'should_sweep' will be false.
 249   // This is one of the two places where should_sweep can be set to true. The general
 250   // idea is as follows: If there is enough free space in the code cache, there is no
 251   // need to invoke the sweeper. The following formula (which determines whether to invoke
 252   // the sweeper or not) depends on the assumption that for larger ReservedCodeCacheSizes
 253   // we need less frequent sweeps than for smaller ReservedCodecCacheSizes. Furthermore,
 254   // the formula considers how much space in the code cache is currently used. Here are
 255   // some examples that will (hopefully) help in understanding.
 256   //
 257   // Small ReservedCodeCacheSizes:  (e.g., < 16M) We invoke the sweeper every time, since
 258   //                                              the result of the division is 0. This
 259   //                                              keeps the used code cache size small
 260   //                                              (important for embedded Java)
 261   // Large ReservedCodeCacheSize :  (e.g., 256M + code cache is 10% full). The formula
 262   //                                              computes: (256 / 16) - 1 = 15
 263   //                                              As a result, we invoke the sweeper after
 264   //                                              15 invocations of 'mark_active_nmethods.
 265   // Large ReservedCodeCacheSize:   (e.g., 256M + code Cache is 90% full). The formula
 266   //                                              computes: (256 / 16) - 10 = 6.
 267   if (!_should_sweep) {
 268     const int time_since_last_sweep = _time_counter - _last_sweep;
 269     // ReservedCodeCacheSize has an 'unsigned' type. We need a 'signed' type for max_wait_time,
 270     // since 'time_since_last_sweep' can be larger than 'max_wait_time'. If that happens using
 271     // an unsigned type would cause an underflow (wait_until_next_sweep becomes a large positive
 272     // value) that disables the intended periodic sweeps.
 273     const int max_wait_time = ReservedCodeCacheSize / (16 * M);
 274     double wait_until_next_sweep = max_wait_time - time_since_last_sweep - CodeCache::reverse_free_ratio();
 275     assert(wait_until_next_sweep <= (double)max_wait_time, "Calculation of code cache sweeper interval is incorrect");
 276 
 277     if ((wait_until_next_sweep <= 0.0) || !CompileBroker::should_compile_new_jobs()) {
 278       _should_sweep = true;
 279     }
 280   }
 281 
 282   if (_should_sweep && _sweep_fractions_left > 0) {
 283     // Only one thread at a time will sweep
 284     jint old = Atomic::cmpxchg( 1, &_sweep_started, 0 );
 285     if (old != 0) {
 286       return;
 287     }
 288 #ifdef ASSERT
 289     if (LogSweeper && _records == NULL) {
 290       // Create the ring buffer for the logging code
 291       _records = NEW_C_HEAP_ARRAY(SweeperRecord, SweeperLogEntries, mtGC);
 292       memset(_records, 0, sizeof(SweeperRecord) * SweeperLogEntries);
 293     }
 294 #endif
 295 
 296     if (_sweep_fractions_left > 0) {
 297       sweep_code_cache();
 298       _sweep_fractions_left--;
 299     }
 300 
 301     // We are done with sweeping the code cache once.
 302     if (_sweep_fractions_left == 0) {
 303       _total_nof_code_cache_sweeps++;
 304       _last_sweep = _time_counter;
 305       // Reset flag; temporarily disables sweeper
 306       _should_sweep = false;
 307       // If there was enough state change, 'possibly_enable_sweeper()'
 308       // sets '_should_sweep' to true
 309       possibly_enable_sweeper();
 310       // Reset _bytes_changed only if there was enough state change. _bytes_changed
 311       // can further increase by calls to 'report_state_change'.
 312       if (_should_sweep) {
 313         _bytes_changed = 0;
 314       }
 315     }
 316     // Release work, because another compiler thread could continue.
 317     OrderAccess::release_store((int*)&_sweep_started, 0);
 318   }
 319 }
 320 
 321 void NMethodSweeper::sweep_code_cache() {
 322   Ticks sweep_start_counter = Ticks::now();
 323 
 324   _flushed_count                = 0;
 325   _zombified_count              = 0;
 326   _marked_for_reclamation_count = 0;
 327 
 328   if (PrintMethodFlushing && Verbose) {
 329     tty->print_cr("### Sweep at %d out of %d. Invocations left: %d", _seen, CodeCache::nof_nmethods(), _sweep_fractions_left);
 330   }
 331 
 332   if (!CompileBroker::should_compile_new_jobs()) {
 333     // If we have turned off compilations we might as well do full sweeps
 334     // in order to reach the clean state faster. Otherwise the sleeping compiler
 335     // threads will slow down sweeping.
 336     _sweep_fractions_left = 1;
 337   }
 338 
 339   // We want to visit all nmethods after NmethodSweepFraction
 340   // invocations so divide the remaining number of nmethods by the
 341   // remaining number of invocations.  This is only an estimate since
 342   // the number of nmethods changes during the sweep so the final
 343   // stage must iterate until it there are no more nmethods.
 344   int todo = (CodeCache::nof_nmethods() - _seen) / _sweep_fractions_left;
 345   int swept_count = 0;
 346 
 347 
 348   assert(!SafepointSynchronize::is_at_safepoint(), "should not be in safepoint when we get here");
 349   assert(!CodeCache_lock->owned_by_self(), "just checking");
 350 
 351   int freed_memory = 0;
 352   {
 353     MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
 354 
 355     // The last invocation iterates until there are no more nmethods
 356     for (int i = 0; (i < todo || _sweep_fractions_left == 1) && _current != NULL; i++) {
 357       swept_count++;
 358       if (SafepointSynchronize::is_synchronizing()) { // Safepoint request
 359         if (PrintMethodFlushing && Verbose) {
 360           tty->print_cr("### Sweep at %d out of %d, invocation: %d, yielding to safepoint", _seen, CodeCache::nof_nmethods(), _sweep_fractions_left);
 361         }
 362         MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
 363 
 364         assert(Thread::current()->is_Java_thread(), "should be java thread");
 365         JavaThread* thread = (JavaThread*)Thread::current();
 366         ThreadBlockInVM tbivm(thread);
 367         thread->java_suspend_self();
 368       }
 369       // Since we will give up the CodeCache_lock, always skip ahead
 370       // to the next nmethod.  Other blobs can be deleted by other
 371       // threads but nmethods are only reclaimed by the sweeper.
 372       nmethod* next = CodeCache::next_nmethod(_current);
 373 
 374       // Now ready to process nmethod and give up CodeCache_lock
 375       {
 376         MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
 377         freed_memory += process_nmethod(_current);
 378       }
 379       _seen++;
 380       _current = next;
 381     }
 382   }
 383 
 384   assert(_sweep_fractions_left > 1 || _current == NULL, "must have scanned the whole cache");
 385 
 386   const Ticks sweep_end_counter = Ticks::now();
 387   const Tickspan sweep_time = sweep_end_counter - sweep_start_counter;
 388   _total_time_sweeping  += sweep_time;
 389   _total_time_this_sweep += sweep_time;
 390   _peak_sweep_fraction_time = MAX2(sweep_time, _peak_sweep_fraction_time);
 391   _total_flushed_size += freed_memory;
 392   _total_nof_methods_reclaimed += _flushed_count;
 393 
 394   EventSweepCodeCache event(UNTIMED);
 395   if (event.should_commit()) {
 396     event.set_starttime(sweep_start_counter);
 397     event.set_endtime(sweep_end_counter);
 398     event.set_sweepIndex(_traversals);
 399     event.set_sweepFractionIndex(NmethodSweepFraction - _sweep_fractions_left + 1);
 400     event.set_sweptCount(swept_count);
 401     event.set_flushedCount(_flushed_count);
 402     event.set_markedCount(_marked_for_reclamation_count);
 403     event.set_zombifiedCount(_zombified_count);
 404     event.commit();
 405   }
 406 
 407 #ifdef ASSERT
 408   if(PrintMethodFlushing) {
 409     tty->print_cr("### sweeper:      sweep time(%d): "
 410       INT64_FORMAT, _sweep_fractions_left, (jlong)sweep_time.value());
 411   }
 412 #endif
 413 
 414   if (_sweep_fractions_left == 1) {
 415     _peak_sweep_time = MAX2(_peak_sweep_time, _total_time_this_sweep);
 416     log_sweep("finished");
 417   }
 418 
 419   // Sweeper is the only case where memory is released, check here if it
 420   // is time to restart the compiler. Only checking if there is a certain
 421   // amount of free memory in the code cache might lead to re-enabling
 422   // compilation although no memory has been released. For example, there are
 423   // cases when compilation was disabled although there is 4MB (or more) free
 424   // memory in the code cache. The reason is code cache fragmentation. Therefore,
 425   // it only makes sense to re-enable compilation if we have actually freed memory.
 426   // Note that typically several kB are released for sweeping 16MB of the code
 427   // cache. As a result, 'freed_memory' > 0 to restart the compiler.
 428   if (!CompileBroker::should_compile_new_jobs() && (freed_memory > 0)) {
 429     CompileBroker::set_should_compile_new_jobs(CompileBroker::run_compilation);
 430     log_sweep("restart_compiler");
 431   }
 432 }
 433 
 434 /**
 435  * This function updates the sweeper statistics that keep track of nmethods
 436  * state changes. If there is 'enough' state change, the sweeper is invoked
 437  * as soon as possible. There can be data races on _bytes_changed. The data
 438  * races are benign, since it does not matter if we loose a couple of bytes.
 439  * In the worst case we call the sweeper a little later. Also, we are guaranteed
 440  * to invoke the sweeper if the code cache gets full.
 441  */
 442 void NMethodSweeper::report_state_change(nmethod* nm) {
 443   _bytes_changed += nm->total_size();
 444   possibly_enable_sweeper();
 445 }
 446 
 447 /**
 448  * Function determines if there was 'enough' state change in the code cache to invoke
 449  * the sweeper again. Currently, we determine 'enough' as more than 1% state change in
 450  * the code cache since the last sweep.
 451  */
 452 void NMethodSweeper::possibly_enable_sweeper() {
 453   double percent_changed = ((double)_bytes_changed / (double)ReservedCodeCacheSize) * 100;
 454   if (percent_changed > 1.0) {
 455     _should_sweep = true;
 456   }
 457 }
 458 
 459 class NMethodMarker: public StackObj {
 460  private:
 461   CompilerThread* _thread;
 462  public:
 463   NMethodMarker(nmethod* nm) {
 464     _thread = CompilerThread::current();
 465     if (!nm->is_zombie() && !nm->is_unloaded()) {
 466       // Only expose live nmethods for scanning
 467       _thread->set_scanned_nmethod(nm);
 468     }
 469   }
 470   ~NMethodMarker() {
 471     _thread->set_scanned_nmethod(NULL);
 472   }
 473 };
 474 
 475 void NMethodSweeper::release_nmethod(nmethod *nm) {
 476   // Clean up any CompiledICHolders
 477   {
 478     ResourceMark rm;
 479     MutexLocker ml_patch(CompiledIC_lock);
 480     RelocIterator iter(nm);
 481     while (iter.next()) {
 482       if (iter.type() == relocInfo::virtual_call_type) {
 483         CompiledIC::cleanup_call_site(iter.virtual_call_reloc());
 484       }
 485     }
 486   }
 487 
 488   MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
 489   nm->flush();
 490 }
 491 
 492 int NMethodSweeper::process_nmethod(nmethod *nm) {
 493   assert(!CodeCache_lock->owned_by_self(), "just checking");
 494 
 495   int freed_memory = 0;
 496   // Make sure this nmethod doesn't get unloaded during the scan,
 497   // since safepoints may happen during acquired below locks.
 498   NMethodMarker nmm(nm);
 499   SWEEP(nm);
 500 
 501   // Skip methods that are currently referenced by the VM
 502   if (nm->is_locked_by_vm()) {
 503     // But still remember to clean-up inline caches for alive nmethods
 504     if (nm->is_alive()) {
 505       // Clean inline caches that point to zombie/non-entrant methods
 506       MutexLocker cl(CompiledIC_lock);
 507       nm->cleanup_inline_caches();
 508       SWEEP(nm);
 509     }
 510     return freed_memory;
 511   }
 512 
 513   if (nm->is_zombie()) {
 514     // If it is the first time we see nmethod then we mark it. Otherwise,
 515     // we reclaim it. When we have seen a zombie method twice, we know that
 516     // there are no inline caches that refer to it.
 517     if (nm->is_marked_for_reclamation()) {
 518       assert(!nm->is_locked_by_vm(), "must not flush locked nmethods");
 519       if (PrintMethodFlushing && Verbose) {
 520         tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (marked for reclamation) being flushed", nm->compile_id(), nm);
 521       }
 522       freed_memory = nm->total_size();
 523       if (nm->is_compiled_by_c2()) {
 524         _total_nof_c2_methods_reclaimed++;
 525       }
 526       release_nmethod(nm);
 527       _flushed_count++;
 528     } else {
 529       if (PrintMethodFlushing && Verbose) {
 530         tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (zombie) being marked for reclamation", nm->compile_id(), nm);
 531       }
 532       nm->mark_for_reclamation();
 533       // Keep track of code cache state change
 534       _bytes_changed += nm->total_size();
 535       _marked_for_reclamation_count++;
 536       SWEEP(nm);
 537     }
 538   } else if (nm->is_not_entrant()) {
 539     // If there are no current activations of this method on the
 540     // stack we can safely convert it to a zombie method
 541     if (nm->can_not_entrant_be_converted()) {
 542       if (PrintMethodFlushing && Verbose) {
 543         tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (not entrant) being made zombie", nm->compile_id(), nm);
 544       }
 545       // Code cache state change is tracked in make_zombie()
 546       nm->make_zombie();
 547       _zombified_count++;
 548       SWEEP(nm);
 549     } else {
 550       // Still alive, clean up its inline caches
 551       MutexLocker cl(CompiledIC_lock);
 552       nm->cleanup_inline_caches();
 553       SWEEP(nm);
 554     }
 555   } else if (nm->is_unloaded()) {
 556     // Unloaded code, just make it a zombie
 557     if (PrintMethodFlushing && Verbose) {
 558       tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (unloaded) being made zombie", nm->compile_id(), nm);
 559     }
 560     if (nm->is_osr_method()) {
 561       SWEEP(nm);
 562       // No inline caches will ever point to osr methods, so we can just remove it
 563       freed_memory = nm->total_size();
 564       if (nm->is_compiled_by_c2()) {
 565         _total_nof_c2_methods_reclaimed++;
 566       }
 567       release_nmethod(nm);
 568       _flushed_count++;
 569     } else {
 570       // Code cache state change is tracked in make_zombie()
 571       nm->make_zombie();
 572       _zombified_count++;
 573       SWEEP(nm);
 574     }
 575   } else {
 576     possibly_flush(nm);
 577     // Clean-up all inline caches that point to zombie/non-reentrant methods
 578     MutexLocker cl(CompiledIC_lock);
 579     nm->cleanup_inline_caches();
 580     SWEEP(nm);
 581   }
 582   return freed_memory;
 583 }
 584 
 585 
 586 void NMethodSweeper::possibly_flush(nmethod* nm) {
 587   if (UseCodeCacheFlushing) {
 588     if (!nm->is_locked_by_vm() && !nm->is_osr_method() && !nm->is_native_method()) {
 589       bool make_not_entrant = false;
 590 
 591       // Do not make native methods and OSR-methods not-entrant
 592       nm->dec_hotness_counter();
 593       // Get the initial value of the hotness counter. This value depends on the
 594       // ReservedCodeCacheSize
 595       int reset_val = hotness_counter_reset_val();
 596       int time_since_reset = reset_val - nm->hotness_counter();
 597       double threshold = -reset_val + (CodeCache::reverse_free_ratio() * NmethodSweepActivity);
 598       // The less free space in the code cache we have - the bigger reverse_free_ratio() is.
 599       // I.e., 'threshold' increases with lower available space in the code cache and a higher
 600       // NmethodSweepActivity. If the current hotness counter - which decreases from its initial
 601       // value until it is reset by stack walking - is smaller than the computed threshold, the
 602       // corresponding nmethod is considered for removal.
 603       if ((NmethodSweepActivity > 0) && (nm->hotness_counter() < threshold) && (time_since_reset > MinPassesBeforeFlush)) {
 604         // A method is marked as not-entrant if the method is
 605         // 1) 'old enough': nm->hotness_counter() < threshold
 606         // 2) The method was in_use for a minimum amount of time: (time_since_reset > MinPassesBeforeFlush)
 607         //    The second condition is necessary if we are dealing with very small code cache
 608         //    sizes (e.g., <10m) and the code cache size is too small to hold all hot methods.
 609         //    The second condition ensures that methods are not immediately made not-entrant
 610         //    after compilation.
 611         make_not_entrant = true;
 612       }
 613 
 614       // The stack-scanning low-cost detection may not see the method was used (which can happen for
 615       // flat profiles). Check the age counter for possible data.
 616       if (UseCodeAging && make_not_entrant && (nm->is_compiled_by_c2() || nm->is_compiled_by_c1())) {
 617         MethodCounters* mc = nm->method()->method_counters();
 618         if (mc == NULL) {
 619           // Sometimes we can get here without MethodCounters. For example if we run with -Xcomp.
 620           // Try to allocate them.
 621           mc = Method::build_method_counters(nm->method(), Thread::current());
 622         }
 623         if (mc != NULL) {
 624           // Snapshot the value as it's changed concurrently
 625           int age = mc->nmethod_age();
 626           if (MethodCounters::is_nmethod_hot(age)) {
 627             // The method has gone through flushing, and it became relatively hot that it deopted
 628             // before we could take a look at it. Give it more time to appear in the stack traces,
 629             // proportional to the number of deopts.
 630             MethodData* md = nm->method()->method_data();
 631             if (md != NULL && time_since_reset > (int)(MinPassesBeforeFlush * (md->tenure_traps() + 1))) {
 632               // It's been long enough, we still haven't seen it on stack.
 633               // Try to flush it, but enable counters the next time.
 634               mc->reset_nmethod_age();
 635             } else {
 636               make_not_entrant = false;
 637             }
 638           } else if (MethodCounters::is_nmethod_warm(age)) {
 639             // Method has counters enabled, and the method was used within
 640             // previous MinPassesBeforeFlush sweeps. Reset the counter. Stay in the existing
 641             // compiled state.
 642             mc->reset_nmethod_age();
 643             // delay the next check
 644             nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
 645             make_not_entrant = false;
 646           } else if (MethodCounters::is_nmethod_age_unset(age)) {
 647             // No counters were used before. Set the counters to the detection
 648             // limit value. If the method is going to be used again it will be compiled
 649             // with counters that we're going to use for analysis the the next time.
 650             mc->reset_nmethod_age();
 651           } else {
 652             // Method was totally idle for 10 sweeps
 653             // The counter already has the initial value, flush it and may be recompile
 654             // later with counters
 655           }
 656         }
 657       }
 658 
 659       if (make_not_entrant) {
 660         nm->make_not_entrant();
 661 
 662         // Code cache state change is tracked in make_not_entrant()
 663         if (PrintMethodFlushing && Verbose) {
 664           tty->print_cr("### Nmethod %d/" PTR_FORMAT "made not-entrant: hotness counter %d/%d threshold %f",
 665               nm->compile_id(), nm, nm->hotness_counter(), reset_val, threshold);
 666         }
 667       }
 668     }
 669   }
 670 }
 671 
 672 // Print out some state information about the current sweep and the
 673 // state of the code cache if it's requested.
 674 void NMethodSweeper::log_sweep(const char* msg, const char* format, ...) {
 675   if (PrintMethodFlushing) {
 676     stringStream s;
 677     // Dump code cache state into a buffer before locking the tty,
 678     // because log_state() will use locks causing lock conflicts.
 679     CodeCache::log_state(&s);
 680 
 681     ttyLocker ttyl;
 682     tty->print("### sweeper: %s ", msg);
 683     if (format != NULL) {
 684       va_list ap;
 685       va_start(ap, format);
 686       tty->vprint(format, ap);
 687       va_end(ap);
 688     }
 689     tty->print_cr("%s", s.as_string());
 690   }
 691 
 692   if (LogCompilation && (xtty != NULL)) {
 693     stringStream s;
 694     // Dump code cache state into a buffer before locking the tty,
 695     // because log_state() will use locks causing lock conflicts.
 696     CodeCache::log_state(&s);
 697 
 698     ttyLocker ttyl;
 699     xtty->begin_elem("sweeper state='%s' traversals='" INTX_FORMAT "' ", msg, (intx)traversal_count());
 700     if (format != NULL) {
 701       va_list ap;
 702       va_start(ap, format);
 703       xtty->vprint(format, ap);
 704       va_end(ap);
 705     }
 706     xtty->print("%s", s.as_string());
 707     xtty->stamp();
 708     xtty->end_elem();
 709   }
 710 }
 711 
 712 void NMethodSweeper::print() {
 713   ttyLocker ttyl;
 714   tty->print_cr("Code cache sweeper statistics:");
 715   tty->print_cr("  Total sweep time:                %1.0lfms", (double)_total_time_sweeping.value()/1000000);
 716   tty->print_cr("  Total number of full sweeps:     %ld", _total_nof_code_cache_sweeps);
 717   tty->print_cr("  Total number of flushed methods: %ld(%ld C2 methods)", _total_nof_methods_reclaimed,
 718                                                     _total_nof_c2_methods_reclaimed);
 719   tty->print_cr("  Total size of flushed methods:   " SIZE_FORMAT "kB", _total_flushed_size/K);
 720 }