src/hotspot/share/runtime/sweeper.cpp
author coleenp
Fri, 16 Mar 2018 09:12:13 -0400
changeset 49449 ef5d5d343e2a
parent 49360 886acec3b4c6
child 49480 d7df2dd501ce
permissions -rw-r--r--
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files Summary: interfaceSupport.hpp is an inline file so moved to interfaceSupport.inline.hpp and stopped including it in .hpp files Reviewed-by: stefank, rehn, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49360
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 48007
diff changeset
     2
 * Copyright (c) 1997, 2018, 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"
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46269
diff changeset
    31
#include "logging/log.hpp"
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46269
diff changeset
    32
#include "logging/logStream.hpp"
49360
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 48007
diff changeset
    33
#include "memory/allocation.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    34
#include "memory/resourceArea.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    35
#include "oops/method.hpp"
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 38133
diff changeset
    36
#include "runtime/atomic.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    37
#include "runtime/compilationPolicy.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49360
diff changeset
    38
#include "runtime/interfaceSupport.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    39
#include "runtime/mutexLocker.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 22872
diff changeset
    40
#include "runtime/orderAccess.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    41
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    42
#include "runtime/sweeper.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 22872
diff changeset
    43
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    44
#include "runtime/vm_operations.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
    45
#include "trace/tracing.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    46
#include "utilities/events.hpp"
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
    47
#include "utilities/ticks.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    48
#include "utilities/xmlstream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    50
#ifdef ASSERT
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    51
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    52
#define SWEEP(nm) record_sweep(nm, __LINE__)
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    53
// Sweeper logging code
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    54
class SweeperRecord {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    55
 public:
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    56
  int traversal;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    57
  int compile_id;
47099
49f5fa3fc2ae 8186837: Memory ordering nmethod, _state and _stack_traversal_mark
rehn
parents: 46702
diff changeset
    58
  long traversal_mark;
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    59
  int state;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    60
  const char* kind;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    61
  address vep;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    62
  address uep;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    63
  int line;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    64
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    65
  void print() {
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
    66
      tty->print_cr("traversal = %d compile_id = %d %s uep = " PTR_FORMAT " vep = "
47099
49f5fa3fc2ae 8186837: Memory ordering nmethod, _state and _stack_traversal_mark
rehn
parents: 46702
diff changeset
    67
                    PTR_FORMAT " state = %d traversal_mark %ld line = %d",
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    68
                    traversal,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    69
                    compile_id,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    70
                    kind == NULL ? "" : kind,
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 32466
diff changeset
    71
                    p2i(uep),
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 32466
diff changeset
    72
                    p2i(vep),
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    73
                    state,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    74
                    traversal_mark,
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    75
                    line);
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    76
  }
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
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    79
static int _sweep_index = 0;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    80
static SweeperRecord* _records = NULL;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    81
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    82
void NMethodSweeper::report_events(int id, address entry) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    83
  if (_records != NULL) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    84
    for (int i = _sweep_index; i < SweeperLogEntries; i++) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    85
      if (_records[i].uep == entry ||
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    86
          _records[i].vep == entry ||
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    87
          _records[i].compile_id == id) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    88
        _records[i].print();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    89
      }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    90
    }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    91
    for (int i = 0; i < _sweep_index; i++) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    92
      if (_records[i].uep == entry ||
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    93
          _records[i].vep == entry ||
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    94
          _records[i].compile_id == id) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    95
        _records[i].print();
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
    }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    98
  }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
    99
}
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   100
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   101
void NMethodSweeper::report_events() {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   102
  if (_records != NULL) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   103
    for (int i = _sweep_index; i < SweeperLogEntries; i++) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   104
      // skip empty records
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   105
      if (_records[i].vep == NULL) continue;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   106
      _records[i].print();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   107
    }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   108
    for (int i = 0; i < _sweep_index; i++) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   109
      // skip empty records
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   110
      if (_records[i].vep == NULL) continue;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   111
      _records[i].print();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   112
    }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   113
  }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   114
}
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   115
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   116
void NMethodSweeper::record_sweep(CompiledMethod* nm, int line) {
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   117
  if (_records != NULL) {
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   118
    _records[_sweep_index].traversal = _traversals;
46702
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   119
    _records[_sweep_index].traversal_mark = nm->is_nmethod() ? ((nmethod*)nm)->stack_traversal_mark() : 0;
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   120
    _records[_sweep_index].compile_id = nm->compile_id();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   121
    _records[_sweep_index].kind = nm->compile_kind();
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   122
    _records[_sweep_index].state = nm->get_state();
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   123
    _records[_sweep_index].vep = nm->verified_entry_point();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   124
    _records[_sweep_index].uep = nm->entry_point();
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   125
    _records[_sweep_index].line = line;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   126
    _sweep_index = (_sweep_index + 1) % SweeperLogEntries;
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   127
  }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   128
}
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   129
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   130
void NMethodSweeper::init_sweeper_log() {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   131
 if (LogSweeper && _records == NULL) {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   132
   // Create the ring buffer for the logging code
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   133
   _records = NEW_C_HEAP_ARRAY(SweeperRecord, SweeperLogEntries, mtGC);
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   134
   memset(_records, 0, sizeof(SweeperRecord) * SweeperLogEntries);
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   135
  }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   136
}
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   137
#else
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   138
#define SWEEP(nm)
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   139
#endif
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   140
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   141
CompiledMethodIterator NMethodSweeper::_current;               // Current compiled method
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   142
long     NMethodSweeper::_traversals                   = 0;    // Stack scan count, also sweep ID.
22210
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   143
long     NMethodSweeper::_total_nof_code_cache_sweeps  = 0;    // Total number of full sweeps of the code cache
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   144
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
   145
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
   146
