hotspot/src/share/vm/code/codeCache.cpp
author coleenp
Sat, 01 Sep 2012 13:25:18 -0400
changeset 13728 882756847a04
parent 13391 30245956af37
child 13878 6e6a462a6cff
permissions -rw-r--r--
6964458: Reimplement class meta-data storage to use native memory Summary: Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland Contributed-by: jmasa <jon.masamitsu@oracle.com>, stefank <stefan.karlsson@oracle.com>, mgerdin <mikael.gerdin@oracle.com>, never <tom.rodriguez@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
     2
 * Copyright (c) 1997, 2012, 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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    33
#include "gc_implementation/shared/markSweep.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    34
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    35
#include "memory/gcLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    36
#include "memory/iterator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    37
#include "memory/resourceArea.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    38
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    39
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    40
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    41
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    42
#include "runtime/icache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    43
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    44
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    45
#include "services/memoryService.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    46
#include "utilities/xmlstream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// Helper class for printing in CodeCache
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
class CodeBlob_sizes {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  int count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  int total_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  int header_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  int code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  int stub_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  int relocation_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  int scopes_oop_size;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    59
  int scopes_metadata_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  int scopes_data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  int scopes_pcs_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  CodeBlob_sizes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    count            = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    total_size       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    header_size      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    code_size        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    stub_size        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    relocation_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    scopes_oop_size  = 0;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    72
    scopes_metadata_size  = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    scopes_data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    scopes_pcs_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  int total()                                    { return total_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  bool is_empty()                                { return count == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  void print(const char* title) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    tty->print_cr(" #%d %s = %dK (hdr %d%%,  loc %d%%, code %d%%, stub %d%%, [oops %d%%, data %d%%, pcs %d%%])",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
                  count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                  title,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                  total() / K,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                  header_size             * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                  relocation_size         * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                  code_size               * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                  stub_size               * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                  scopes_oop_size         * 100 / total_size,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    90
                  scopes_metadata_size    * 100 / total_size,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                  scopes_data_size        * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                  scopes_pcs_size         * 100 / total_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void add(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    total_size       += cb->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    header_size      += cb->header_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    relocation_size  += cb->relocation_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    if (cb->is_nmethod()) {
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   101
      nmethod* nm = cb->as_nmethod_or_null();
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   102
      code_size        += nm->insts_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
      stub_size        += nm->stub_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   105
      scopes_oop_size  += nm->oops_size();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   106
      scopes_metadata_size  += nm->metadata_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      scopes_data_size += nm->scopes_data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      scopes_pcs_size  += nm->scopes_pcs_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    } else {
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   110
      code_size        += cb->code_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// CodeCache implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
CodeHeap * CodeCache::_heap = new CodeHeap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
int CodeCache::_number_of_blobs = 0;
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   120
int CodeCache::_number_of_adapters = 0;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   121
int CodeCache::_number_of_nmethods = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
int CodeCache::_number_of_nmethods_with_dependencies = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
bool CodeCache::_needs_cache_clean = false;
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   124
nmethod* CodeCache::_scavenge_root_nmethods = NULL;
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   125
nmethod* CodeCache::_saved_nmethods = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
CodeBlob* CodeCache::first() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  return (CodeBlob*)_heap->first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
CodeBlob* CodeCache::next(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  return (CodeBlob*)_heap->next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
CodeBlob* CodeCache::alive(CodeBlob *cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  while (cb != NULL && !cb->is_alive()) cb = next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
nmethod* CodeCache::alive_nmethod(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  while (cb != NULL && (!cb->is_alive() || !cb->is_nmethod())) cb = next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  return (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   153
nmethod* CodeCache::first_nmethod() {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   154
  assert_locked_or_safepoint(CodeCache_lock);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   155
  CodeBlob* cb = first();
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   156
  while (cb != NULL && !cb->is_nmethod()) {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   157
    cb = next(cb);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   158
  }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   159
  return (nmethod*)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
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   162
nmethod* CodeCache::next_nmethod (CodeBlob* cb) {
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   163
  assert_locked_or_safepoint(CodeCache_lock);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   164
  cb = next(cb);
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   165
  while (cb != NULL && !cb->is_nmethod()) {
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
  }
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   168
  return (nmethod*)cb;
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   169
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
CodeBlob* CodeCache::allocate(int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // Do not seize the CodeCache lock here--if the caller has not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // already done so, we are going to lose bigtime, since the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // cache will contain a garbage CodeBlob until the caller can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // run the constructor for the CodeBlob subclass he is busy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // instantiating.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  guarantee(size >= 0, "allocation request must be reasonable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  CodeBlob* cb = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  _number_of_blobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    cb = (CodeBlob*)_heap->allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    if (cb != NULL) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    if (!_heap->expand_by(CodeCacheExpansionSize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      // Expansion failed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    if (PrintCodeCacheExtension) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
      tty->print_cr("code cache extended to [" INTPTR_FORMAT ", " INTPTR_FORMAT "] (%d bytes)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
                    (intptr_t)_heap->begin(), (intptr_t)_heap->end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
                    (address)_heap->end() - (address)_heap->begin());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  verify_if_often();
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   196
  print_trace("allocation", cb, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
void CodeCache::free(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  verify_if_often();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   204
  print_trace("free", cb);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   205
  if (cb->is_nmethod()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   206
    _number_of_nmethods--;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   207
    if (((nmethod *)cb)->has_dependencies()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   208
      _number_of_nmethods_with_dependencies--;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   209
    }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   210
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   211
  if (cb->is_adapter_blob()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   212
    _number_of_adapters--;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  _number_of_blobs--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  _heap->deallocate(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  verify_if_often();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  assert(_number_of_blobs >= 0, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
void CodeCache::commit(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // this is called by nmethod::nmethod, which must already own CodeCache_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  assert_locked_or_safepoint(CodeCache_lock);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   226
  if (cb->is_nmethod()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   227
    _number_of_nmethods++;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   228
    if (((nmethod *)cb)->has_dependencies()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   229
      _number_of_nmethods_with_dependencies++;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   230
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   232
  if (cb->is_adapter_blob()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   233
    _number_of_adapters++;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   234
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   235
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // flush the hardware I-cache
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   237
  ICache::invalidate_range(cb->content_begin(), cb->content_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
void CodeCache::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  Unimplemented();
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;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // We could potientially look up non_entrant methods
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.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
void CodeCache::do_unloading(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
                             OopClosure* keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
                             bool unloading_occurred) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  assert_locked_or_safepoint(CodeCache_lock);
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   316
  FOR_ALL_ALIVE_NMETHODS(nm) {
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   317
    nm->do_unloading(is_alive, keep_alive, unloading_occurred);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   321
void CodeCache::blobs_do(CodeBlobClosure* f) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  FOR_ALL_ALIVE_BLOBS(cb) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   324
    f->do_code_blob(cb);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   325
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   326
#ifdef ASSERT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   327
    if (cb->is_nmethod())
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   328
      ((nmethod*)cb)->verify_scavenge_root_oops();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   329
#endif //ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   333
// 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
   334
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
   335
  assert_locked_or_safepoint(CodeCache_lock);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   336
  debug_only(mark_scavenge_root_nmethods());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   337
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   338
  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
   339
    debug_only(cur->clear_scavenge_root_marked());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   340
    assert(cur->scavenge_root_not_marked(), "");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   341
    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
   342
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   343
    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
   344
#ifndef PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   345
    if (TraceScavenge) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   346
      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
   347
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   348
#endif //PRODUCT
5247
c2b4e525b3e5 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 4750
diff changeset
   349
    if (is_live) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   350
      // 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
   351
      f->do_code_blob(cur);
5247
c2b4e525b3e5 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 4750
diff changeset
   352
    }
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   353
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   354
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   355
  // Check for stray marks.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   356
  debug_only(verify_perm_nmethods(NULL));
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
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   359
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
   360
  assert_locked_or_safepoint(CodeCache_lock);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   361
  nm->set_on_scavenge_root_list();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   362
  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
   363
  set_scavenge_root_nmethods(nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   364
  print_trace("add_scavenge_root", nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   365
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   366
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   367
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
   368
  assert_locked_or_safepoint(CodeCache_lock);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   369
  print_trace("drop_scavenge_root", nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   370
  nmethod* last = NULL;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   371
  nmethod* cur = scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   372
  while (cur != NULL) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   373
    nmethod* next = cur->scavenge_root_link();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   374
    if (cur == nm) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   375
      if (last != NULL)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   376
            last->set_scavenge_root_link(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   377
      else  set_scavenge_root_nmethods(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   378
      nm->set_scavenge_root_link(NULL);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   379
      nm->clear_on_scavenge_root_list();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   380
      return;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   381
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   382
    last = cur;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   383
    cur = next;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   384
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   385
  assert(false, "should have been on list");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   386
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   387
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   388
void CodeCache::prune_scavenge_root_nmethods() {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   389
  assert_locked_or_safepoint(CodeCache_lock);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   390
  debug_only(mark_scavenge_root_nmethods());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   391
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   392
  nmethod* last = NULL;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   393
  nmethod* cur = scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   394
  while (cur != NULL) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   395
    nmethod* next = cur->scavenge_root_link();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   396
    debug_only(cur->clear_scavenge_root_marked());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   397
    assert(cur->scavenge_root_not_marked(), "");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   398
    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
   399
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   400
    if (!cur->is_zombie() && !cur->is_unloaded()
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   401
        && cur->detect_scavenge_root_oops()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   402
      // Keep it.  Advance 'last' to prevent deletion.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   403
      last = cur;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   404
    } else {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   405
      // 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
   406
      print_trace("prune_scavenge_root", cur);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   407
      cur->set_scavenge_root_link(NULL);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   408
      cur->clear_on_scavenge_root_list();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   409
      if (last != NULL)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   410
            last->set_scavenge_root_link(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   411
      else  set_scavenge_root_nmethods(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   412
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   413
    cur = next;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   414
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   415
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   416
  // Check for stray marks.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   417
  debug_only(verify_perm_nmethods(NULL));
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   418
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   419
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   420
#ifndef PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   421
void CodeCache::asserted_non_scavengable_nmethods_do(CodeBlobClosure* f) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   422
  // 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
   423
  mark_scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   424
  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
   425
    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
   426
    cur->clear_scavenge_root_marked();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   427
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   428
  verify_perm_nmethods(f);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   429
}
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
// 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
   432
void CodeCache::mark_scavenge_root_nmethods() {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   433
  FOR_ALL_ALIVE_BLOBS(cb) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   434
    if (cb->is_nmethod()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   435
      nmethod *nm = (nmethod*)cb;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   436
      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
   437
      if (nm->on_scavenge_root_list())
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   438
        nm->set_scavenge_root_marked();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   439
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   440
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   441
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   442
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   443
// 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
   444
// 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
   445
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
   446
  FOR_ALL_ALIVE_BLOBS(cb) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   447
    bool call_f = (f_or_null != NULL);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   448
    if (cb->is_nmethod()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   449
      nmethod *nm = (nmethod*)cb;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   450
      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
   451
      if (nm->on_scavenge_root_list())
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   452
        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
   453
      nm->verify_scavenge_root_oops();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   454
    } else {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   455
      call_f = false;   // not an nmethod
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   456
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   457
    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
   458
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   459
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   460
#endif //PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   461
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   462
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   463
nmethod* CodeCache::find_and_remove_saved_code(Method* m) {
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   464
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   465
  nmethod* saved = _saved_nmethods;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   466
  nmethod* prev = NULL;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   467
  while (saved != NULL) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   468
    if (saved->is_in_use() && saved->method() == m) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   469
      if (prev != NULL) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   470
        prev->set_saved_nmethod_link(saved->saved_nmethod_link());
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   471
      } else {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   472
        _saved_nmethods = saved->saved_nmethod_link();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   473
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   474
      assert(saved->is_speculatively_disconnected(), "shouldn't call for other nmethods");
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   475
      saved->set_speculatively_disconnected(false);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   476
      saved->set_saved_nmethod_link(NULL);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   477
      if (PrintMethodFlushing) {
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   478
        saved->print_on(tty, " ### nmethod is reconnected\n");
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   479
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   480
      if (LogCompilation && (xtty != NULL)) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   481
        ttyLocker ttyl;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   482
        xtty->begin_elem("nmethod_reconnected compile_id='%3d'", saved->compile_id());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   483
        xtty->method(m);
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   484
        xtty->stamp();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   485
        xtty->end_elem();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   486
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   487
      return saved;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   488
    }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   489
    prev = saved;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   490
    saved = saved->saved_nmethod_link();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   491
  }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   492
  return NULL;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   493
}
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   494
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   495
void CodeCache::remove_saved_code(nmethod* nm) {
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   496
  // For conc swpr this will be called with CodeCache_lock taken by caller
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   497
  assert_locked_or_safepoint(CodeCache_lock);
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   498
  assert(nm->is_speculatively_disconnected(), "shouldn't call for other nmethods");
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   499
  nmethod* saved = _saved_nmethods;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   500
  nmethod* prev = NULL;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   501
  while (saved != NULL) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   502
    if (saved == nm) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   503
      if (prev != NULL) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   504
        prev->set_saved_nmethod_link(saved->saved_nmethod_link());
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   505
      } else {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   506
        _saved_nmethods = saved->saved_nmethod_link();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   507
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   508
      if (LogCompilation && (xtty != NULL)) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   509
        ttyLocker ttyl;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   510
        xtty->begin_elem("nmethod_removed compile_id='%3d'", nm->compile_id());
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   511
        xtty->stamp();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   512
        xtty->end_elem();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   513
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   514
      return;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   515
    }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   516
    prev = saved;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   517
    saved = saved->saved_nmethod_link();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   518
  }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   519
  ShouldNotReachHere();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   520
}
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   521
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   522
void CodeCache::speculatively_disconnect(nmethod* nm) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   523
  assert_locked_or_safepoint(CodeCache_lock);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   524
  assert(nm->is_in_use() && !nm->is_speculatively_disconnected(), "should only disconnect live nmethods");
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   525
  nm->set_saved_nmethod_link(_saved_nmethods);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   526
  _saved_nmethods = nm;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   527
  if (PrintMethodFlushing) {
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   528
    nm->print_on(tty, " ### nmethod is speculatively disconnected\n");
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   529
  }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   530
  if (LogCompilation && (xtty != NULL)) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   531
    ttyLocker ttyl;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   532
    xtty->begin_elem("nmethod_disconnected compile_id='%3d'", nm->compile_id());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   533
    xtty->method(nm->method());
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   534
    xtty->stamp();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   535
    xtty->end_elem();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   536
  }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   537
  nm->method()->clear_code();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   538
  nm->set_speculatively_disconnected(true);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   539
}
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   540
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   541
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
void CodeCache::gc_prologue() {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   543
  assert(!nmethod::oops_do_marking_is_active(), "oops_do_marking_epilogue must be called");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
void CodeCache::gc_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  FOR_ALL_ALIVE_BLOBS(cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      nmethod *nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      assert(!nm->is_unloaded(), "Tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      if (needs_cache_clean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
        nm->cleanup_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
      }
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   556
      DEBUG_ONLY(nm->verify());
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   557
      nm->fix_oop_relocations();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  set_needs_cache_clean(false);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   561
  prune_scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   562
  assert(!nmethod::oops_do_marking_is_active(), "oops_do_marking_prologue must be called");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   563
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   564
#ifdef ASSERT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   565
  // make sure that we aren't leaking icholders
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   566
  int count = 0;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   567
  FOR_ALL_BLOBS(cb) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   568
    if (cb->is_nmethod()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   569
      RelocIterator iter((nmethod*)cb);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   570
      while(iter.next()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   571
        if (iter.type() == relocInfo::virtual_call_type) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   572
          if (CompiledIC::is_icholder_call_site(iter.virtual_call_reloc())) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   573
            CompiledIC *ic = CompiledIC_at(iter.reloc());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   574
            if (TraceCompiledIC) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   575
              tty->print("noticed icholder " INTPTR_FORMAT " ", ic->cached_icholder());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   576
              ic->print();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   577
            }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   578
            assert(ic->cached_icholder() != NULL, "must be non-NULL");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   579
            count++;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   580
          }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   581
        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   582
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   583
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   584
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   585
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   586
  assert(count + InlineCacheBuffer::pending_icholder_count() + CompiledICHolder::live_not_claimed_count() ==
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   587
         CompiledICHolder::live_count(), "must agree");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   588
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   592
void CodeCache::verify_oops() {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   593
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   594
  VerifyOopClosure voc;
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   595
  FOR_ALL_ALIVE_BLOBS(cb) {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   596
    if (cb->is_nmethod()) {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   597
      nmethod *nm = (nmethod*)cb;
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   598
      nm->oops_do(&voc);
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   599
      nm->verify_oop_relocations();
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   600
    }
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   601
  }
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   602
}
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   603
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   604
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
address CodeCache::first_address() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  return (address)_heap->begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
address CodeCache::last_address() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  return (address)_heap->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
void icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
void CodeCache::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  assert(CodeCacheSegmentSize >= (uintx)CodeEntryAlignment, "CodeCacheSegmentSize must be large enough to align entry points");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  assert(CodeCacheSegmentSize >= (uintx)OptoLoopAlignment,  "CodeCacheSegmentSize must be large enough to align inner loops");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  assert(CodeCacheSegmentSize >= sizeof(jdouble),    "CodeCacheSegmentSize must be large enough to align constants");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  // This was originally just a check of the alignment, causing failure, instead, round
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  // the code cache to the page size.  In particular, Solaris is moving to a larger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  // default page size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  CodeCacheExpansionSize = round_to(CodeCacheExpansionSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  InitialCodeCacheSize = round_to(InitialCodeCacheSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  ReservedCodeCacheSize = round_to(ReservedCodeCacheSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  if (!_heap->reserve(ReservedCodeCacheSize, InitialCodeCacheSize, CodeCacheSegmentSize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
    vm_exit_during_initialization("Could not reserve enough space for code cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  MemoryService::add_code_heap_memory_pool(_heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  // Initialize ICache flush mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  // This service is needed for os::register_code_area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  // Give OS a chance to register generated code area.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  // This is used on Windows 64 bit platforms to register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  // Structured Exception Handlers for our generated code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  os::register_code_area(_heap->low_boundary(), _heap->high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
void codeCache_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  CodeCache::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
int CodeCache::number_of_nmethods_with_dependencies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  return _number_of_nmethods_with_dependencies;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
void CodeCache::clear_inline_caches() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    nm->clear_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
// used to keep track of how much time is spent in mark_for_deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
static elapsedTimer dependentCheckTime;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
static int dependentCheckCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
int CodeCache::mark_for_deoptimization(DepChange& changes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  dependentCheckTime.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  dependentCheckCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  // search the hierarchy looking for nmethods which are affected by the loading of this class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  // then search the interfaces this class implements looking for nmethods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  // which might be dependent of the fact that an interface only had one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  // implementor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  { No_Safepoint_Verifier nsv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    for (DepChange::ContextStream str(changes, nsv); str.next(); ) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   690
      Klass* d = str.klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   691
      number_of_marked_CodeBlobs += InstanceKlass::cast(d)->mark_dependent_nmethods(changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  if (VerifyDependencies) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    // Turn off dependency tracing while actually testing deps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
    NOT_PRODUCT( FlagSetting fs(TraceDependencies, false) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
    FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
      if (!nm->is_marked_for_deoptimization() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
          nm->check_all_dependencies()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
        ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
        tty->print_cr("Should have been marked for deoptimization:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
        changes.print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
        nm->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
        nm->print_dependencies();
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  dependentCheckTime.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
#ifdef HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
int CodeCache::mark_for_evol_deoptimization(instanceKlassHandle dependee) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  // 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
   724
  Array<Method*>* old_methods = dependee->methods();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  for (int i = 0; i < old_methods->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    ResourceMark rm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   727
    Method* old_method = old_methods->at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    nmethod *nm = old_method->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    if (nm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
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
      // ...Already marked in the previous pass; don't count it again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    } else if (nm->is_evol_dependent_on(dependee())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    } else  {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   743
      // flush caches in case they refer to a redefined Method*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
      nm->clear_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
#endif // HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
// Deoptimize all methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
void CodeCache::mark_all_nmethods_for_deoptimization() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
    nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   762
int CodeCache::mark_for_deoptimization(Method* dependee) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    if (nm->is_dependent_on_method(dependee)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
void CodeCache::make_marked_nmethods_zombies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
      // If the nmethod has already been made non-entrant and it can be converted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
      // then zombie it now. Otherwise make it non-entrant and it will eventually
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
      // be zombied when it is no longer seen on the stack. Note that the nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
      // might be "entrant" and not on the stack and so could be zombied immediately
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
      // but we can't tell because we don't track it on stack until it becomes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
      // non-entrant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
      if (nm->is_not_entrant() && nm->can_not_entrant_be_converted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
        nm->make_zombie();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
        nm->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
void CodeCache::make_marked_nmethods_not_entrant() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      nm->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
void CodeCache::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  _heap->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  FOR_ALL_ALIVE_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    p->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
// Non-product version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
void CodeCache::verify_if_often() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  if (VerifyCodeCacheOften) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
    _heap->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   825
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
   826
  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
   827
    ResourceMark rm;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   828
    if (size == 0)  size = cb->size();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   829
    tty->print_cr("CodeCache %s:  addr: " INTPTR_FORMAT ", size: 0x%x", event, cb, size);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   830
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   831
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   832
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
void CodeCache::print_internals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  int nmethodCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  int runtimeStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  int adapterCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  int deoptimizationStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  int uncommonTrapStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  int bufferBlobCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  int total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  int nmethodAlive = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  int nmethodNotEntrant = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  int nmethodZombie = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  int nmethodUnloaded = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  int nmethodJava = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  int nmethodNative = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  int maxCodeSize = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  CodeBlob *cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  for (cb = first(); cb != NULL; cb = next(cb)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    total++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
      nmethod* nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
      if (Verbose && nm->method() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
        ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
        char *method_name = nm->method()->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
        tty->print("%s", method_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
        if(nm->is_alive()) { tty->print_cr(" alive"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
        if(nm->is_not_entrant()) { tty->print_cr(" not-entrant"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
        if(nm->is_zombie()) { tty->print_cr(" zombie"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
      nmethodCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
      if(nm->is_alive()) { nmethodAlive++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
      if(nm->is_not_entrant()) { nmethodNotEntrant++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
      if(nm->is_zombie()) { nmethodZombie++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
      if(nm->is_unloaded()) { nmethodUnloaded++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
      if(nm->is_native_method()) { nmethodNative++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
      if(nm->method() != NULL && nm->is_java_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
        nmethodJava++;
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   875
        if (nm->insts_size() > maxCodeSize) {
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   876
          maxCodeSize = nm->insts_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    } else if (cb->is_runtime_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
      runtimeStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    } else if (cb->is_deoptimization_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
      deoptimizationStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    } else if (cb->is_uncommon_trap_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
      uncommonTrapStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    } else if (cb->is_adapter_blob()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
      adapterCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    } else if (cb->is_buffer_blob()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
      bufferBlobCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  int bucketSize = 512;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  int bucketLimit = maxCodeSize / bucketSize + 1;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 9630
diff changeset
   894
  int *buckets = NEW_C_HEAP_ARRAY(int, bucketLimit, mtCode);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  memset(buckets,0,sizeof(int) * bucketLimit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  for (cb = first(); cb != NULL; cb = next(cb)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
      nmethod* nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
      if(nm->is_java_method()) {
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   901
        buckets[nm->insts_size() / bucketSize]++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  tty->print_cr("Code Cache Entries (total of %d)",total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  tty->print_cr("nmethods: %d",nmethodCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  tty->print_cr("\talive: %d",nmethodAlive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  tty->print_cr("\tnot_entrant: %d",nmethodNotEntrant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  tty->print_cr("\tzombie: %d",nmethodZombie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  tty->print_cr("\tunloaded: %d",nmethodUnloaded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  tty->print_cr("\tjava: %d",nmethodJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  tty->print_cr("\tnative: %d",nmethodNative);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  tty->print_cr("runtime_stubs: %d",runtimeStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  tty->print_cr("adapters: %d",adapterCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  tty->print_cr("buffer blobs: %d",bufferBlobCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  tty->print_cr("deoptimization_stubs: %d",deoptimizationStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  tty->print_cr("uncommon_traps: %d",uncommonTrapStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  tty->print_cr("\nnmethod size distribution (non-zombie java)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  for(int i=0; i<bucketLimit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    if(buckets[i] != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
      tty->print("%d - %d bytes",i*bucketSize,(i+1)*bucketSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
      tty->fill_to(40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
      tty->print_cr("%d",buckets[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 9630
diff changeset
   930
  FREE_C_HEAP_ARRAY(int, buckets, mtCode);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
void CodeCache::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  CodeBlob_sizes live;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  CodeBlob_sizes dead;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    if (!p->is_alive()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
      dead.add(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
      live.add(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  tty->print_cr("CodeCache:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  tty->print_cr("nmethod dependency checking time %f", dependentCheckTime.seconds(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
                dependentCheckTime.seconds() / dependentCheckCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  if (!live.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
    live.print("live");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  if (!dead.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
    dead.print("dead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  if (Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
     // print the oop_map usage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
    int code_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
    int number_of_blobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
    int number_of_oop_maps = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
    int map_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
    FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
      if (p->is_alive()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
        number_of_blobs++;
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   967
        code_size += p->code_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
        OopMapSet* set = p->oop_maps();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
        if (set != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
          number_of_oop_maps += set->size();
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   971
          map_size           += set->heap_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
    tty->print_cr("OopMaps");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
    tty->print_cr("  #blobs    = %d", number_of_blobs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
    tty->print_cr("  code size = %d", code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
    tty->print_cr("  #oop_maps = %d", number_of_oop_maps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    tty->print_cr("  map size  = %d", map_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
#endif // PRODUCT
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   985
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   986
void CodeCache::print_bounds(outputStream* st) {
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   987
  st->print_cr("Code Cache  [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT ")",
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   988
               _heap->low_boundary(),
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   989
               _heap->high(),
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   990
               _heap->high_boundary());
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   991
  st->print_cr(" total_blobs=" UINT32_FORMAT " nmethods=" UINT32_FORMAT
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   992
               " adapters=" UINT32_FORMAT " free_code_cache=" SIZE_FORMAT "Kb"
7715
12998f95a334 7008325: CodeCache exhausted on sparc starting from hs20b04
kvn
parents: 7397
diff changeset
   993
               " largest_free_block=" SIZE_FORMAT,
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   994
               nof_blobs(), nof_nmethods(), nof_adapters(),
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   995
               unallocated_capacity()/K, largest_free_block());
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   996
}
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   997
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   998
void CodeCache::log_state(outputStream* st) {
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   999
  st->print(" total_blobs='" UINT32_FORMAT "' nmethods='" UINT32_FORMAT "'"
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1000
            " adapters='" UINT32_FORMAT "' free_code_cache='" SIZE_FORMAT "'"
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1001
            " largest_free_block='" SIZE_FORMAT "'",
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1002
            nof_blobs(), nof_nmethods(), nof_adapters(),
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1003
            unallocated_capacity(), largest_free_block());
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1004
}
9113
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1005
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1006
size_t CodeCache::largest_free_block() {
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1007
  // This is called both with and without CodeCache_lock held so
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1008
  // handle both cases.
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1009
  if (CodeCache_lock->owned_by_self()) {
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1010
    return _heap->largest_free_block();
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1011
  } else {
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1012
    MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1013
    return _heap->largest_free_block();
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1014
  }
e53283b68ac7 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 8725
diff changeset
  1015
}