hotspot/src/share/vm/runtime/sweeper.cpp
author mgronlun
Sat, 23 Nov 2013 12:25:13 +0100
changeset 21767 41eaa9a17059
parent 21727 4a5fc611c9a7
child 22859 7b88983393b7
child 22208 fb1e20bd389f
permissions -rw-r--r--
8028128: Add a type safe alternative for working with counter based data Reviewed-by: dholmes, egahlin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
     2
 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5533
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5533
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5533
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    26
#include "code/codeCache.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    27
#include "code/compiledIC.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    28
#include "code/icBuffer.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "compiler/compileBroker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "memory/resourceArea.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    32
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
#include "runtime/atomic.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    34
#include "runtime/compilationPolicy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    35
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    36
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    37
#include "runtime/sweeper.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    38
#include "runtime/vm_operations.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
    39
#include "trace/tracing.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    40
#include "utilities/events.hpp"
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
    41
#include "utilities/ticks.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    42
#include "utilities/xmlstream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    44
#ifdef ASSERT
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    45
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    46
#define SWEEP(nm) record_sweep(nm, __LINE__)
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    47
// Sweeper logging code
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    48
class SweeperRecord {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    49
 public:
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    50
  int traversal;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    51
  int invocation;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    52
  int compile_id;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    53
  long traversal_mark;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    54
  int state;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    55
  const char* kind;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    56
  address vep;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    57
  address uep;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    58
  int line;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    59
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    60
  void print() {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    61
      tty->print_cr("traversal = %d invocation = %d compile_id = %d %s uep = " PTR_FORMAT " vep = "
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    62
                    PTR_FORMAT " state = %d traversal_mark %d line = %d",
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    63
                    traversal,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    64
                    invocation,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    65
                    compile_id,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    66
                    kind == NULL ? "" : kind,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    67
                    uep,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    68
                    vep,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    69
                    state,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    70
                    traversal_mark,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    71
                    line);
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    72
  }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    73
};
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    74
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    75
static int _sweep_index = 0;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    76
static SweeperRecord* _records = NULL;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    77
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    78
void NMethodSweeper::report_events(int id, address entry) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    79
  if (_records != NULL) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    80
    for (int i = _sweep_index; i < SweeperLogEntries; i++) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    81
      if (_records[i].uep == entry ||
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    82
          _records[i].vep == entry ||
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    83
          _records[i].compile_id == id) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    84
        _records[i].print();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    85
      }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    86
    }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    87
    for (int i = 0; i < _sweep_index; i++) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    88
      if (_records[i].uep == entry ||
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    89
          _records[i].vep == entry ||
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    90
          _records[i].compile_id == id) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    91
        _records[i].print();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    92
      }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    93
    }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    94
  }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    95
}
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    96
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    97
void NMethodSweeper::report_events() {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    98
  if (_records != NULL) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    99
    for (int i = _sweep_index; i < SweeperLogEntries; i++) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   100
      // skip empty records
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   101
      if (_records[i].vep == NULL) continue;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   102
      _records[i].print();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   103
    }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   104
    for (int i = 0; i < _sweep_index; i++) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   105
      // skip empty records
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   106
      if (_records[i].vep == NULL) continue;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   107
      _records[i].print();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   108
    }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   109
  }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   110
}
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   111
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   112
void NMethodSweeper::record_sweep(nmethod* nm, int line) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   113
  if (_records != NULL) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   114
    _records[_sweep_index].traversal = _traversals;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   115
    _records[_sweep_index].traversal_mark = nm->_stack_traversal_mark;
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   116
    _records[_sweep_index].invocation = _sweep_fractions_left;
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   117
    _records[_sweep_index].compile_id = nm->compile_id();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   118
    _records[_sweep_index].kind = nm->compile_kind();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   119
    _records[_sweep_index].state = nm->_state;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   120
    _records[_sweep_index].vep = nm->verified_entry_point();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   121
    _records[_sweep_index].uep = nm->entry_point();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   122
    _records[_sweep_index].line = line;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   123
    _sweep_index = (_sweep_index + 1) % SweeperLogEntries;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   124
  }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   125
}
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   126
#else
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   127
#define SWEEP(nm)
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   128
#endif
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   129
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   130
nmethod* NMethodSweeper::_current                      = NULL; // Current nmethod
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   131
long     NMethodSweeper::_traversals                   = 0;    // Stack scan count, also sweep ID.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   132
long     NMethodSweeper::_time_counter                 = 0;    // Virtual time used to periodically invoke sweeper
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   133
long     NMethodSweeper::_last_sweep                   = 0;    // Value of _time_counter when the last sweep happened
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   134
int      NMethodSweeper::_seen                         = 0;    // Nof. nmethod we have currently processed in current pass of CodeCache
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   135
int      NMethodSweeper::_flushed_count                = 0;    // Nof. nmethods flushed in current sweep
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   136
int      NMethodSweeper::_zombified_count              = 0;    // Nof. nmethods made zombie in current sweep
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   137
int      NMethodSweeper::_marked_for_reclamation_count = 0;    // Nof. nmethods marked for reclaim in current sweep
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   139
volatile bool NMethodSweeper::_should_sweep            = true; // Indicates if we should invoke the sweeper
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   140
volatile int  NMethodSweeper::_sweep_fractions_left    = 0;    // Nof. invocations left until we are completed with this pass
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   141
volatile int  NMethodSweeper::_sweep_started           = 0;    // Flag to control conc sweeper
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   142
volatile int  NMethodSweeper::_bytes_changed           = 0;    // Counts the total nmethod size if the nmethod changed from:
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   143
                                                               //   1) alive       -> not_entrant
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   144
                                                               //   2) not_entrant -> zombie
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   145
                                                               //   3) zombie      -> marked_for_reclamation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   147
