hotspot/src/share/vm/code/codeCache.cpp
author twisti
Tue, 06 Apr 2010 13:39:52 +0200
changeset 5247 c2b4e525b3e5
parent 4750 71fd601907dc
child 5533 e8d9ff82ec62
permissions -rw-r--r--
6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations Summary: ScavengeRootsInCode can lead to unfixed code-embedded oops. Reviewed-by: kvn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5247
c2b4e525b3e5 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 4750
diff changeset
     2
 * Copyright 1997-2010 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_codeCache.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// Helper class for printing in CodeCache
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class CodeBlob_sizes {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  int count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  int total_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  int header_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  int code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  int stub_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  int relocation_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  int scopes_oop_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  int scopes_data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  int scopes_pcs_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  CodeBlob_sizes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    count            = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    total_size       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    header_size      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    code_size        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    stub_size        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    relocation_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    scopes_oop_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    scopes_data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    scopes_pcs_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  int total()                                    { return total_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  bool is_empty()                                { return count == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  void print(const char* title) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    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
    60
                  count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                  title,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                  total() / K,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
                  header_size             * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
                  relocation_size         * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
                  code_size               * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                  stub_size               * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
                  scopes_oop_size         * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                  scopes_data_size        * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                  scopes_pcs_size         * 100 / total_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  void add(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    total_size       += cb->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    header_size      += cb->header_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    relocation_size  += cb->relocation_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    scopes_oop_size  += cb->oops_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      nmethod *nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
      code_size        += nm->code_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      stub_size        += nm->stub_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
      scopes_data_size += nm->scopes_data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
      scopes_pcs_size  += nm->scopes_pcs_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      code_size        += cb->instructions_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// CodeCache implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
CodeHeap * CodeCache::_heap = new CodeHeap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
int CodeCache::_number_of_blobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
int CodeCache::_number_of_nmethods_with_dependencies = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
bool CodeCache::_needs_cache_clean = false;
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
    98
nmethod* CodeCache::_scavenge_root_nmethods = NULL;
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
    99
nmethod* CodeCache::_saved_nmethods = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
CodeBlob* CodeCache::first() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  return (CodeBlob*)_heap->first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
CodeBlob* CodeCache::next(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  return (CodeBlob*)_heap->next(cb);
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
CodeBlob* CodeCache::alive(CodeBlob *cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  while (cb != NULL && !cb->is_alive()) cb = next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
nmethod* CodeCache::alive_nmethod(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  while (cb != NULL && (!cb->is_alive() || !cb->is_nmethod())) cb = next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  return (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
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::allocate(int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // Do not seize the CodeCache lock here--if the caller has not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // already done so, we are going to lose bigtime, since the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // cache will contain a garbage CodeBlob until the caller can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // run the constructor for the CodeBlob subclass he is busy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // instantiating.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  guarantee(size >= 0, "allocation request must be reasonable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  CodeBlob* cb = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  _number_of_blobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    cb = (CodeBlob*)_heap->allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    if (cb != NULL) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    if (!_heap->expand_by(CodeCacheExpansionSize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      // Expansion failed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    if (PrintCodeCacheExtension) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
      tty->print_cr("code cache extended to [" INTPTR_FORMAT ", " INTPTR_FORMAT "] (%d bytes)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
                    (intptr_t)_heap->begin(), (intptr_t)_heap->end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
                    (address)_heap->end() - (address)_heap->begin());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  verify_if_often();
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   153
  print_trace("allocation", cb, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
void CodeCache::free(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  verify_if_often();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   161
  print_trace("free", cb);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  if (cb->is_nmethod() && ((nmethod *)cb)->has_dependencies()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    _number_of_nmethods_with_dependencies--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  _number_of_blobs--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  _heap->deallocate(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  verify_if_often();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  assert(_number_of_blobs >= 0, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
void CodeCache::commit(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // this is called by nmethod::nmethod, which must already own CodeCache_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  if (cb->is_nmethod() && ((nmethod *)cb)->has_dependencies()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    _number_of_nmethods_with_dependencies++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // flush the hardware I-cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  ICache::invalidate_range(cb->instructions_begin(), cb->instructions_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
void CodeCache::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
// Iteration over CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
#define FOR_ALL_BLOBS(var)       for (CodeBlob *var =       first() ; var != NULL; var =       next(var) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
#define FOR_ALL_ALIVE_BLOBS(var) for (CodeBlob *var = alive(first()); var != NULL; var = alive(next(var)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
#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
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
bool CodeCache::contains(void *p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // It should be ok to call contains without holding a lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  return _heap->contains(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
// 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
   205
// 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
   206
// 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
   207
CodeBlob* CodeCache::find_blob(void* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  CodeBlob* result = find_blob_unsafe(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  if (result == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // We could potientially look up non_entrant methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  guarantee(!result->is_zombie() || result->is_locked_by_vm() || is_error_reported(), "unsafe access to zombie method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
nmethod* CodeCache::find_nmethod(void* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  CodeBlob *cb = find_blob(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  assert(cb == NULL || cb->is_nmethod(), "did not find an nmethod");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  return (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
void CodeCache::blobs_do(void f(CodeBlob* nm)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    f(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
void CodeCache::nmethods_do(void f(nmethod* nm)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  FOR_ALL_BLOBS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    if (nm->is_nmethod()) f((nmethod*)nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
int CodeCache::alignment_unit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  return (int)_heap->alignment_unit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
int CodeCache::alignment_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  return (int)_heap->alignment_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
// Mark code blobs for unloading if they contain otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
// unreachable oops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
void CodeCache::do_unloading(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
                             OopClosure* keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
                             bool unloading_occurred) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  FOR_ALL_ALIVE_BLOBS(cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    cb->do_unloading(is_alive, keep_alive, unloading_occurred);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   259
void CodeCache::blobs_do(CodeBlobClosure* f) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  FOR_ALL_ALIVE_BLOBS(cb) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   262
    f->do_code_blob(cb);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   263
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   264
#ifdef ASSERT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   265
    if (cb->is_nmethod())
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   266
      ((nmethod*)cb)->verify_scavenge_root_oops();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   267
#endif //ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   271
// 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
   272
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
   273
  assert_locked_or_safepoint(CodeCache_lock);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   274
  debug_only(mark_scavenge_root_nmethods());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   275
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   276
  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
   277
    debug_only(cur->clear_scavenge_root_marked());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   278
    assert(cur->scavenge_root_not_marked(), "");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   279
    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
   280
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   281
    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
   282
#ifndef PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   283
    if (TraceScavenge) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   284
      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
   285
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   286
#endif //PRODUCT
5247
c2b4e525b3e5 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 4750
diff changeset
   287
    if (is_live) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   288
      // 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
   289
      f->do_code_blob(cur);
5247
c2b4e525b3e5 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 4750
diff changeset
   290
      cur->fix_oop_relocations();
c2b4e525b3e5 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 4750
diff changeset
   291
    }
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   292
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   293
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   294
  // Check for stray marks.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   295
  debug_only(verify_perm_nmethods(NULL));
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   296
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   297
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   298
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
   299
  assert_locked_or_safepoint(CodeCache_lock);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   300
  nm->set_on_scavenge_root_list();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   301
  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
   302
  set_scavenge_root_nmethods(nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   303
  print_trace("add_scavenge_root", nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   304
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   305
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   306
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
   307
  assert_locked_or_safepoint(CodeCache_lock);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   308
  print_trace("drop_scavenge_root", nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   309
  nmethod* last = NULL;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   310
  nmethod* cur = scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   311
  while (cur != NULL) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   312
    nmethod* next = cur->scavenge_root_link();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   313
    if (cur == nm) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   314
      if (last != NULL)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   315
            last->set_scavenge_root_link(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   316
      else  set_scavenge_root_nmethods(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   317
      nm->set_scavenge_root_link(NULL);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   318
      nm->clear_on_scavenge_root_list();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   319
      return;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   320
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   321
    last = cur;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   322
    cur = next;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   323
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   324
  assert(false, "should have been on list");
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
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   327
void CodeCache::prune_scavenge_root_nmethods() {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   328
  assert_locked_or_safepoint(CodeCache_lock);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   329
  debug_only(mark_scavenge_root_nmethods());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   330
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   331
  nmethod* last = NULL;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   332
  nmethod* cur = scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   333
  while (cur != NULL) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   334
    nmethod* next = cur->scavenge_root_link();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   335
    debug_only(cur->clear_scavenge_root_marked());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   336
    assert(cur->scavenge_root_not_marked(), "");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   337
    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
   338
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   339
    if (!cur->is_zombie() && !cur->is_unloaded()
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   340
        && cur->detect_scavenge_root_oops()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   341
      // Keep it.  Advance 'last' to prevent deletion.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   342
      last = cur;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   343
    } else {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   344
      // 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
   345
      print_trace("prune_scavenge_root", cur);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   346
      cur->set_scavenge_root_link(NULL);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   347
      cur->clear_on_scavenge_root_list();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   348
      if (last != NULL)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   349
            last->set_scavenge_root_link(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   350
      else  set_scavenge_root_nmethods(next);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   351
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   352
    cur = next;
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
#ifndef PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   360
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
   361
  // 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
   362
  mark_scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   363
  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
   364
    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
   365
    cur->clear_scavenge_root_marked();
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
  verify_perm_nmethods(f);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   368
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   369
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   370
// 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
   371
void CodeCache::mark_scavenge_root_nmethods() {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   372
  FOR_ALL_ALIVE_BLOBS(cb) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   373
    if (cb->is_nmethod()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   374
      nmethod *nm = (nmethod*)cb;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   375
      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
   376
      if (nm->on_scavenge_root_list())
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   377
        nm->set_scavenge_root_marked();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   378
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   379
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   380
}
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
// 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
   383
// 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
   384
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
   385
  FOR_ALL_ALIVE_BLOBS(cb) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   386
    bool call_f = (f_or_null != NULL);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   387
    if (cb->is_nmethod()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   388
      nmethod *nm = (nmethod*)cb;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   389
      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
   390
      if (nm->on_scavenge_root_list())
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   391
        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
   392
      nm->verify_scavenge_root_oops();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   393
    } else {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   394
      call_f = false;   // not an nmethod
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   395
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   396
    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
   397
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   398
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   399
#endif //PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   400
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   401
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   402
nmethod* CodeCache::find_and_remove_saved_code(methodOop m) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   403
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   404
  nmethod* saved = _saved_nmethods;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   405
  nmethod* prev = NULL;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   406
  while (saved != NULL) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   407
    if (saved->is_in_use() && saved->method() == m) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   408
      if (prev != NULL) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   409
        prev->set_saved_nmethod_link(saved->saved_nmethod_link());
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   410
      } else {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   411
        _saved_nmethods = saved->saved_nmethod_link();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   412
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   413
      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
   414
      saved->set_speculatively_disconnected(false);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   415
      saved->set_saved_nmethod_link(NULL);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   416
      if (PrintMethodFlushing) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   417
        saved->print_on(tty, " ### nmethod is reconnected");
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   418
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   419
      if (LogCompilation && (xtty != NULL)) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   420
        ttyLocker ttyl;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   421
        xtty->begin_elem("nmethod_reconnected compile_id='%3d'", saved->compile_id());
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   422
        xtty->method(methodOop(m));
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   423
        xtty->stamp();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   424
        xtty->end_elem();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   425
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   426
      return saved;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   427
    }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   428
    prev = saved;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   429
    saved = saved->saved_nmethod_link();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   430
  }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   431
  return NULL;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   432
}
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   433
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   434
void CodeCache::remove_saved_code(nmethod* nm) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   435
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   436
  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
   437
  nmethod* saved = _saved_nmethods;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   438
  nmethod* prev = NULL;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   439
  while (saved != NULL) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   440
    if (saved == nm) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   441
      if (prev != NULL) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   442
        prev->set_saved_nmethod_link(saved->saved_nmethod_link());
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   443
      } else {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   444
        _saved_nmethods = saved->saved_nmethod_link();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   445
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   446
      if (LogCompilation && (xtty != NULL)) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   447
        ttyLocker ttyl;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   448
        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
   449
        xtty->stamp();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   450
        xtty->end_elem();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   451
      }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   452
      return;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   453
    }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   454
    prev = saved;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   455
    saved = saved->saved_nmethod_link();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   456
  }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   457
  ShouldNotReachHere();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   458
}
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   459
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   460
void CodeCache::speculatively_disconnect(nmethod* nm) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   461
  assert_locked_or_safepoint(CodeCache_lock);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   462
  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
   463
  nm->set_saved_nmethod_link(_saved_nmethods);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   464
  _saved_nmethods = nm;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   465
  if (PrintMethodFlushing) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   466
    nm->print_on(tty, " ### nmethod is speculatively disconnected");
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   467
  }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   468
  if (LogCompilation && (xtty != NULL)) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   469
    ttyLocker ttyl;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   470
    xtty->begin_elem("nmethod_disconnected compile_id='%3d'", nm->compile_id());
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   471
    xtty->method(methodOop(nm->method()));
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   472
    xtty->stamp();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   473
    xtty->end_elem();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   474
  }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   475
  nm->method()->clear_code();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   476
  nm->set_speculatively_disconnected(true);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   477
}
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   478
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   479
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
void CodeCache::gc_prologue() {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   481
  assert(!nmethod::oops_do_marking_is_active(), "oops_do_marking_epilogue must be called");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
void CodeCache::gc_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  FOR_ALL_ALIVE_BLOBS(cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
      nmethod *nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
      assert(!nm->is_unloaded(), "Tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
      if (needs_cache_clean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
        nm->cleanup_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
      debug_only(nm->verify();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    cb->fix_oop_relocations();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  set_needs_cache_clean(false);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   499
  prune_scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   500
  assert(!nmethod::oops_do_marking_is_active(), "oops_do_marking_prologue must be called");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
address CodeCache::first_address() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  return (address)_heap->begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
address CodeCache::last_address() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  return (address)_heap->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
void icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
void CodeCache::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  assert(CodeCacheSegmentSize >= (uintx)CodeEntryAlignment, "CodeCacheSegmentSize must be large enough to align entry points");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  assert(CodeCacheSegmentSize >= (uintx)OptoLoopAlignment,  "CodeCacheSegmentSize must be large enough to align inner loops");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  assert(CodeCacheSegmentSize >= sizeof(jdouble),    "CodeCacheSegmentSize must be large enough to align constants");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  // This was originally just a check of the alignment, causing failure, instead, round
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  // the code cache to the page size.  In particular, Solaris is moving to a larger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  // default page size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  CodeCacheExpansionSize = round_to(CodeCacheExpansionSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  InitialCodeCacheSize = round_to(InitialCodeCacheSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  ReservedCodeCacheSize = round_to(ReservedCodeCacheSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  if (!_heap->reserve(ReservedCodeCacheSize, InitialCodeCacheSize, CodeCacheSegmentSize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    vm_exit_during_initialization("Could not reserve enough space for code cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  MemoryService::add_code_heap_memory_pool(_heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  // Initialize ICache flush mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  // This service is needed for os::register_code_area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  // Give OS a chance to register generated code area.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  // This is used on Windows 64 bit platforms to register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  // Structured Exception Handlers for our generated code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  os::register_code_area(_heap->low_boundary(), _heap->high_boundary());
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_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  CodeCache::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
int CodeCache::number_of_nmethods_with_dependencies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  return _number_of_nmethods_with_dependencies;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
void CodeCache::clear_inline_caches() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    nm->clear_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
// used to keep track of how much time is spent in mark_for_deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
static elapsedTimer dependentCheckTime;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
static int dependentCheckCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
int CodeCache::mark_for_deoptimization(DepChange& changes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  dependentCheckTime.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  dependentCheckCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  // search the hierarchy looking for nmethods which are affected by the loading of this class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  // then search the interfaces this class implements looking for nmethods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // which might be dependent of the fact that an interface only had one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  // implementor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  { No_Safepoint_Verifier nsv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    for (DepChange::ContextStream str(changes, nsv); str.next(); ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
      klassOop d = str.klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
      number_of_marked_CodeBlobs += instanceKlass::cast(d)->mark_dependent_nmethods(changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  if (VerifyDependencies) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
    // Turn off dependency tracing while actually testing deps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    NOT_PRODUCT( FlagSetting fs(TraceDependencies, false) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
    FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
      if (!nm->is_marked_for_deoptimization() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
          nm->check_all_dependencies()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
        ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
        tty->print_cr("Should have been marked for deoptimization:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
        changes.print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
        nm->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
        nm->print_dependencies();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  dependentCheckTime.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  return number_of_marked_CodeBlobs;
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
#ifdef HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
int CodeCache::mark_for_evol_deoptimization(instanceKlassHandle dependee) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  // Deoptimize all methods of the evolving class itself
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  objArrayOop old_methods = dependee->methods();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  for (int i = 0; i < old_methods->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    methodOop old_method = (methodOop) old_methods->obj_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    nmethod *nm = old_method->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    if (nm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
      // ...Already marked in the previous pass; don't count it again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    } else if (nm->is_evol_dependent_on(dependee())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    } else  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
      // flush caches in case they refer to a redefined methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
      nm->clear_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
#endif // HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
// Deoptimize all methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
void CodeCache::mark_all_nmethods_for_deoptimization() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
int CodeCache::mark_for_deoptimization(methodOop dependee) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    if (nm->is_dependent_on_method(dependee)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
void CodeCache::make_marked_nmethods_zombies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
      // If the nmethod has already been made non-entrant and it can be converted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
      // then zombie it now. Otherwise make it non-entrant and it will eventually
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
      // be zombied when it is no longer seen on the stack. Note that the nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
      // might be "entrant" and not on the stack and so could be zombied immediately
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
      // but we can't tell because we don't track it on stack until it becomes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
      // non-entrant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
      if (nm->is_not_entrant() && nm->can_not_entrant_be_converted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
        nm->make_zombie();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
        nm->make_not_entrant();
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
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
void CodeCache::make_marked_nmethods_not_entrant() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
      nm->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
void CodeCache::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  _heap->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  FOR_ALL_ALIVE_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    p->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
// Non-product version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
void CodeCache::verify_if_often() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  if (VerifyCodeCacheOften) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
    _heap->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   724
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
   725
  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
   726
    ResourceMark rm;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   727
    if (size == 0)  size = cb->size();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   728
    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
   729
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   730
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   731
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
void CodeCache::print_internals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  int nmethodCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  int runtimeStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  int adapterCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  int deoptimizationStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  int uncommonTrapStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  int bufferBlobCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  int total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  int nmethodAlive = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  int nmethodNotEntrant = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  int nmethodZombie = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  int nmethodUnloaded = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  int nmethodJava = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  int nmethodNative = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  int maxCodeSize = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  CodeBlob *cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  for (cb = first(); cb != NULL; cb = next(cb)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
    total++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
      nmethod* nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
      if (Verbose && nm->method() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
        ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
        char *method_name = nm->method()->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
        tty->print("%s", method_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
        if(nm->is_alive()) { tty->print_cr(" alive"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
        if(nm->is_not_entrant()) { tty->print_cr(" not-entrant"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
        if(nm->is_zombie()) { tty->print_cr(" zombie"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
      nmethodCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
      if(nm->is_alive()) { nmethodAlive++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
      if(nm->is_not_entrant()) { nmethodNotEntrant++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
      if(nm->is_zombie()) { nmethodZombie++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
      if(nm->is_unloaded()) { nmethodUnloaded++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
      if(nm->is_native_method()) { nmethodNative++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
      if(nm->method() != NULL && nm->is_java_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
        nmethodJava++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
        if(nm->code_size() > maxCodeSize) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
          maxCodeSize = nm->code_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
    } else if (cb->is_runtime_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
      runtimeStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    } else if (cb->is_deoptimization_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
      deoptimizationStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    } else if (cb->is_uncommon_trap_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
      uncommonTrapStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    } else if (cb->is_adapter_blob()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
      adapterCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
    } else if (cb->is_buffer_blob()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
      bufferBlobCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  int bucketSize = 512;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  int bucketLimit = maxCodeSize / bucketSize + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  int *buckets = NEW_C_HEAP_ARRAY(int, bucketLimit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  memset(buckets,0,sizeof(int) * bucketLimit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  for (cb = first(); cb != NULL; cb = next(cb)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
      nmethod* nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
      if(nm->is_java_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
        buckets[nm->code_size() / bucketSize]++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  tty->print_cr("Code Cache Entries (total of %d)",total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  tty->print_cr("nmethods: %d",nmethodCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  tty->print_cr("\talive: %d",nmethodAlive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  tty->print_cr("\tnot_entrant: %d",nmethodNotEntrant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  tty->print_cr("\tzombie: %d",nmethodZombie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  tty->print_cr("\tunloaded: %d",nmethodUnloaded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  tty->print_cr("\tjava: %d",nmethodJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  tty->print_cr("\tnative: %d",nmethodNative);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  tty->print_cr("runtime_stubs: %d",runtimeStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  tty->print_cr("adapters: %d",adapterCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  tty->print_cr("buffer blobs: %d",bufferBlobCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  tty->print_cr("deoptimization_stubs: %d",deoptimizationStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  tty->print_cr("uncommon_traps: %d",uncommonTrapStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  tty->print_cr("\nnmethod size distribution (non-zombie java)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  for(int i=0; i<bucketLimit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
    if(buckets[i] != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
      tty->print("%d - %d bytes",i*bucketSize,(i+1)*bucketSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
      tty->fill_to(40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
      tty->print_cr("%d",buckets[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  FREE_C_HEAP_ARRAY(int, buckets);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
void CodeCache::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  CodeBlob_sizes live;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  CodeBlob_sizes dead;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
    if (!p->is_alive()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
      dead.add(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
      live.add(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  tty->print_cr("CodeCache:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  tty->print_cr("nmethod dependency checking time %f", dependentCheckTime.seconds(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
                dependentCheckTime.seconds() / dependentCheckCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  if (!live.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    live.print("live");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  if (!dead.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
    dead.print("dead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  if (Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
     // print the oop_map usage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
    int code_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
    int number_of_blobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    int number_of_oop_maps = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    int map_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
      if (p->is_alive()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
        number_of_blobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
        code_size += p->instructions_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
        OopMapSet* set = p->oop_maps();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
        if (set != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
          number_of_oop_maps += set->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
          map_size   += set->heap_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
    tty->print_cr("OopMaps");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    tty->print_cr("  #blobs    = %d", number_of_blobs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
    tty->print_cr("  code size = %d", code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
    tty->print_cr("  #oop_maps = %d", number_of_oop_maps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    tty->print_cr("  map size  = %d", map_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
#endif // PRODUCT