int      NMethodSweeper::_seen                         = 0;    // Nof. nmethod we have currently processed in current pass of CodeCache
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   148
volatile bool NMethodSweeper::_should_sweep            = true; // Indicates if we should invoke the sweeper
30205
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   149
volatile bool NMethodSweeper::_force_sweep             = false;// Indicates if we should force a sweep
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   150
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
   151
                                                               //   1) alive       -> not_entrant
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   152
                                                               //   2) not_entrant -> zombie
22210
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   153
int    NMethodSweeper::_hotness_counter_reset_val       = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   155
long   NMethodSweeper::_total_nof_methods_reclaimed     = 0;   // Accumulated nof methods flushed
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   156
long   NMethodSweeper::_total_nof_c2_methods_reclaimed  = 0;   // Accumulated nof methods flushed
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   157
size_t NMethodSweeper::_total_flushed_size              = 0;   // Total number of bytes flushed from the code cache
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   158
Tickspan NMethodSweeper::_total_time_sweeping;                 // Accumulated time sweeping
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   159
Tickspan NMethodSweeper::_total_time_this_sweep;               // Total time this sweep
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   160
Tickspan NMethodSweeper::_peak_sweep_time;                     // Peak time for a full sweep
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   161
Tickspan NMethodSweeper::_peak_sweep_fraction_time;            // Peak time sweeping one fraction
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   162
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27917
diff changeset
   163
