hotspot/src/share/vm/code/codeCache.cpp
author iveresov
Fri, 05 Sep 2014 14:39:45 -0700
changeset 26580 8cca7fbe77b8
parent 25492 d27050bdfb04
child 26587 e8b28fa936af
permissions -rw-r--r--
8056154: JVM crash with EXCEPTION_ACCESS_VIOLATION when there are many threads running Summary: Don't make compiled MH intrinsics not entrant when redefining classes Reviewed-by: kvn, vlivanov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
     2
 * Copyright (c) 1997, 2014, 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: 7108
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    26
#include "code/codeBlob.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    27
#include "code/codeCache.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    28
#include "code/compiledIC.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    29
#include "code/dependencies.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    30
#include "code/icBuffer.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    31
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    32
#include "code/pcDesc.hpp"
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
    33
#include "compiler/compileBroker.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    34
#include "gc_implementation/shared/markSweep.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    35
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    36
#include "memory/gcLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    37
#include "memory/iterator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    38
#include "memory/resourceArea.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    39
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    40
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    41
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    42
#include "runtime/handles.inline.hpp"
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
    43
#include "runtime/arguments.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    44
#include "runtime/icache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    45
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    46
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    47
#include "services/memoryService.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
    48
#include "trace/tracing.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    49
#include "utilities/xmlstream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// Helper class for printing in CodeCache
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
class CodeBlob_sizes {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  int count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  int total_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  int header_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  int code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  int stub_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  int relocation_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  int scopes_oop_size;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    62
  int scopes_metadata_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  int scopes_data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  int scopes_pcs_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  CodeBlob_sizes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    count            = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    total_size       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    header_size      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    code_size        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    stub_size        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    relocation_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    scopes_oop_size  = 0;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    75
    scopes_metadata_size  = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    scopes_data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    scopes_pcs_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int total()                                    { return total_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  bool is_empty()                                { return count == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  void print(const char* title) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
    84
    tty->print_cr(" #%d %s = %dK (hdr %d%%,  loc %d%%, code %d%%, stub %d%%, [oops %d%%, metadata %d%%, data %d%%, pcs %d%%])",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                  count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                  title,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
    87
                  (int)(total() / K),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                  header_size             * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                  relocation_size         * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
                  code_size               * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                  stub_size               * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                  scopes_oop_size         * 100 / total_size,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    93
                  scopes_metadata_size    * 100 / total_size,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
                  scopes_data_size        * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                  scopes_pcs_size         * 100 / total_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  void add(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    total_size       += cb->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    header_size      += cb->header_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    relocation_size  += cb->relocation_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    if (cb->is_nmethod()) {
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   104
      nmethod* nm = cb->as_nmethod_or_null();
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   105
      code_size        += nm->insts_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      stub_size        += nm->stub_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   108
      scopes_oop_size  += nm->oops_size();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   109
      scopes_metadata_size  += nm->metadata_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      scopes_data_size += nm->scopes_data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      scopes_pcs_size  += nm->scopes_pcs_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    } else {
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   113
      code_size        += cb->code_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
// CodeCache implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
CodeHeap * CodeCache::_heap = new CodeHeap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
int CodeCache::_number_of_blobs = 0;
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   122
int CodeCache::_number_of_adapters = 0;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   123
int CodeCache::_number_of_nmethods = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
int CodeCache::_number_of_nmethods_with_dependencies = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
bool CodeCache::_needs_cache_clean = false;
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   126
nmethod* CodeCache::_scavenge_root_nmethods = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   128
int CodeCache::_codemem_full_count = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
CodeBlob* CodeCache::first() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  return (CodeBlob*)_heap->first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
CodeBlob* CodeCache::next(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  return (CodeBlob*)_heap->next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
CodeBlob* CodeCache::alive(CodeBlob *cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  while (cb != NULL && !cb->is_alive()) cb = next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
nmethod* CodeCache::alive_nmethod(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  while (cb != NULL && (!cb->is_alive() || !cb->is_nmethod())) cb = next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  return (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   155
nmethod* CodeCache::first_nmethod() {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   156
  assert_locked_or_safepoint(CodeCache_lock);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   157
  CodeBlob* cb = first();
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   158
  while (cb != NULL && !cb->is_nmethod()) {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   159
    cb = next(cb);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   160
  }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   161
  return (nmethod*)cb;
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   162
}
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   163
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   164
nmethod* CodeCache::next_nmethod (CodeBlob* cb) {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   165
  assert_locked_or_safepoint(CodeCache_lock);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   166
  cb = next(cb);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   167
  while (cb != NULL && !cb->is_nmethod()) {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   168
    cb = next(cb);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   169
  }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   170
  return (nmethod*)cb;
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   171
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   173
static size_t maxCodeCacheUsed = 0;
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   174
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
   175
CodeBlob* CodeCache::allocate(int size, bool is_critical) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Do not seize the CodeCache lock here--if the caller has not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // already done so, we are going to lose bigtime, since the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // cache will contain a garbage CodeBlob until the caller can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // run the constructor for the CodeBlob subclass he is busy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // instantiating.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  assert_locked_or_safepoint(CodeCache_lock);
24439
252c634b2e1c 8029343: CodeCache::allocate increments '_number_of_blobs' even if allocation fails.
anoll
parents: 23214
diff changeset
   182
  assert(size > 0, "allocation request must be reasonable");
252c634b2e1c 8029343: CodeCache::allocate increments '_number_of_blobs' even if allocation fails.
anoll
parents: 23214
diff changeset
   183
  if (size <= 0) {
252c634b2e1c 8029343: CodeCache::allocate increments '_number_of_blobs' even if allocation fails.
anoll
parents: 23214
diff changeset
   184
    return NULL;
252c634b2e1c 8029343: CodeCache::allocate increments '_number_of_blobs' even if allocation fails.
anoll
parents: 23214
diff changeset
   185
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  CodeBlob* cb = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  while (true) {
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
   188
    cb = (CodeBlob*)_heap->allocate(size, is_critical);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    if (cb != NULL) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    if (!_heap->expand_by(CodeCacheExpansionSize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
      // Expansion failed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    if (PrintCodeCacheExtension) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
      ResourceMark rm;
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   196
      tty->print_cr("code cache extended to [" INTPTR_FORMAT ", " INTPTR_FORMAT "] (" SSIZE_FORMAT " bytes)",
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
   197
                    (intptr_t)_heap->low_boundary(), (intptr_t)_heap->high(),
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
   198
                    (address)_heap->high() - (address)_heap->low_boundary());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   201
  maxCodeCacheUsed = MAX2(maxCodeCacheUsed, ((address)_heap->high_boundary() -
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   202
                          (address)_heap->low_boundary()) - unallocated_capacity());
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   203
  print_trace("allocation", cb, size);
24439
252c634b2e1c 8029343: CodeCache::allocate increments '_number_of_blobs' even if allocation fails.
anoll
parents: 23214
diff changeset
   204
  _number_of_blobs++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
void CodeCache::free(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   211
  print_trace("free", cb);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   212
  if (cb->is_nmethod()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   213
    _number_of_nmethods--;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   214
    if (((nmethod *)cb)->has_dependencies()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   215
      _number_of_nmethods_with_dependencies--;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   216
    }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   217
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   218
  if (cb->is_adapter_blob()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   219
    _number_of_adapters--;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  _number_of_blobs--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  _heap->deallocate(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  assert(_number_of_blobs >= 0, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
void CodeCache::commit(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // this is called by nmethod::nmethod, which must already own CodeCache_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  assert_locked_or_safepoint(CodeCache_lock);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   232
  if (cb->is_nmethod()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   233
    _number_of_nmethods++;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   234
    if (((nmethod *)cb)->has_dependencies()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   235
      _number_of_nmethods_with_dependencies++;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   236
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  }
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   238
  if (cb->is_adapter_blob()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   239
    _number_of_adapters++;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   240
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   241
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // flush the hardware I-cache
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   243
  ICache::invalidate_range(cb->content_begin(), cb->content_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
// Iteration over CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
#define FOR_ALL_BLOBS(var)       for (CodeBlob *var =       first() ; var != NULL; var =       next(var) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
#define FOR_ALL_ALIVE_BLOBS(var) for (CodeBlob *var = alive(first()); var != NULL; var = alive(next(var)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
#define FOR_ALL_ALIVE_NMETHODS(var) for (nmethod *var = alive_nmethod(first()); var != NULL; var = alive_nmethod(next(var)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
bool CodeCache::contains(void *p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // It should be ok to call contains without holding a lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  return _heap->contains(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
// This method is safe to call without holding the CodeCache_lock, as long as a dead codeblob is not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
// looked up (i.e., one that has been marked for deletion). It only dependes on the _segmap to contain
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
// valid indices, which it will always do, as long as the CodeBlob is not in the process of being recycled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
CodeBlob* CodeCache::find_blob(void* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  CodeBlob* result = find_blob_unsafe(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  if (result == NULL) return NULL;
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   266
  // We could potentially look up non_entrant methods
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  guarantee(!result->is_zombie() || result->is_locked_by_vm() || is_error_reported(), "unsafe access to zombie method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
nmethod* CodeCache::find_nmethod(void* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  CodeBlob *cb = find_blob(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  assert(cb == NULL || cb->is_nmethod(), "did not find an nmethod");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  return (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
void CodeCache::blobs_do(void f(CodeBlob* nm)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    f(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
void CodeCache::nmethods_do(void f(nmethod* nm)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  FOR_ALL_BLOBS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    if (nm->is_nmethod()) f((nmethod*)nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   293
void CodeCache::alive_nmethods_do(void f(nmethod* nm)) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   294
  assert_locked_or_safepoint(CodeCache_lock);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   295
  FOR_ALL_ALIVE_NMETHODS(nm) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   296
    f(nm);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   297
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   298
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
int CodeCache::alignment_unit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  return (int)_heap->alignment_unit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
int CodeCache::alignment_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  return (int)_heap->alignment_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   310
// Mark nmethods for unloading if they contain otherwise unreachable
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   311
// oops.
13878
6e6a462a6cff 7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents: 13728
diff changeset
   312
void CodeCache::do_unloading(BoolObjectClosure* is_alive, bool unloading_occurred) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  assert_locked_or_safepoint(CodeCache_lock);
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   314
  FOR_ALL_ALIVE_NMETHODS(nm) {
13878
6e6a462a6cff 7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents: 13728
diff changeset
   315
    nm->do_unloading(is_alive, unloading_occurred);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   319
void CodeCache::blobs_do(CodeBlobClosure* f) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  FOR_ALL_ALIVE_BLOBS(cb) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   322
    f->do_code_blob(cb);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   323
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   324
#ifdef ASSERT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   325
    if (cb->is_nmethod())
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   326
      ((nmethod*)cb)->verify_scavenge_root_oops();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   327
#endif //ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   331
// Walk the list of methods which might contain non-perm oops.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   332
void CodeCache::scavenge_root_nmethods_do(CodeBlobClosure* f) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   333
  assert_locked_or_safepoint(CodeCache_lock);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   334
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   335
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   336
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   337
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   338
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   339
  debug_only(mark_scavenge_root_nmethods());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   340
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   341
  for (nmethod* cur = scavenge_root_nmethods(); cur != NULL; cur = cur->scavenge_root_link()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   342
    debug_only(cur->clear_scavenge_root_marked());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   343
    assert(cur->scavenge_root_not_marked(), "");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   344
    assert(cur->on_scavenge_root_list(), "else shouldn't be on this list");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   345
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   346
    bool is_live = (!cur->is_zombie() && !cur->is_unloaded());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   347
#ifndef PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   348
    if (TraceScavenge) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   349
      cur->print_on(tty, is_live ? "scavenge root" : "dead scavenge root"); tty->cr();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   350
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   351
#endif //PRODUCT
5247
c2b4e525b3e5 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 4750
diff changeset
   352
    if (is_live) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   353
      // Perform cur->oops_do(f), maybe just once per nmethod.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   354
      f->do_code_blob(cur);
5247
c2b4e525b3e5 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 4750
diff changeset
   355
    }
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   356
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   357
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   358
  // Check for stray marks.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   359
  debug_only(verify_perm_nmethods(NULL));
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   360
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   361
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   362
void CodeCache::add_scavenge_root_nmethod(nmethod* nm) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   363
  assert_locked_or_safepoint(CodeCache_lock);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   364
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   365
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   366
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   367
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   368
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   369
  nm->set_on_scavenge_root_list();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   370
  nm->set_scavenge_root_link(_scavenge_root_nmethods);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   371
  set_scavenge_root_nmethods(nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   372
  print_trace("add_scavenge_root", nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   373
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   374
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   375
void CodeCache::drop_scavenge_root_nmethod(nmethod* nm) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   376
  assert_locked_or_safepoint(CodeCache_lock);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   377
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   378
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   379
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   380
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   381
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   382
  print_trace("drop_scavenge_root", nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   383
  nmethod* last = NULL;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   384
  nmethod* cur = scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   385
  while (cur != NULL) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   386
    nmethod* next = cur->scavenge_root_link();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   387
    if (cur == nm) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   388
      if (last != NULL)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   389
            last->set_scavenge_root_link(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   390
      else  set_scavenge_root_nmethods(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   391
      nm->set_scavenge_root_link(NULL);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   392
      nm->clear_on_scavenge_root_list();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   393
      return;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   394
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   395
    last = cur;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   396
    cur = next;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   397
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   398
  assert(false, "should have been on list");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   399
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   400
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   401
void CodeCache::prune_scavenge_root_nmethods() {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   402
  assert_locked_or_safepoint(CodeCache_lock);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   403
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   404
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   405
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   406
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   407
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   408
  debug_only(mark_scavenge_root_nmethods());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   409
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   410
  nmethod* last = NULL;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   411
  nmethod* cur = scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   412
  while (cur != NULL) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   413
    nmethod* next = cur->scavenge_root_link();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   414
    debug_only(cur->clear_scavenge_root_marked());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   415
    assert(cur->scavenge_root_not_marked(), "");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   416
    assert(cur->on_scavenge_root_list(), "else shouldn't be on this list");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   417
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   418
    if (!cur->is_zombie() && !cur->is_unloaded()
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   419
        && cur->detect_scavenge_root_oops()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   420
      // Keep it.  Advance 'last' to prevent deletion.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   421
      last = cur;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   422
    } else {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   423
      // Prune it from the list, so we don't have to look at it any more.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   424
      print_trace("prune_scavenge_root", cur);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   425
      cur->set_scavenge_root_link(NULL);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   426
      cur->clear_on_scavenge_root_list();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   427
      if (last != NULL)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   428
            last->set_scavenge_root_link(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   429
      else  set_scavenge_root_nmethods(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   430
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   431
    cur = next;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   432
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   433
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   434
  // Check for stray marks.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   435
  debug_only(verify_perm_nmethods(NULL));
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   436
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   437
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   438
#ifndef PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   439
void CodeCache::asserted_non_scavengable_nmethods_do(CodeBlobClosure* f) {
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   440
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   441
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   442
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   443
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   444
  // While we are here, verify the integrity of the list.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   445
  mark_scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   446
  for (nmethod* cur = scavenge_root_nmethods(); cur != NULL; cur = cur->scavenge_root_link()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   447
    assert(cur->on_scavenge_root_list(), "else shouldn't be on this list");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   448
    cur->clear_scavenge_root_marked();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   449
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   450
  verify_perm_nmethods(f);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   451
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   452
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   453
// Temporarily mark nmethods that are claimed to be on the non-perm list.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   454
void CodeCache::mark_scavenge_root_nmethods() {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   455
  FOR_ALL_ALIVE_BLOBS(cb) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   456
    if (cb->is_nmethod()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   457
      nmethod *nm = (nmethod*)cb;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   458
      assert(nm->scavenge_root_not_marked(), "clean state");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   459
      if (nm->on_scavenge_root_list())
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   460
        nm->set_scavenge_root_marked();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   461
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   462
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   463
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   464
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   465
// If the closure is given, run it on the unlisted nmethods.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   466
// Also make sure that the effects of mark_scavenge_root_nmethods is gone.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   467
void CodeCache::verify_perm_nmethods(CodeBlobClosure* f_or_null) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   468
  FOR_ALL_ALIVE_BLOBS(cb) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   469
    bool call_f = (f_or_null != NULL);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   470
    if (cb->is_nmethod()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   471
      nmethod *nm = (nmethod*)cb;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   472
      assert(nm->scavenge_root_not_marked(), "must be already processed");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   473
      if (nm->on_scavenge_root_list())
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   474
        call_f = false;  // don't show this one to the client
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   475
      nm->verify_scavenge_root_oops();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   476
    } else {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   477
      call_f = false;   // not an nmethod
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   478
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   479
    if (call_f)  f_or_null->do_code_blob(cb);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   480
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   481
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   482
#endif //PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   483
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   484
void CodeCache::verify_clean_inline_caches() {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   485
#ifdef ASSERT
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   486
  FOR_ALL_ALIVE_BLOBS(cb) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   487
    if (cb->is_nmethod()) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   488
      nmethod* nm = (nmethod*)cb;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   489
      assert(!nm->is_unloaded(), "Tautology");
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   490
      nm->verify_clean_inline_caches();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   491
      nm->verify();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   492
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   493
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   494
#endif
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   495
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   496
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   497
void CodeCache::verify_icholder_relocations() {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   498
#ifdef ASSERT
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   499
  // make sure that we aren't leaking icholders
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   500
  int count = 0;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   501
  FOR_ALL_BLOBS(cb) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   502
    if (cb->is_nmethod()) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   503
      nmethod* nm = (nmethod*)cb;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   504
      count += nm->verify_icholder_relocations();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   505
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   506
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   507
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   508
  assert(count + InlineCacheBuffer::pending_icholder_count() + CompiledICHolder::live_not_claimed_count() ==
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   509
         CompiledICHolder::live_count(), "must agree");
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   510
#endif
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   511
}
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   512
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
void CodeCache::gc_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
void CodeCache::gc_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  FOR_ALL_ALIVE_BLOBS(cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
      nmethod *nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
      assert(!nm->is_unloaded(), "Tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
      if (needs_cache_clean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
        nm->cleanup_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
      }
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   525
      DEBUG_ONLY(nm->verify());
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   526
      DEBUG_ONLY(nm->verify_oop_relocations());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  set_needs_cache_clean(false);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   530
  prune_scavenge_root_nmethods();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   531
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   532
  verify_icholder_relocations();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   535
void CodeCache::verify_oops() {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   536
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   537
  VerifyOopClosure voc;
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   538
  FOR_ALL_ALIVE_BLOBS(cb) {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   539
    if (cb->is_nmethod()) {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   540
      nmethod *nm = (nmethod*)cb;
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   541
      nm->oops_do(&voc);
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   542
      nm->verify_oop_relocations();
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   543
    }
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   544
  }
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   545
}
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   546
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   547
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
address CodeCache::first_address() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  assert_locked_or_safepoint(CodeCache_lock);
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
   550
  return (address)_heap->low_boundary();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
address CodeCache::last_address() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  assert_locked_or_safepoint(CodeCache_lock);
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
   556
  return (address)_heap->high();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
17617
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   559
/**
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   560
 * Returns the reverse free ratio. E.g., if 25% (1/4) of the code cache
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   561
 * is free, reverse_free_ratio() returns 4.
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   562
 */
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   563
double CodeCache::reverse_free_ratio() {
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   564
  double unallocated_capacity = (double)(CodeCache::unallocated_capacity() - CodeCacheMinimumFreeSpace);
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   565
  double max_capacity = (double)CodeCache::max_capacity();
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   566
  return max_capacity / unallocated_capacity;
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   567
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
void icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
void CodeCache::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  assert(CodeCacheSegmentSize >= (uintx)CodeEntryAlignment, "CodeCacheSegmentSize must be large enough to align entry points");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  assert(CodeCacheSegmentSize >= (uintx)OptoLoopAlignment,  "CodeCacheSegmentSize must be large enough to align inner loops");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  assert(CodeCacheSegmentSize >= sizeof(jdouble),    "CodeCacheSegmentSize must be large enough to align constants");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  // This was originally just a check of the alignment, causing failure, instead, round
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  // the code cache to the page size.  In particular, Solaris is moving to a larger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  // default page size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  CodeCacheExpansionSize = round_to(CodeCacheExpansionSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  InitialCodeCacheSize = round_to(InitialCodeCacheSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  ReservedCodeCacheSize = round_to(ReservedCodeCacheSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  if (!_heap->reserve(ReservedCodeCacheSize, InitialCodeCacheSize, CodeCacheSegmentSize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    vm_exit_during_initialization("Could not reserve enough space for code cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  MemoryService::add_code_heap_memory_pool(_heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  // Initialize ICache flush mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  // This service is needed for os::register_code_area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  // Give OS a chance to register generated code area.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  // This is used on Windows 64 bit platforms to register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  // Structured Exception Handlers for our generated code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  os::register_code_area(_heap->low_boundary(), _heap->high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
void codeCache_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  CodeCache::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
int CodeCache::number_of_nmethods_with_dependencies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  return _number_of_nmethods_with_dependencies;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
void CodeCache::clear_inline_caches() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    nm->clear_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   617
// Keeps track of time spent for checking dependencies
22921
ee35d5c0b1dc 8034839: jvm hangs with gc/gctests/LoadUnloadGC test
anoll
parents: 22506
diff changeset
   618
NOT_PRODUCT(static elapsedTimer dependentCheckTime;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
int CodeCache::mark_for_deoptimization(DepChange& changes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  // search the hierarchy looking for nmethods which are affected by the loading of this class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  // then search the interfaces this class implements looking for nmethods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  // which might be dependent of the fact that an interface only had one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  // implementor.
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   629
  // nmethod::check_all_dependencies works only correctly, if no safepoint
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   630
  // can happen
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   631
  No_Safepoint_Verifier nsv;
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   632
  for (DepChange::ContextStream str(changes, nsv); str.next(); ) {
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   633
    Klass* d = str.klass();
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   634
    number_of_marked_CodeBlobs += InstanceKlass::cast(d)->mark_dependent_nmethods(changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
#ifndef PRODUCT
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   638
  if (VerifyDependencies) {
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   639
    // Object pointers are used as unique identifiers for dependency arguments. This
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   640
    // is only possible if no safepoint, i.e., GC occurs during the verification code.
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   641
    dependentCheckTime.start();
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   642
    nmethod::check_all_dependencies(changes);
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   643
    dependentCheckTime.stop();
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   644
  }
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   645
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
#ifdef HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
int CodeCache::mark_for_evol_deoptimization(instanceKlassHandle dependee) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  // Deoptimize all methods of the evolving class itself
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   657
  Array<Method*>* old_methods = dependee->methods();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  for (int i = 0; i < old_methods->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    ResourceMark rm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   660
    Method* old_method = old_methods->at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    nmethod *nm = old_method->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    if (nm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
      // ...Already marked in the previous pass; don't count it again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    } else if (nm->is_evol_dependent_on(dependee())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    } else  {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   676
      // flush caches in case they refer to a redefined Method*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
      nm->clear_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
#endif // HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
// Deoptimize all methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
void CodeCache::mark_all_nmethods_for_deoptimization() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  FOR_ALL_ALIVE_NMETHODS(nm) {
26580
8cca7fbe77b8 8056154: JVM crash with EXCEPTION_ACCESS_VIOLATION when there are many threads running
iveresov
parents: 25492
diff changeset
   690
    if (!nm->method()->is_method_handle_intrinsic()) {
8cca7fbe77b8 8056154: JVM crash with EXCEPTION_ACCESS_VIOLATION when there are many threads running
iveresov
parents: 25492
diff changeset
   691
      nm->mark_for_deoptimization();
8cca7fbe77b8 8056154: JVM crash with EXCEPTION_ACCESS_VIOLATION when there are many threads running
iveresov
parents: 25492
diff changeset
   692
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   697
int CodeCache::mark_for_deoptimization(Method* dependee) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    if (nm->is_dependent_on_method(dependee)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
void CodeCache::make_marked_nmethods_zombies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
      // If the nmethod has already been made non-entrant and it can be converted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
      // then zombie it now. Otherwise make it non-entrant and it will eventually
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
      // be zombied when it is no longer seen on the stack. Note that the nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
      // might be "entrant" and not on the stack and so could be zombied immediately
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
      // but we can't tell because we don't track it on stack until it becomes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
      // non-entrant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
      if (nm->is_not_entrant() && nm->can_not_entrant_be_converted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
        nm->make_zombie();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
        nm->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
void CodeCache::make_marked_nmethods_not_entrant() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
      nm->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
void CodeCache::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  _heap->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  FOR_ALL_ALIVE_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    p->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   749
void CodeCache::report_codemem_full() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   750
  _codemem_full_count++;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   751
  EventCodeCacheFull event;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   752
  if (event.should_commit()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   753
    event.set_startAddress((u8)low_bound());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   754
    event.set_commitedTopAddress((u8)high());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   755
    event.set_reservedTopAddress((u8)high_bound());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   756
    event.set_entryCount(nof_blobs());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   757
    event.set_methodCount(nof_nmethods());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   758
    event.set_adaptorCount(nof_adapters());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   759
    event.set_unallocatedCapacity(unallocated_capacity()/K);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   760
    event.set_fullCount(_codemem_full_count);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   761
    event.commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   762
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   763
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   764
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   765
void CodeCache::print_memory_overhead() {
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   766
  size_t wasted_bytes = 0;
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   767
  CodeBlob *cb;
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   768
  for (cb = first(); cb != NULL; cb = next(cb)) {
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   769
    HeapBlock* heap_block = ((HeapBlock*)cb) - 1;
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   770
    wasted_bytes += heap_block->length() * CodeCacheSegmentSize - cb->size();
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   771
  }
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   772
  // Print bytes that are allocated in the freelist
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   773
  ttyLocker ttl;
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   774
  tty->print_cr("Number of elements in freelist: " SSIZE_FORMAT,    freelist_length());
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   775
  tty->print_cr("Allocated in freelist:          " SSIZE_FORMAT "kB",  bytes_allocated_in_freelist()/K);
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   776
  tty->print_cr("Unused bytes in CodeBlobs:      " SSIZE_FORMAT "kB",  (wasted_bytes/K));
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   777
  tty->print_cr("Segment map size:               " SSIZE_FORMAT "kB",  allocated_segments()/K); // 1 byte per segment
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   778
}
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   779
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
// Non-product version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   785
void CodeCache::print_trace(const char* event, CodeBlob* cb, int size) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   786
  if (PrintCodeCache2) {  // Need to add a new flag
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   787
    ResourceMark rm;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   788
    if (size == 0)  size = cb->size();
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   789
    tty->print_cr("CodeCache %s:  addr: " INTPTR_FORMAT ", size: 0x%x", event, p2i(cb), size);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   790
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   791
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   792
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
void CodeCache::print_internals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  int nmethodCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  int runtimeStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  int adapterCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  int deoptimizationStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  int uncommonTrapStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  int bufferBlobCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  int total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  int nmethodAlive = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  int nmethodNotEntrant = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  int nmethodZombie = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  int nmethodUnloaded = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  int nmethodJava = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  int nmethodNative = 0;
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   807
  int max_nm_size = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  CodeBlob *cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  for (cb = first(); cb != NULL; cb = next(cb)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    total++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
      nmethod* nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
      if (Verbose && nm->method() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
        ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
        char *method_name = nm->method()->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
        tty->print("%s", method_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
        if(nm->is_alive()) { tty->print_cr(" alive"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
        if(nm->is_not_entrant()) { tty->print_cr(" not-entrant"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
        if(nm->is_zombie()) { tty->print_cr(" zombie"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
      nmethodCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
      if(nm->is_alive()) { nmethodAlive++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
      if(nm->is_not_entrant()) { nmethodNotEntrant++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
      if(nm->is_zombie()) { nmethodZombie++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
      if(nm->is_unloaded()) { nmethodUnloaded++; }
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   831
      if(nm->method() != NULL && nm->is_native_method()) { nmethodNative++; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
      if(nm->method() != NULL && nm->is_java_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
        nmethodJava++;
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   835
        max_nm_size = MAX2(max_nm_size, nm->size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
    } else if (cb->is_runtime_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
      runtimeStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
    } else if (cb->is_deoptimization_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
      deoptimizationStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
    } else if (cb->is_uncommon_trap_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
      uncommonTrapStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
    } else if (cb->is_adapter_blob()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
      adapterCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    } else if (cb->is_buffer_blob()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
      bufferBlobCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  int bucketSize = 512;
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   851
  int bucketLimit = max_nm_size / bucketSize + 1;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 9630
diff changeset
   852
  int *buckets = NEW_C_HEAP_ARRAY(int, bucketLimit, mtCode);
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   853
  memset(buckets, 0, sizeof(int) * bucketLimit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  for (cb = first(); cb != NULL; cb = next(cb)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
      nmethod* nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
      if(nm->is_java_method()) {
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   859
        buckets[nm->size() / bucketSize]++;
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   860
       }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  }
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   863
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  tty->print_cr("Code Cache Entries (total of %d)",total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  tty->print_cr("nmethods: %d",nmethodCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  tty->print_cr("\talive: %d",nmethodAlive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  tty->print_cr("\tnot_entrant: %d",nmethodNotEntrant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  tty->print_cr("\tzombie: %d",nmethodZombie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  tty->print_cr("\tunloaded: %d",nmethodUnloaded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  tty->print_cr("\tjava: %d",nmethodJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  tty->print_cr("\tnative: %d",nmethodNative);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  tty->print_cr("runtime_stubs: %d",runtimeStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  tty->print_cr("adapters: %d",adapterCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  tty->print_cr("buffer blobs: %d",bufferBlobCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  tty->print_cr("deoptimization_stubs: %d",deoptimizationStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  tty->print_cr("uncommon_traps: %d",uncommonTrapStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  tty->print_cr("\nnmethod size distribution (non-zombie java)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  for(int i=0; i<bucketLimit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    if(buckets[i] != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
      tty->print("%d - %d bytes",i*bucketSize,(i+1)*bucketSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
      tty->fill_to(40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
      tty->print_cr("%d",buckets[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 9630
diff changeset
   889
  FREE_C_HEAP_ARRAY(int, buckets, mtCode);
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   890
  print_memory_overhead();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   893
#endif // !PRODUCT
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   894
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
void CodeCache::print() {
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   896
  print_summary(tty);
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   897
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   898
#ifndef PRODUCT
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   899
  if (!Verbose) return;
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   900
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  CodeBlob_sizes live;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  CodeBlob_sizes dead;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
    if (!p->is_alive()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
      dead.add(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
      live.add(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  tty->print_cr("CodeCache:");
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   913
  tty->print_cr("nmethod dependency checking time %fs", dependentCheckTime.seconds());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  if (!live.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    live.print("live");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  if (!dead.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
    dead.print("dead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   923
  if (WizardMode) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
     // print the oop_map usage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
    int code_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
    int number_of_blobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
    int number_of_oop_maps = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
    int map_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
      if (p->is_alive()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
        number_of_blobs++;
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   932
        code_size += p->code_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
        OopMapSet* set = p->oop_maps();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
        if (set != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
          number_of_oop_maps += set->size();
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   936
          map_size           += set->heap_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
    tty->print_cr("OopMaps");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    tty->print_cr("  #blobs    = %d", number_of_blobs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
    tty->print_cr("  code size = %d", code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
    tty->print_cr("  #oop_maps = %d", number_of_oop_maps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
    tty->print_cr("  map size  = %d", map_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   947
#endif // !PRODUCT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   950
void CodeCache::print_summary(outputStream* st, bool detailed) {
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   951
  size_t total = (_heap->high_boundary() - _heap->low_boundary());
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   952
  st->print_cr("CodeCache: size=" SIZE_FORMAT "Kb used=" SIZE_FORMAT
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
   953
               "Kb max_used=" SIZE_FORMAT "Kb free=" SIZE_FORMAT "Kb",
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   954
               total/K, (total - unallocated_capacity())/K,
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
   955
               maxCodeCacheUsed/K, unallocated_capacity()/K);
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   956
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   957
  if (detailed) {
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   958
    st->print_cr(" bounds [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT "]",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   959
                 p2i(_heap->low_boundary()),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   960
                 p2i(_heap->high()),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   961
                 p2i(_heap->high_boundary()));
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   962
    st->print_cr(" total_blobs=" UINT32_FORMAT " nmethods=" UINT32_FORMAT
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   963
                 " adapters=" UINT32_FORMAT,
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   964
                 nof_blobs(), nof_nmethods(), nof_adapters());
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   965
    st->print_cr(" compilation: %s", CompileBroker::should_compile_new_jobs() ?
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   966
                 "enabled" : Arguments::mode() == Arguments::_int ?
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   967
                 "disabled (interpreter mode)" :
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   968
                 "disabled (not enough contiguous free space left)");
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   969
  }
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   970
}
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   971
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   972
void CodeCache::log_state(outputStream* st) {
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   973
  st->print(" total_blobs='" UINT32_FORMAT "' nmethods='" UINT32_FORMAT "'"
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
   974
            " adapters='" UINT32_FORMAT "' free_code_cache='" SIZE_FORMAT "'",
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   975
            nof_blobs(), nof_nmethods(), nof_adapters(),
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
   976
            unallocated_capacity());
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   977
}
9113
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
   978