int   NMethodSweeper::_total_nof_methods_reclaimed     = 0;    // Accumulated nof methods flushed
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   148
Tickspan NMethodSweeper::_total_time_sweeping;                 // Accumulated time sweeping
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   149
Tickspan NMethodSweeper::_total_time_this_sweep;               // Total time this sweep
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   150
Tickspan NMethodSweeper::_peak_sweep_time;                     // Peak time for a full sweep
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   151
Tickspan NMethodSweeper::_peak_sweep_fraction_time;            // Peak time sweeping one fraction
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   152
int   NMethodSweeper::_hotness_counter_reset_val       = 0;
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   153
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   154
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   155
class MarkActivationClosure: public CodeBlobClosure {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   156
public:
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   157
  virtual void do_code_blob(CodeBlob* cb) {
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   158
    if (cb->is_nmethod()) {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   159
      nmethod* nm = (nmethod*)cb;
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   160
      nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   161
      // If we see an activation belonging to a non_entrant nmethod, we mark it.
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   162
      if (nm->is_not_entrant()) {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   163
        nm->mark_as_seen_on_stack();
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   164
      }
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   165
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   166
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   167
};
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   168
static MarkActivationClosure mark_activation_closure;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   169
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   170
class SetHotnessClosure: public CodeBlobClosure {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   171
public:
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   172
  virtual void do_code_blob(CodeBlob* cb) {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   173
    if (cb->is_nmethod()) {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   174
      nmethod* nm = (nmethod*)cb;
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   175
      nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   176
    }
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   177
  }
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   178
};
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   179
static SetHotnessClosure set_hotness_closure;
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   180
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   181
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   182
int NMethodSweeper::hotness_counter_reset_val() {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   183
  if (_hotness_counter_reset_val == 0) {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   184
    _hotness_counter_reset_val = (ReservedCodeCacheSize < M) ? 1 : (ReservedCodeCacheSize / M) * 2;
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   185
  }
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   186
  return _hotness_counter_reset_val;
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   187
}
17132
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   188
bool NMethodSweeper::sweep_in_progress() {
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   189
  return (_current != NULL);
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   190
}
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   191
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   192
// Scans the stacks of all Java threads and marks activations of not-entrant methods.
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   193
// No need to synchronize access, since 'mark_active_nmethods' is always executed at a
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   194
// safepoint.
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   195
void NMethodSweeper::mark_active_nmethods() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  assert(SafepointSynchronize::is_at_safepoint(), "must be executed at a safepoint");
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   197
  // If we do not want to reclaim not-entrant or zombie methods there is no need
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   198
  // to scan stacks
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   199
  if (!MethodFlushing) {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   200
    return;
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   201
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   203
  // Increase time so that we can estimate when to invoke the sweeper again.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   204
  _time_counter++;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   205
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // Check for restart
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  assert(CodeCache::find_blob_unsafe(_current) == _current, "Sweeper nmethod cached state invalid");
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   208
  if (!sweep_in_progress()) {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   209
    _seen = 0;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   210
    _sweep_fractions_left = NmethodSweepFraction;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   211
    _current = CodeCache::first_nmethod();
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   212
    _traversals += 1;
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   213
    _total_time_this_sweep = Tickspan();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   214
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    if (PrintMethodFlushing) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
      tty->print_cr("### Sweep: stack traversal %d", _traversals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    }
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   218
    Threads::nmethods_do(&mark_activation_closure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   220
  } else {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   221
    // Only set hotness counter
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   222
    Threads::nmethods_do(&set_hotness_closure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   225
  OrderAccess::storestore();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
}
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   227
/**
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   228
 * This function invokes the sweeper if at least one of the three conditions is met:
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   229
 *    (1) The code cache is getting full
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   230
 *    (2) There are sufficient state changes in/since the last sweep.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   231
 *    (3) We have not been sweeping for 'some time'
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   232
 */
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   233
void NMethodSweeper::possibly_sweep() {
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   234
  assert(JavaThread::current()->thread_state() == _thread_in_vm, "must run in vm mode");
21727
4a5fc611c9a7 8028306: nsk stress tests, CodeCache fills, then safepoint asserts
anoll
parents: 21575
diff changeset
   235
  // Only compiler threads are allowed to sweep
4a5fc611c9a7 8028306: nsk stress tests, CodeCache fills, then safepoint asserts
anoll
parents: 21575
diff changeset
   236
  if (!MethodFlushing || !sweep_in_progress() || !Thread::current()->is_Compiler_thread()) {
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   237
    return;
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   238
  }
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   239
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   240
  // If there was no state change while nmethod sweeping, 'should_sweep' will be false.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   241
  // This is one of the two places where should_sweep can be set to true. The general
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   242
  // idea is as follows: If there is enough free space in the code cache, there is no
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   243
  // need to invoke the sweeper. The following formula (which determines whether to invoke
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   244
  // the sweeper or not) depends on the assumption that for larger ReservedCodeCacheSizes
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   245
  // we need less frequent sweeps than for smaller ReservedCodecCacheSizes. Furthermore,
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   246
  // the formula considers how much space in the code cache is currently used. Here are
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   247
  // some examples that will (hopefully) help in understanding.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   248
  //
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   249
  // Small ReservedCodeCacheSizes:  (e.g., < 16M) We invoke the sweeper every time, since
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   250
  //                                              the result of the division is 0. This
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   251
  //                                              keeps the used code cache size small
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   252
  //                                              (important for embedded Java)
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   253
  // Large ReservedCodeCacheSize :  (e.g., 256M + code cache is 10% full). The formula
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   254
  //                                              computes: (256 / 16) - 1 = 15
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   255
  //                                              As a result, we invoke the sweeper after
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   256
  //                                              15 invocations of 'mark_active_nmethods.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   257
  // Large ReservedCodeCacheSize:   (e.g., 256M + code Cache is 90% full). The formula
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   258
  //                                              computes: (256 / 16) - 10 = 6.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   259
  if (!_should_sweep) {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   260
    int time_since_last_sweep = _time_counter - _last_sweep;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   261
    double wait_until_next_sweep = (ReservedCodeCacheSize / (16 * M)) - time_since_last_sweep -
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   262
                                CodeCache::reverse_free_ratio();
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   263
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   264
    if ((wait_until_next_sweep <= 0.0) || !CompileBroker::should_compile_new_jobs()) {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   265
      _should_sweep = true;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   266
    }
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   267
  }
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   268
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   269
  if (_should_sweep && _sweep_fractions_left > 0) {
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   270
    // Only one thread at a time will sweep
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   271
    jint old = Atomic::cmpxchg( 1, &_sweep_started, 0 );
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   272
    if (old != 0) {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   273
      return;
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   274
    }
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   275
#ifdef ASSERT
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   276
    if (LogSweeper && _records == NULL) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   277
      // Create the ring buffer for the logging code
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11789
diff changeset
   278
      _records = NEW_C_HEAP_ARRAY(SweeperRecord, SweeperLogEntries, mtGC);
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   279
      memset(_records, 0, sizeof(SweeperRecord) * SweeperLogEntries);
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   280
    }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   281
#endif
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   282
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   283
    if (_sweep_fractions_left > 0) {
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   284
      sweep_code_cache();
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   285
      _sweep_fractions_left--;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   286
    }
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   287
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   288
    // We are done with sweeping the code cache once.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   289
    if (_sweep_fractions_left == 0) {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   290
      _last_sweep = _time_counter;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   291
      // Reset flag; temporarily disables sweeper
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   292
      _should_sweep = false;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   293
      // If there was enough state change, 'possibly_enable_sweeper()'
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   294
      // sets '_should_sweep' to true
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   295
      possibly_enable_sweeper();
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   296
      // Reset _bytes_changed only if there was enough state change. _bytes_changed
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   297
      // can further increase by calls to 'report_state_change'.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   298
      if (_should_sweep) {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   299
        _bytes_changed = 0;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   300
      }
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   301
    }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   302
    _sweep_started = 0;
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   303
  }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   304
}
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   305
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   306
void NMethodSweeper::sweep_code_cache() {
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   307
  Ticks sweep_start_counter = Ticks::now();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   308
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   309
  _flushed_count                = 0;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   310
  _zombified_count              = 0;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   311
  _marked_for_reclamation_count = 0;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   312
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   313
  if (PrintMethodFlushing && Verbose) {
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   314
    tty->print_cr("### Sweep at %d out of %d. Invocations left: %d", _seen, CodeCache::nof_nmethods(), _sweep_fractions_left);
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   315
  }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   316
17132
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   317
  if (!CompileBroker::should_compile_new_jobs()) {
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   318
    // If we have turned off compilations we might as well do full sweeps
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   319
    // in order to reach the clean state faster. Otherwise the sleeping compiler
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   320
    // threads will slow down sweeping.
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   321
    _sweep_fractions_left = 1;
17132
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   322
  }
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   323
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   324
  // We want to visit all nmethods after NmethodSweepFraction
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   325
  // invocations so divide the remaining number of nmethods by the
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   326
  // remaining number of invocations.  This is only an estimate since
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   327
  // the number of nmethods changes during the sweep so the final
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   328
  // stage must iterate until it there are no more nmethods.
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   329
  int todo = (CodeCache::nof_nmethods() - _seen) / _sweep_fractions_left;
20019
3e9220f93c61 8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents: 18025
diff changeset
   330
  int swept_count = 0;
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   331
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   332
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   333
  assert(!SafepointSynchronize::is_at_safepoint(), "should not be in safepoint when we get here");
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   334
  assert(!CodeCache_lock->owned_by_self(), "just checking");
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   335
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   336
  int freed_memory = 0;
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   337
  {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   338
    MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   339
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   340
    // The last invocation iterates until there are no more nmethods
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   341
    for (int i = 0; (i < todo || _sweep_fractions_left == 1) && _current != NULL; i++) {
20019
3e9220f93c61 8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents: 18025
diff changeset
   342
      swept_count++;
11789
2ff80dcfc1cf 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 9942
diff changeset
   343
      if (SafepointSynchronize::is_synchronizing()) { // Safepoint request
2ff80dcfc1cf 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 9942
diff changeset
   344
        if (PrintMethodFlushing && Verbose) {
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   345
          tty->print_cr("### Sweep at %d out of %d, invocation: %d, yielding to safepoint", _seen, CodeCache::nof_nmethods(), _sweep_fractions_left);
11789
2ff80dcfc1cf 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 9942
diff changeset
   346
        }
2ff80dcfc1cf 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 9942
diff changeset
   347
        MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   348
11789
2ff80dcfc1cf 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 9942
diff changeset
   349
        assert(Thread::current()->is_Java_thread(), "should be java thread");
2ff80dcfc1cf 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 9942
diff changeset
   350
        JavaThread* thread = (JavaThread*)Thread::current();
2ff80dcfc1cf 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 9942
diff changeset
   351
        ThreadBlockInVM tbivm(thread);
2ff80dcfc1cf 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 9942
diff changeset
   352
        thread->java_suspend_self();
2ff80dcfc1cf 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 9942
diff changeset
   353
      }
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   354
      // Since we will give up the CodeCache_lock, always skip ahead
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   355
      // to the next nmethod.  Other blobs can be deleted by other
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   356
      // threads but nmethods are only reclaimed by the sweeper.
5895
7127e98012e3 6956958: assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted() || is_optimized() || is_megam
never
parents: 5547
diff changeset
   357
      nmethod* next = CodeCache::next_nmethod(_current);
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   358
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   359
      // Now ready to process nmethod and give up CodeCache_lock
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   360
      {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   361
        MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   362
        freed_memory += process_nmethod(_current);
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   363
      }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   364
      _seen++;
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   365
      _current = next;
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   366
    }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   367
  }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   368
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   369
  assert(_sweep_fractions_left > 1 || _current == NULL, "must have scanned the whole cache");
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   370
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   371
  const Ticks sweep_end_counter = Ticks::now();
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   372
  const Tickspan sweep_time = sweep_end_counter - sweep_start_counter;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   373
  _total_time_sweeping  += sweep_time;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   374
  _total_time_this_sweep += sweep_time;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   375
  _peak_sweep_fraction_time = MAX2(sweep_time, _peak_sweep_fraction_time);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   376
  _total_nof_methods_reclaimed += _flushed_count;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   377
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   378
  EventSweepCodeCache event(UNTIMED);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   379
  if (event.should_commit()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   380
    event.set_starttime(sweep_start_counter);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   381
    event.set_endtime(sweep_end_counter);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   382
    event.set_sweepIndex(_traversals);
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   383
    event.set_sweepFractionIndex(NmethodSweepFraction - _sweep_fractions_left + 1);
20019
3e9220f93c61 8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents: 18025
diff changeset
   384
    event.set_sweptCount(swept_count);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   385
    event.set_flushedCount(_flushed_count);
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   386
    event.set_markedCount(_marked_for_reclamation_count);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   387
    event.set_zombifiedCount(_zombified_count);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   388
    event.commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   389
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   390
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   391
#ifdef ASSERT
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   392
  if(PrintMethodFlushing) {
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   393
    tty->print_cr("### sweeper:      sweep time(%d): "
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   394
      INT64_FORMAT, _sweep_fractions_left, (jlong)sweep_time.value());
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   395
  }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   396
#endif
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   397
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   398
  if (_sweep_fractions_left == 1) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   399
    _peak_sweep_time = MAX2(_peak_sweep_time, _total_time_this_sweep);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   400
    log_sweep("finished");
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   401
  }
17132
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   402
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   403
  // Sweeper is the only case where memory is released, check here if it
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   404
  // is time to restart the compiler. Only checking if there is a certain
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   405
  // amount of free memory in the code cache might lead to re-enabling
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   406
  // compilation although no memory has been released. For example, there are
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   407
  // cases when compilation was disabled although there is 4MB (or more) free
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   408
  // memory in the code cache. The reason is code cache fragmentation. Therefore,
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   409
  // it only makes sense to re-enable compilation if we have actually freed memory.
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   410
  // Note that typically several kB are released for sweeping 16MB of the code
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   411
  // cache. As a result, 'freed_memory' > 0 to restart the compiler.
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   412
  if (!CompileBroker::should_compile_new_jobs() && (freed_memory > 0)) {
17132
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   413
    CompileBroker::set_should_compile_new_jobs(CompileBroker::run_compilation);
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   414
    log_sweep("restart_compiler");
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   415
  }
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   416
}
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   417
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   418
/**
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   419
 * This function updates the sweeper statistics that keep track of nmethods
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   420
 * state changes. If there is 'enough' state change, the sweeper is invoked
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   421
 * as soon as possible. There can be data races on _bytes_changed. The data
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   422
 * races are benign, since it does not matter if we loose a couple of bytes.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   423
 * In the worst case we call the sweeper a little later. Also, we are guaranteed
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   424
 * to invoke the sweeper if the code cache gets full.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   425
 */
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   426
void NMethodSweeper::report_state_change(nmethod* nm) {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   427
  _bytes_changed += nm->total_size();
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   428
  possibly_enable_sweeper();
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   429
}
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   430
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   431
/**
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   432
 * Function determines if there was 'enough' state change in the code cache to invoke
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   433
 * the sweeper again. Currently, we determine 'enough' as more than 1% state change in
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   434
 * the code cache since the last sweep.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   435
 */
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   436
void NMethodSweeper::possibly_enable_sweeper() {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   437
  double percent_changed = ((double)_bytes_changed / (double)ReservedCodeCacheSize) * 100;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   438
  if (percent_changed > 1.0) {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   439
    _should_sweep = true;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   440
  }
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   441
}
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   442
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   443
class NMethodMarker: public StackObj {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   444
 private:
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   445
  CompilerThread* _thread;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   446
 public:
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   447
  NMethodMarker(nmethod* nm) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   448
    _thread = CompilerThread::current();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   449
    if (!nm->is_zombie() && !nm->is_unloaded()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   450
      // Only expose live nmethods for scanning
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   451
      _thread->set_scanned_nmethod(nm);
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   452
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   453
  }
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   454
  ~NMethodMarker() {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   455
    _thread->set_scanned_nmethod(NULL);
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   456
  }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   457
};
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   458
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   459
void NMethodSweeper::release_nmethod(nmethod *nm) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   460
  // Clean up any CompiledICHolders
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   461
  {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   462
    ResourceMark rm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   463
    MutexLocker ml_patch(CompiledIC_lock);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   464
    RelocIterator iter(nm);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   465
    while (iter.next()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   466
      if (iter.type() == relocInfo::virtual_call_type) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   467
        CompiledIC::cleanup_call_site(iter.virtual_call_reloc());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   468
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   469
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   470
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   471
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   472
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   473
  nm->flush();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   474
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   476
int NMethodSweeper::process_nmethod(nmethod *nm) {
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   477
  assert(!CodeCache_lock->owned_by_self(), "just checking");
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   478
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   479
  int freed_memory = 0;
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   480
  // Make sure this nmethod doesn't get unloaded during the scan,
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   481
  // since safepoints may happen during acquired below locks.
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   482
  NMethodMarker nmm(nm);
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   483
  SWEEP(nm);
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   484
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  // Skip methods that are currently referenced by the VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  if (nm->is_locked_by_vm()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    // But still remember to clean-up inline caches for alive nmethods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    if (nm->is_alive()) {
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   489
      // Clean inline caches that point to zombie/non-entrant methods
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   490
      MutexLocker cl(CompiledIC_lock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
      nm->cleanup_inline_caches();
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   492
      SWEEP(nm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
    }
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   494
    return freed_memory;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  if (nm->is_zombie()) {
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   498
    // If it is the first time we see nmethod then we mark it. Otherwise,
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   499
    // we reclaim it. When we have seen a zombie method twice, we know that
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   500
    // there are no inline caches that refer to it.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    if (nm->is_marked_for_reclamation()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
      assert(!nm->is_locked_by_vm(), "must not flush locked nmethods");
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1
diff changeset
   503
      if (PrintMethodFlushing && Verbose) {
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   504
        tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (marked for reclamation) being flushed", nm->compile_id(), nm);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1
diff changeset
   505
      }
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   506
      freed_memory = nm->total_size();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   507
      release_nmethod(nm);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   508
      _flushed_count++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    } else {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1
diff changeset
   510
      if (PrintMethodFlushing && Verbose) {
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   511
        tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (zombie) being marked for reclamation", nm->compile_id(), nm);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1
diff changeset
   512
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
      nm->mark_for_reclamation();
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   514
      // Keep track of code cache state change
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   515
      _bytes_changed += nm->total_size();
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   516
      _marked_for_reclamation_count++;
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   517
      SWEEP(nm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  } else if (nm->is_not_entrant()) {
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   520
    // If there are no current activations of this method on the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    // stack we can safely convert it to a zombie method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    if (nm->can_not_entrant_be_converted()) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1
diff changeset
   523
      if (PrintMethodFlushing && Verbose) {
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   524
        tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (not entrant) being made zombie", nm->compile_id(), nm);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1
diff changeset
   525
      }
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   526
      // Code cache state change is tracked in make_zombie()
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
      nm->make_zombie();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   528
      _zombified_count++;
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   529
      SWEEP(nm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
      // Still alive, clean up its inline caches
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   532
      MutexLocker cl(CompiledIC_lock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
      nm->cleanup_inline_caches();
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   534
      SWEEP(nm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  } else if (nm->is_unloaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    // Unloaded code, just make it a zombie
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   538
    if (PrintMethodFlushing && Verbose) {
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   539
      tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (unloaded) being made zombie", nm->compile_id(), nm);
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   540
    }
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1
diff changeset
   541
    if (nm->is_osr_method()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   542
      SWEEP(nm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
      // No inline caches will ever point to osr methods, so we can just remove it
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   544
      freed_memory = nm->total_size();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   545
      release_nmethod(nm);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   546
      _flushed_count++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    } else {
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   548
      // Code cache state change is tracked in make_zombie()
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
      nm->make_zombie();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   550
      _zombified_count++;
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   551
      SWEEP(nm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  } else {
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   554
    if (UseCodeCacheFlushing) {
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   555
      if (!nm->is_locked_by_vm() && !nm->is_osr_method() && !nm->is_native_method()) {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   556
        // Do not make native methods and OSR-methods not-entrant
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   557
        nm->dec_hotness_counter();
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   558
        // Get the initial value of the hotness counter. This value depends on the
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   559
        // ReservedCodeCacheSize
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   560
        int reset_val = hotness_counter_reset_val();
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   561
        int time_since_reset = reset_val - nm->hotness_counter();
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   562
        double threshold = -reset_val + (CodeCache::reverse_free_ratio() * NmethodSweepActivity);
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   563
        // The less free space in the code cache we have - the bigger reverse_free_ratio() is.
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   564
        // I.e., 'threshold' increases with lower available space in the code cache and a higher
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   565
        // NmethodSweepActivity. If the current hotness counter - which decreases from its initial
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   566
        // value until it is reset by stack walking - is smaller than the computed threshold, the
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   567
        // corresponding nmethod is considered for removal.
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   568
        if ((NmethodSweepActivity > 0) && (nm->hotness_counter() < threshold) && (time_since_reset > 10)) {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   569
          // A method is marked as not-entrant if the method is
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   570
          // 1) 'old enough': nm->hotness_counter() < threshold
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   571
          // 2) The method was in_use for a minimum amount of time: (time_since_reset > 10)
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   572
          //    The second condition is necessary if we are dealing with very small code cache
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   573
          //    sizes (e.g., <10m) and the code cache size is too small to hold all hot methods.
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   574
          //    The second condition ensures that methods are not immediately made not-entrant
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   575
          //    after compilation.
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   576
          nm->make_not_entrant();
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   577
          // Code cache state change is tracked in make_not_entrant()
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   578
          if (PrintMethodFlushing && Verbose) {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   579
            tty->print_cr("### Nmethod %d/" PTR_FORMAT "made not-entrant: hotness counter %d/%d threshold %f",
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   580
                          nm->compile_id(), nm, nm->hotness_counter(), reset_val, threshold);
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   581
          }
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   582
        }
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   583
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   584
    }
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   585
    // Clean-up all inline caches that point to zombie/non-reentrant methods
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   586
    MutexLocker cl(CompiledIC_lock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    nm->cleanup_inline_caches();
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   588
    SWEEP(nm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  }
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   590
  return freed_memory;
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   591
}
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   592
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   593
// Print out some state information about the current sweep and the
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   594
// state of the code cache if it's requested.
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   595
void NMethodSweeper::log_sweep(const char* msg, const char* format, ...) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   596
  if (PrintMethodFlushing) {
9138
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   597
    stringStream s;
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   598
    // Dump code cache state into a buffer before locking the tty,
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   599
    // because log_state() will use locks causing lock conflicts.
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   600
    CodeCache::log_state(&s);
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   601
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   602
    ttyLocker ttyl;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   603
    tty->print("### sweeper: %s ", msg);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   604
    if (format != NULL) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   605
      va_list ap;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   606
      va_start(ap, format);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   607
      tty->vprint(format, ap);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   608
      va_end(ap);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   609
    }
9138
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   610
    tty->print_cr(s.as_string());
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   611
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   612
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   613
  if (LogCompilation && (xtty != NULL)) {
9138
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   614
    stringStream s;
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   615
    // Dump code cache state into a buffer before locking the tty,
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   616
    // because log_state() will use locks causing lock conflicts.
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   617
    CodeCache::log_state(&s);
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   618
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   619
    ttyLocker ttyl;
5926
a36f90d986b6 6968385: malformed xml in sweeper logging
never
parents: 5924
diff changeset
   620
    xtty->begin_elem("sweeper state='%s' traversals='" INTX_FORMAT "' ", msg, (intx)traversal_count());
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   621
    if (format != NULL) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   622
      va_list ap;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   623
      va_start(ap, format);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   624
      xtty->vprint(format, ap);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   625
      va_end(ap);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   626
    }
9138
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   627
    xtty->print(s.as_string());
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   628
    xtty->stamp();
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   629
    xtty->end_elem();
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   630
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   631
}