Monitor* NMethodSweeper::_stat_lock = new Monitor(Mutex::special, "Sweeper::Statistics", true, Monitor::_safepoint_check_sometimes);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   164
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   165
class MarkActivationClosure: public CodeBlobClosure {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   166
public:
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   167
  virtual void do_code_blob(CodeBlob* cb) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   168
    assert(cb->is_nmethod(), "CodeBlob should be nmethod");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   169
    nmethod* nm = (nmethod*)cb;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   170
    nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   171
    // If we see an activation belonging to a non_entrant nmethod, we mark it.
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   172
    if (nm->is_not_entrant()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   173
      nm->mark_as_seen_on_stack();
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   174
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   175
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   176
};
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   177
static MarkActivationClosure mark_activation_closure;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   178
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   179
class SetHotnessClosure: public CodeBlobClosure {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   180
public:
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   181
  virtual void do_code_blob(CodeBlob* cb) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   182
    assert(cb->is_nmethod(), "CodeBlob should be nmethod");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   183
    nmethod* nm = (nmethod*)cb;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   184
    nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
20290
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
};
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   187
static SetHotnessClosure set_hotness_closure;
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   188
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   189
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   190
int NMethodSweeper::hotness_counter_reset_val() {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   191
  if (_hotness_counter_reset_val == 0) {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   192
    _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
   193
  }
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   194
  return _hotness_counter_reset_val;
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   195
}
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   196
bool NMethodSweeper::wait_for_stack_scanning() {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   197
  return _current.end();
17132
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   198
}
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   199
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   200
/**
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   201
  * Scans the stacks of all Java threads and marks activations of not-entrant methods.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   202
  * No need to synchronize access, since 'mark_active_nmethods' is always executed at a
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   203
  * safepoint.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   204
  */
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   205
void NMethodSweeper::mark_active_nmethods() {
46702
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   206
  CodeBlobClosure* cl = prepare_mark_active_nmethods();
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   207
  if (cl != NULL) {
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   208
    Threads::nmethods_do(cl);
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   209
  }
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   210
}
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   211
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   212
CodeBlobClosure* NMethodSweeper::prepare_mark_active_nmethods() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  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
   214
  // 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
   215
  // to scan stacks
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   216
  if (!MethodFlushing) {
46702
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   217
    return NULL;
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   218
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   220
  // 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
   221
  _time_counter++;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   222
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Check for restart
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   224
  if (_current.method() != NULL) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   225
    if (_current.method()->is_nmethod()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   226
      assert(CodeCache::find_blob_unsafe(_current.method()) == _current.method(), "Sweeper nmethod cached state invalid");
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40664
diff changeset
   227
    } else if (_current.method()->is_aot()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40664
diff changeset
   228
      assert(CodeCache::find_blob_unsafe(_current.method()->code_begin()) == _current.method(), "Sweeper AOT method cached state invalid");
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   229
    } else {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   230
      ShouldNotReachHere();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   231
    }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   232
  }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   233
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   234
  if (wait_for_stack_scanning()) {
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   235
    _seen = 0;
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   236
    _current = CompiledMethodIterator();
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   237
    // Initialize to first nmethod
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   238
    _current.next();
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   239
    _traversals += 1;
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   240
    _total_time_this_sweep = Tickspan();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   241
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    if (PrintMethodFlushing) {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 32466
diff changeset
   243
      tty->print_cr("### Sweep: stack traversal %ld", _traversals);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    }
46702
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   245
    return &mark_activation_closure;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   247
  } else {
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   248
    // Only set hotness counter
46702
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 46701
diff changeset
   249
    return &set_hotness_closure;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
}
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   253
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   254
/**
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   255
  * This function triggers a VM operation that does stack scanning of active
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   256
  * methods. Stack scanning is mandatory for the sweeper to make progress.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   257
  */
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   258
void NMethodSweeper::do_stack_scanning() {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   259
  assert(!CodeCache_lock->owned_by_self(), "just checking");
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   260
  if (wait_for_stack_scanning()) {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   261
    VM_MarkActiveNMethods op;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   262
    VMThread::execute(&op);
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   263
    _should_sweep = true;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   264
  }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   265
}
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   266
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   267
void NMethodSweeper::sweeper_loop() {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   268
  bool timeout;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   269
  while (true) {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   270
    {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   271
      ThreadBlockInVM tbivm(JavaThread::current());
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   272
      MutexLockerEx waiter(CodeCache_lock, Mutex::_no_safepoint_check_flag);
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   273
      const long wait_time = 60*60*24 * 1000;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   274
      timeout = CodeCache_lock->wait(Mutex::_no_safepoint_check_flag, wait_time);
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   275
    }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   276
    if (!timeout) {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   277
      possibly_sweep();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   278
    }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   279
  }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   280
}
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   281
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   282
/**
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   283
  * Wakes up the sweeper thread to possibly sweep.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   284
  */
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   285
void NMethodSweeper::notify(int code_blob_type) {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   286
  // Makes sure that we do not invoke the sweeper too often during startup.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   287
  double start_threshold = 100.0 / (double)StartAggressiveSweepingAt;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   288
  double aggressive_sweep_threshold = MIN2(start_threshold, 1.1);
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   289
  if (CodeCache::reverse_free_ratio(code_blob_type) >= aggressive_sweep_threshold) {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   290
    assert_locked_or_safepoint(CodeCache_lock);
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   291
    CodeCache_lock->notify();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   292
  }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   293
}
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   294
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   295
/**
30205
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   296
  * Wakes up the sweeper thread and forces a sweep. Blocks until it finished.
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   297
  */
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   298
void NMethodSweeper::force_sweep() {
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   299
  ThreadBlockInVM tbivm(JavaThread::current());
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   300
  MutexLockerEx waiter(CodeCache_lock, Mutex::_no_safepoint_check_flag);
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   301
  // Request forced sweep
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   302
  _force_sweep = true;
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   303
  while (_force_sweep) {
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   304
    // Notify sweeper that we want to force a sweep and wait for completion.
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   305
    // In case a sweep currently takes place we timeout and try again because
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   306
    // we want to enforce a full sweep.
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   307
    CodeCache_lock->notify();
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   308
    CodeCache_lock->wait(Mutex::_no_safepoint_check_flag, 1000);
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   309
  }
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   310
}
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   311
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   312
/**
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   313
 * Handle a safepoint request
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   314
 */
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   315
void NMethodSweeper::handle_safepoint_request() {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   316
  if (SafepointSynchronize::is_synchronizing()) {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   317
    if (PrintMethodFlushing && Verbose) {
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33148
diff changeset
   318
      tty->print_cr("### Sweep at %d out of %d, yielding to safepoint", _seen, CodeCache::nmethod_count());
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   319
    }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   320
    MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   321
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   322
    JavaThread* thread = JavaThread::current();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   323
    ThreadBlockInVM tbivm(thread);
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   324
    thread->java_suspend_self();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   325
  }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   326
}
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   327
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   328
/**
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   329
 * 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
   330
 *    (1) The code cache is getting full
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   331
 *    (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
   332
 *    (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
   333
 */
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   334
void NMethodSweeper::possibly_sweep() {
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   335
  assert(JavaThread::current()->thread_state() == _thread_in_vm, "must run in vm mode");
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   336
  // 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
   337
  // 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
   338
  // 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
   339
  // 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
   340
  // 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
   341
  // 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
   342
  // 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
   343
  // some examples that will (hopefully) help in understanding.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   344
  //
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   345
  // 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
   346
  //                                              the result of the division is 0. This
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   347
  //                                              keeps the used code cache size small
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   348
  //                                              (important for embedded Java)
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   349
  // 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
   350
  //                                              computes: (256 / 16) - 1 = 15
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   351
  //                                              As a result, we invoke the sweeper after
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   352
  //                                              15 invocations of 'mark_active_nmethods.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   353
  // 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
   354
  //                                              computes: (256 / 16) - 10 = 6.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   355
  if (!_should_sweep) {
22208
fb1e20bd389f 8029091: Bug in calculation of code cache sweeping interval
anoll
parents: 21767
diff changeset
   356
    const int time_since_last_sweep = _time_counter - _last_sweep;
fb1e20bd389f 8029091: Bug in calculation of code cache sweeping interval
anoll
parents: 21767
diff changeset
   357
    // ReservedCodeCacheSize has an 'unsigned' type. We need a 'signed' type for max_wait_time,
fb1e20bd389f 8029091: Bug in calculation of code cache sweeping interval
anoll
parents: 21767
diff changeset
   358
    // since 'time_since_last_sweep' can be larger than 'max_wait_time'. If that happens using
fb1e20bd389f 8029091: Bug in calculation of code cache sweeping interval
anoll
parents: 21767
diff changeset
   359
    // an unsigned type would cause an underflow (wait_until_next_sweep becomes a large positive
fb1e20bd389f 8029091: Bug in calculation of code cache sweeping interval
anoll
parents: 21767
diff changeset
   360
    // value) that disables the intended periodic sweeps.
fb1e20bd389f 8029091: Bug in calculation of code cache sweeping interval
anoll
parents: 21767
diff changeset
   361
    const int max_wait_time = ReservedCodeCacheSize / (16 * M);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   362
    double wait_until_next_sweep = max_wait_time - time_since_last_sweep -
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   363
        MAX2(CodeCache::reverse_free_ratio(CodeBlobType::MethodProfiled),
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   364
             CodeCache::reverse_free_ratio(CodeBlobType::MethodNonProfiled));
22208
fb1e20bd389f 8029091: Bug in calculation of code cache sweeping interval
anoll
parents: 21767
diff changeset
   365
    assert(wait_until_next_sweep <= (double)max_wait_time, "Calculation of code cache sweeper interval is incorrect");
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   366
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   367
    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
   368
      _should_sweep = true;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   369
    }
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   370
  }
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   371
30205
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   372
  // Remember if this was a forced sweep
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   373
  bool forced = _force_sweep;
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   374
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   375
  // Force stack scanning if there is only 10% free space in the code cache.
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   376
  // We force stack scanning only if the non-profiled code heap gets full, since critical
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   377
  // allocations go to the non-profiled heap and we must be make sure that there is
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   378
  // enough space.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   379
  double free_percent = 1 / CodeCache::reverse_free_ratio(CodeBlobType::MethodNonProfiled) * 100;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   380
  if (free_percent <= StartAggressiveSweepingAt) {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   381
    do_stack_scanning();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   382
  }
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   383
30205
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   384
  if (_should_sweep || forced) {
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   385
    init_sweeper_log();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   386
    sweep_code_cache();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   387
  }
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   388
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   389
  // We are done with sweeping the code cache once.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   390
  _total_nof_code_cache_sweeps++;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   391
  _last_sweep = _time_counter;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   392
  // Reset flag; temporarily disables sweeper
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   393
  _should_sweep = false;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   394
  // If there was enough state change, 'possibly_enable_sweeper()'
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   395
  // sets '_should_sweep' to true
30205
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   396
  possibly_enable_sweeper();
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   397
  // Reset _bytes_changed only if there was enough state change. _bytes_changed
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   398
  // can further increase by calls to 'report_state_change'.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   399
  if (_should_sweep) {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   400
    _bytes_changed = 0;
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   401
  }
30205
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   402
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   403
  if (forced) {
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   404
    // Notify requester that forced sweep finished
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   405
    assert(_force_sweep, "Should be a forced sweep");
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   406
    MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   407
    _force_sweep = false;
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   408
    CodeCache_lock->notify();
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29339
diff changeset
   409
  }
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   410
}
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   411
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   412
void NMethodSweeper::sweep_code_cache() {
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   413
  ResourceMark rm;
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   414
  Ticks sweep_start_counter = Ticks::now();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   415
46269
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
   416
  log_debug(codecache, sweep, start)("CodeCache flushing");
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
   417
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   418
  int flushed_count                = 0;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   419
  int zombified_count              = 0;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   420
  int flushed_c2_count     = 0;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   421
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   422
  if (PrintMethodFlushing && Verbose) {
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33148
diff changeset
   423
    tty->print_cr("### Sweep at %d out of %d", _seen, CodeCache::nmethod_count());
17132
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   424
  }
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   425
20019
3e9220f93c61 8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents: 18025
diff changeset
   426
  int swept_count = 0;
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   427
  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
   428
  assert(!CodeCache_lock->owned_by_self(), "just checking");
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   429
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   430
  int freed_memory = 0;
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   431
  {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   432
    MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   433
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   434
    while (!_current.end()) {
20019
3e9220f93c61 8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents: 18025
diff changeset
   435
      swept_count++;
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   436
      // 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
   437
      // 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
   438
      // threads but nmethods are only reclaimed by the sweeper.
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   439
      CompiledMethod* nm = _current.method();
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   440
      _current.next();
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   441
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   442
      // Now ready to process nmethod and give up CodeCache_lock
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   443
      {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   444
        MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   445
        // Save information before potentially flushing the nmethod
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   446
        // Only flushing nmethods so size only matters for them.
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   447
        int size = nm->is_nmethod() ? ((nmethod*)nm)->total_size() : 0;
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   448
        bool is_c2_method = nm->is_compiled_by_c2();
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   449
        bool is_osr = nm->is_osr_method();
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   450
        int compile_id = nm->compile_id();
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   451
        intptr_t address = p2i(nm);
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   452
        const char* state_before = nm->state();
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   453
        const char* state_after = "";
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   454
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   455
        MethodStateChange type = process_compiled_method(nm);
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   456
        switch (type) {
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   457
          case Flushed:
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   458
            state_after = "flushed";
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   459
            freed_memory += size;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   460
            ++flushed_count;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   461
            if (is_c2_method) {
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   462
              ++flushed_c2_count;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   463
            }
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   464
            break;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   465
          case MadeZombie:
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   466
            state_after = "made zombie";
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   467
            ++zombified_count;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   468
            break;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   469
          case None:
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   470
            break;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   471
          default:
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   472
           ShouldNotReachHere();
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   473
        }
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   474
        if (PrintMethodFlushing && Verbose && type != None) {
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   475
          tty->print_cr("### %s nmethod %3d/" PTR_FORMAT " (%s) %s", is_osr ? "osr" : "", compile_id, address, state_before, state_after);
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   476
        }
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   477
      }
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   478
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   479
      _seen++;
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   480
      handle_safepoint_request();
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   481
    }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   482
  }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   483
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   484
  assert(_current.end(), "must have scanned the whole cache");
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   485
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21727
diff changeset
   486
  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
   487
  const Tickspan sweep_time = sweep_end_counter - sweep_start_counter;
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   488
  {
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   489
    MutexLockerEx mu(_stat_lock, Mutex::_no_safepoint_check_flag);
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   490
    _total_time_sweeping  += sweep_time;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   491
    _total_time_this_sweep += sweep_time;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   492
    _peak_sweep_fraction_time = MAX2(sweep_time, _peak_sweep_fraction_time);
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   493
    _total_flushed_size += freed_memory;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   494
    _total_nof_methods_reclaimed += flushed_count;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   495
    _total_nof_c2_methods_reclaimed += flushed_c2_count;
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   496
    _peak_sweep_time = MAX2(_peak_sweep_time, _total_time_this_sweep);
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   497
  }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   498
  EventSweepCodeCache event(UNTIMED);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   499
  if (event.should_commit()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   500
    event.set_starttime(sweep_start_counter);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   501
    event.set_endtime(sweep_end_counter);
40664
1ec65b303bb7 8164523: Clean up metadata for event based tracing
egahlin
parents: 40655
diff changeset
   502
    event.set_sweepId(_traversals);
20019
3e9220f93c61 8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents: 18025
diff changeset
   503
    event.set_sweptCount(swept_count);
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   504
    event.set_flushedCount(flushed_count);
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   505
    event.set_zombifiedCount(zombified_count);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   506
    event.commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   507
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17132
diff changeset
   508
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   509
#ifdef ASSERT
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   510
  if(PrintMethodFlushing) {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 32466
diff changeset
   511
    tty->print_cr("### sweeper:      sweep time(" JLONG_FORMAT "): ", sweep_time.value());
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   512
  }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   513
#endif
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   514
46269
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
   515
  Log(codecache, sweep) log;
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
   516
  if (log.is_debug()) {
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46269
diff changeset
   517
    LogStream ls(log.debug());
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46269
diff changeset
   518
    CodeCache::print_summary(&ls, false);
46269
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
   519
  }
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   520
  log_sweep("finished");
17132
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   521
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   522
  // 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
   523
  // 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
   524
  // 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
   525
  // 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
   526
  // 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
   527
  // 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
   528
  // 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
   529
  // 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
   530
  // 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
   531
  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
   532
    CompileBroker::set_should_compile_new_jobs(CompileBroker::run_compilation);
46269
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
   533
    log.debug("restart compiler");
17132
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   534
    log_sweep("restart_compiler");
dffd513b2a8c 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 13728
diff changeset
   535
  }
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   536
}
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   537
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   538
/**
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   539
 * 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
   540
 * 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
   541
 * 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
   542
 * 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
   543
 * 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
   544
 * 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
   545
 */
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   546
void NMethodSweeper::report_state_change(nmethod* nm) {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   547
  _bytes_changed += nm->total_size();
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   548
  possibly_enable_sweeper();
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   549
}
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   550
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   551
/**
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   552
 * 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
   553
 * 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
   554
 * the code cache since the last sweep.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   555
 */
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   556
void NMethodSweeper::possibly_enable_sweeper() {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   557
  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
   558
  if (percent_changed > 1.0) {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   559
    _should_sweep = true;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   560
  }
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   561
}
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   562
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   563
class CompiledMethodMarker: public StackObj {
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   564
 private:
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   565
  CodeCacheSweeperThread* _thread;
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   566
 public:
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   567
  CompiledMethodMarker(CompiledMethod* cm) {
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   568
    JavaThread* current = JavaThread::current();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27017
diff changeset
   569
    assert (current->is_Code_cache_sweeper_thread(), "Must be");
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   570
    _thread = (CodeCacheSweeperThread*)current;
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   571
    if (!cm->is_zombie() && !cm->is_unloaded()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   572
      // Only expose live nmethods for scanning
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   573
      _thread->set_scanned_compiled_method(cm);
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   574
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   575
  }
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   576
  ~CompiledMethodMarker() {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   577
    _thread->set_scanned_compiled_method(NULL);
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   578
  }
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   579
};
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   580
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   581
void NMethodSweeper::release_compiled_method(CompiledMethod* nm) {
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   582
  // Make sure the released nmethod is no longer referenced by the sweeper thread
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   583
  CodeCacheSweeperThread* thread = (CodeCacheSweeperThread*)JavaThread::current();
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   584
  thread->set_scanned_compiled_method(NULL);
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   585
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   586
  // Clean up any CompiledICHolders
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   587
  {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   588
    ResourceMark rm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   589
    MutexLocker ml_patch(CompiledIC_lock);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   590
    RelocIterator iter(nm);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   591
    while (iter.next()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   592
      if (iter.type() == relocInfo::virtual_call_type) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40664
diff changeset
   593
        CompiledIC::cleanup_call_site(iter.virtual_call_reloc(), nm);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   594
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   595
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   596
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   597
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   598
  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
   599
  nm->flush();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   600
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   602
NMethodSweeper::MethodStateChange NMethodSweeper::process_compiled_method(CompiledMethod* cm) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   603
  assert(cm != NULL, "sanity");
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   604
  assert(!CodeCache_lock->owned_by_self(), "just checking");
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   605
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   606
  MethodStateChange result = None;
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   607
  // 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
   608
  // since safepoints may happen during acquired below locks.
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   609
  CompiledMethodMarker nmm(cm);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   610
  SWEEP(cm);
9942
2e86734ba620 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 9138
diff changeset
   611
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  // Skip methods that are currently referenced by the VM
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   613
  if (cm->is_locked_by_vm()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    // But still remember to clean-up inline caches for alive nmethods
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   615
    if (cm->is_alive()) {
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   616
      // Clean inline caches that point to zombie/non-entrant/unloaded nmethods
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   617
      MutexLocker cl(CompiledIC_lock);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   618
      cm->cleanup_inline_caches();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   619
      SWEEP(cm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    }
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   621
    return result;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   624
  if (cm->is_zombie()) {
36818
b40330c06dea 8136458: Remove "marked for reclamation" nmethod state
thartmann
parents: 36802
diff changeset
   625
    // All inline caches that referred to this nmethod were cleaned in the
b40330c06dea 8136458: Remove "marked for reclamation" nmethod state
thartmann
parents: 36802
diff changeset
   626
    // previous sweeper cycle. Now flush the nmethod from the code cache.
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   627
    assert(!cm->is_locked_by_vm(), "must not flush locked Compiled Methods");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   628
    release_compiled_method(cm);
36818
b40330c06dea 8136458: Remove "marked for reclamation" nmethod state
thartmann
parents: 36802
diff changeset
   629
    assert(result == None, "sanity");
b40330c06dea 8136458: Remove "marked for reclamation" nmethod state
thartmann
parents: 36802
diff changeset
   630
    result = Flushed;
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   631
  } else if (cm->is_not_entrant()) {
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   632
    // If there are no current activations of this method on the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    // stack we can safely convert it to a zombie method
47099
49f5fa3fc2ae 8186837: Memory ordering nmethod, _state and _stack_traversal_mark
rehn
parents: 46702
diff changeset
   634
    OrderAccess::loadload(); // _stack_traversal_mark and _state
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   635
    if (cm->can_convert_to_zombie()) {
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   636
      // Clear ICStubs to prevent back patching stubs of zombie or flushed
26912
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26799
diff changeset
   637
      // nmethods during the next safepoint (see ICStub::finalize).
27017
bae5d661dd4b 8059735: make_not_entrant_or_zombie sees zombies
thartmann
parents: 26912
diff changeset
   638
      {
bae5d661dd4b 8059735: make_not_entrant_or_zombie sees zombies
thartmann
parents: 26912
diff changeset
   639
        MutexLocker cl(CompiledIC_lock);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   640
        cm->clear_ic_stubs();
27017
bae5d661dd4b 8059735: make_not_entrant_or_zombie sees zombies
thartmann
parents: 26912
diff changeset
   641
      }
32401
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 31348
diff changeset
   642
      // Code cache state change is tracked in make_zombie()
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   643
      cm->make_zombie();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   644
      SWEEP(cm);
36816
987a22271911 8152861: VM crash on assert: locked methods shouldn't be flushed
thartmann
parents: 36802
diff changeset
   645
      // The nmethod may have been locked by JVMTI after being made zombie (see
987a22271911 8152861: VM crash on assert: locked methods shouldn't be flushed
thartmann
parents: 36802
diff changeset
   646
      // JvmtiDeferredEvent::compiled_method_unload_event()). If so, we cannot
987a22271911 8152861: VM crash on assert: locked methods shouldn't be flushed
thartmann
parents: 36802
diff changeset
   647
      // flush the osr nmethod directly but have to wait for a later sweeper cycle.
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   648
      if (cm->is_osr_method() && !cm->is_locked_by_vm()) {
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   649
        // No inline caches will ever point to osr methods, so we can just remove it.
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   650
        // Make sure that we unregistered the nmethod with the heap and flushed all
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   651
        // dependencies before removing the nmethod (done in make_zombie()).
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   652
        assert(cm->is_zombie(), "nmethod must be unregistered");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   653
        release_compiled_method(cm);
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   654
        assert(result == None, "sanity");
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   655
        result = Flushed;
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   656
      } else {
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   657
        assert(result == None, "sanity");
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   658
        result = MadeZombie;
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   659
        assert(cm->is_zombie(), "nmethod must be zombie");
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   660
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
      // Still alive, clean up its inline caches
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   663
      MutexLocker cl(CompiledIC_lock);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   664
      cm->cleanup_inline_caches();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   665
      SWEEP(cm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    }
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   667
  } else if (cm->is_unloaded()) {
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   668
    // Code is unloaded, so there are no activations on the stack.
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   669
    // Convert the nmethod to zombie or flush it directly in the OSR case.
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   670
    {
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   671
      // Clean ICs of unloaded nmethods as well because they may reference other
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   672
      // unloaded nmethods that may be flushed earlier in the sweeper cycle.
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   673
      MutexLocker cl(CompiledIC_lock);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   674
      cm->cleanup_inline_caches();
20290
2127dc70bce9 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 20019
diff changeset
   675
    }
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   676
    if (cm->is_osr_method()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   677
      SWEEP(cm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
      // No inline caches will ever point to osr methods, so we can just remove it
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   679
      release_compiled_method(cm);
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   680
      assert(result == None, "sanity");
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   681
      result = Flushed;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
    } else {
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20290
diff changeset
   683
      // Code cache state change is tracked in make_zombie()
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   684
      cm->make_zombie();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   685
      SWEEP(cm);
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   686
      assert(result == None, "sanity");
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   687
      result = MadeZombie;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  } else {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   690
    if (cm->is_nmethod()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   691
      possibly_flush((nmethod*)cm);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   692
    }
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   693
    // Clean inline caches that point to zombie/non-entrant/unloaded nmethods
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   694
    MutexLocker cl(CompiledIC_lock);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   695
    cm->cleanup_inline_caches();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 36844
diff changeset
   696
    SWEEP(cm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  }
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27420
diff changeset
   698
  return result;
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   699
}
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3919
diff changeset
   700
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   701
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   702
void NMethodSweeper::possibly_flush(nmethod* nm) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   703
  if (UseCodeCacheFlushing) {
48007
ab3959df2115 8043070: nmethod::verify_interrupt_point() shouldn't enter safepoint
iveresov
parents: 47216
diff changeset
   704
    if (!nm->is_locked_by_vm() && !nm->is_native_method() && !nm->is_not_installed()) {
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   705
      bool make_not_entrant = false;
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   706
36802
18b1db5a7e70 8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents: 34158
diff changeset
   707
      // Do not make native methods not-entrant
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   708
      nm->dec_hotness_counter();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   709
      // Get the initial value of the hotness counter. This value depends on the
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   710
      // ReservedCodeCacheSize
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   711
      int reset_val = hotness_counter_reset_val();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   712
      int time_since_reset = reset_val - nm->hotness_counter();
31348
c28f02c7abb5 8077279: assert(ic->is_clean()) failed: IC should be clean
sjohanss
parents: 30205
diff changeset
   713
      int code_blob_type = CodeCache::get_code_blob_type(nm);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26578
diff changeset
   714
      double threshold = -reset_val + (CodeCache::reverse_free_ratio(code_blob_type) * NmethodSweepActivity);
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   715
      // The less free space in the code cache we have - the bigger reverse_free_ratio() is.
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   716
      // I.e., 'threshold' increases with lower available space in the code cache and a higher
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   717
      // NmethodSweepActivity. If the current hotness counter - which decreases from its initial
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   718
      // value until it is reset by stack walking - is smaller than the computed threshold, the
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   719
      // corresponding nmethod is considered for removal.
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   720
      if ((NmethodSweepActivity > 0) && (nm->hotness_counter() < threshold) && (time_since_reset > MinPassesBeforeFlush)) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   721
        // A method is marked as not-entrant if the method is
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   722
        // 1) 'old enough': nm->hotness_counter() < threshold
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   723
        // 2) The method was in_use for a minimum amount of time: (time_since_reset > MinPassesBeforeFlush)
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   724
        //    The second condition is necessary if we are dealing with very small code cache
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   725
        //    sizes (e.g., <10m) and the code cache size is too small to hold all hot methods.
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   726
        //    The second condition ensures that methods are not immediately made not-entrant
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   727
        //    after compilation.
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   728
        make_not_entrant = true;
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   729
      }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   730
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   731
      // The stack-scanning low-cost detection may not see the method was used (which can happen for
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   732
      // flat profiles). Check the age counter for possible data.
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   733
      if (UseCodeAging && make_not_entrant && (nm->is_compiled_by_c2() || nm->is_compiled_by_c1())) {
26799
0c349e16bbe8 8058564: Tiered compilation performance drop in PIT
iveresov
parents: 26796
diff changeset
   734
        MethodCounters* mc = nm->method()->get_method_counters(Thread::current());
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   735
        if (mc != NULL) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   736
          // Snapshot the value as it's changed concurrently
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   737
          int age = mc->nmethod_age();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   738
          if (MethodCounters::is_nmethod_hot(age)) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   739
            // The method has gone through flushing, and it became relatively hot that it deopted
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   740
            // before we could take a look at it. Give it more time to appear in the stack traces,
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   741
            // proportional to the number of deopts.
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   742
            MethodData* md = nm->method()->method_data();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   743
            if (md != NULL && time_since_reset > (int)(MinPassesBeforeFlush * (md->tenure_traps() + 1))) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   744
              // It's been long enough, we still haven't seen it on stack.
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   745
              // Try to flush it, but enable counters the next time.
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   746
              mc->reset_nmethod_age();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   747
            } else {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   748
              make_not_entrant = false;
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   749
            }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   750
          } else if (MethodCounters::is_nmethod_warm(age)) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   751
            // Method has counters enabled, and the method was used within
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   752
            // previous MinPassesBeforeFlush sweeps. Reset the counter. Stay in the existing
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   753
            // compiled state.
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   754
            mc->reset_nmethod_age();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   755
            // delay the next check
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   756
            nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   757
            make_not_entrant = false;
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   758
          } else if (MethodCounters::is_nmethod_age_unset(age)) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   759
            // No counters were used before. Set the counters to the detection
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   760
            // limit value. If the method is going to be used again it will be compiled
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   761
            // with counters that we're going to use for analysis the the next time.
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   762
            mc->reset_nmethod_age();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   763
          } else {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   764
            // Method was totally idle for 10 sweeps
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   765
            // The counter already has the initial value, flush it and may be recompile
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   766
            // later with counters
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   767
          }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   768
        }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   769
      }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   770
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   771
      if (make_not_entrant) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   772
        nm->make_not_entrant();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   773
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   774
        // Code cache state change is tracked in make_not_entrant()
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   775
        if (PrintMethodFlushing && Verbose) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   776
          tty->print_cr("### Nmethod %d/" PTR_FORMAT "made not-entrant: hotness counter %d/%d threshold %f",
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 32466
diff changeset
   777
              nm->compile_id(), p2i(nm), nm->hotness_counter(), reset_val, threshold);
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   778
        }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   779
      }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   780
    }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   781
  }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   782
}
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   783
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   784
// 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
   785
// state of the code cache if it's requested.
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   786
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
   787
  if (PrintMethodFlushing) {
29339
f0b1b7788a51 8073257: compiler/codecache/stress/RandomAllocationTest.java + fastdebug + -XX:+LogCompilation, "allocating without ResourceMark"
thartmann
parents: 28163
diff changeset
   788
    ResourceMark rm;
9138
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   789
    stringStream s;
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   790
    // 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
   791
    // 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
   792
    CodeCache::log_state(&s);
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   793
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   794
    ttyLocker ttyl;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   795
    tty->print("### sweeper: %s ", msg);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   796
    if (format != NULL) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   797
      va_list ap;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   798
      va_start(ap, format);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   799
      tty->vprint(format, ap);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   800
      va_end(ap);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   801
    }
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   802
    tty->print_cr("%s", s.as_string());
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   803
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   804
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   805
  if (LogCompilation && (xtty != NULL)) {
29339
f0b1b7788a51 8073257: compiler/codecache/stress/RandomAllocationTest.java + fastdebug + -XX:+LogCompilation, "allocating without ResourceMark"
thartmann
parents: 28163
diff changeset
   806
    ResourceMark rm;
9138
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   807
    stringStream s;
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   808
    // 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
   809
    // 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
   810
    CodeCache::log_state(&s);
35e4b04eadf4 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 8921
diff changeset
   811
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   812
    ttyLocker ttyl;
5926
a36f90d986b6 6968385: malformed xml in sweeper logging
never
parents: 5924
diff changeset
   813
    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
   814
    if (format != NULL) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   815
      va_list ap;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   816
      va_start(ap, format);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   817
      xtty->vprint(format, ap);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   818
      va_end(ap);
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   819
    }
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   820
    xtty->print("%s", s.as_string());
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   821
    xtty->stamp();
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   822
    xtty->end_elem();
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   823
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5895
diff changeset
   824
}
22210
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   825
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   826
void NMethodSweeper::print() {
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   827
  ttyLocker ttyl;
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   828
  tty->print_cr("Code cache sweeper statistics:");
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   829
  tty->print_cr("  Total sweep time:                %1.0lfms", (double)_total_time_sweeping.value()/1000000);
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   830
  tty->print_cr("  Total number of full sweeps:     %ld", _total_nof_code_cache_sweeps);
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   831
  tty->print_cr("  Total number of flushed methods: %ld(%ld C2 methods)", _total_nof_methods_reclaimed,
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   832
                                                    _total_nof_c2_methods_reclaimed);
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   833
  tty->print_cr("  Total size of flushed methods:   " SIZE_FORMAT "kB", _total_flushed_size/K);
b0408ba029f6 8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents: 22208
diff changeset
   834
}