hotspot/src/share/vm/code/codeCache.cpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 3908 24b55ad4c228
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
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;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
CodeBlob* CodeCache::first() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  return (CodeBlob*)_heap->first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
CodeBlob* CodeCache::next(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  return (CodeBlob*)_heap->next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
CodeBlob* CodeCache::alive(CodeBlob *cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  while (cb != NULL && !cb->is_alive()) cb = next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
nmethod* CodeCache::alive_nmethod(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  while (cb != NULL && (!cb->is_alive() || !cb->is_nmethod())) cb = next(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  return (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
CodeBlob* CodeCache::allocate(int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Do not seize the CodeCache lock here--if the caller has not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // already done so, we are going to lose bigtime, since the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // cache will contain a garbage CodeBlob until the caller can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // run the constructor for the CodeBlob subclass he is busy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // instantiating.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  guarantee(size >= 0, "allocation request must be reasonable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  CodeBlob* cb = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  _number_of_blobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    cb = (CodeBlob*)_heap->allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    if (cb != NULL) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    if (!_heap->expand_by(CodeCacheExpansionSize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      // Expansion failed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    if (PrintCodeCacheExtension) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      tty->print_cr("code cache extended to [" INTPTR_FORMAT ", " INTPTR_FORMAT "] (%d bytes)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
                    (intptr_t)_heap->begin(), (intptr_t)_heap->end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
                    (address)_heap->end() - (address)_heap->begin());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  verify_if_often();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  if (PrintCodeCache2) {        // Need to add a new flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      tty->print_cr("CodeCache allocation:  addr: " INTPTR_FORMAT ", size: 0x%x\n", cb, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
void CodeCache::free(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  verify_if_often();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  if (PrintCodeCache2) {        // Need to add a new flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      tty->print_cr("CodeCache free:  addr: " INTPTR_FORMAT ", size: 0x%x\n", cb, cb->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  if (cb->is_nmethod() && ((nmethod *)cb)->has_dependencies()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    _number_of_nmethods_with_dependencies--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  _number_of_blobs--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  _heap->deallocate(cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  verify_if_often();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  assert(_number_of_blobs >= 0, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
void CodeCache::commit(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // this is called by nmethod::nmethod, which must already own CodeCache_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (cb->is_nmethod() && ((nmethod *)cb)->has_dependencies()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    _number_of_nmethods_with_dependencies++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // flush the hardware I-cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  ICache::invalidate_range(cb->instructions_begin(), cb->instructions_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
void CodeCache::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// Iteration over CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
#define FOR_ALL_BLOBS(var)       for (CodeBlob *var =       first() ; var != NULL; var =       next(var) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
#define FOR_ALL_ALIVE_BLOBS(var) for (CodeBlob *var = alive(first()); var != NULL; var = alive(next(var)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
#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
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
bool CodeCache::contains(void *p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // It should be ok to call contains without holding a lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  return _heap->contains(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
// 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
   209
// 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
   210
// 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
   211
CodeBlob* CodeCache::find_blob(void* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  CodeBlob* result = find_blob_unsafe(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  if (result == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // We could potientially look up non_entrant methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  guarantee(!result->is_zombie() || result->is_locked_by_vm() || is_error_reported(), "unsafe access to zombie method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
nmethod* CodeCache::find_nmethod(void* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  CodeBlob *cb = find_blob(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  assert(cb == NULL || cb->is_nmethod(), "did not find an nmethod");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  return (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
void CodeCache::blobs_do(void f(CodeBlob* nm)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    f(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
void CodeCache::nmethods_do(void f(nmethod* nm)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  FOR_ALL_BLOBS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    if (nm->is_nmethod()) f((nmethod*)nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
int CodeCache::alignment_unit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  return (int)_heap->alignment_unit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
int CodeCache::alignment_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  return (int)_heap->alignment_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
// Mark code blobs for unloading if they contain otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
// unreachable oops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
void CodeCache::do_unloading(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                             OopClosure* keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
                             bool unloading_occurred) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  FOR_ALL_ALIVE_BLOBS(cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    cb->do_unloading(is_alive, keep_alive, unloading_occurred);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
void CodeCache::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  FOR_ALL_ALIVE_BLOBS(cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    cb->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
void CodeCache::gc_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
void CodeCache::gc_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  FOR_ALL_ALIVE_BLOBS(cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
      nmethod *nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      assert(!nm->is_unloaded(), "Tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
      if (needs_cache_clean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
        nm->cleanup_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      debug_only(nm->verify();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    cb->fix_oop_relocations();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  set_needs_cache_clean(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
address CodeCache::first_address() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  return (address)_heap->begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
address CodeCache::last_address() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  return (address)_heap->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
void icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
void CodeCache::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  assert(CodeCacheSegmentSize >= (uintx)CodeEntryAlignment, "CodeCacheSegmentSize must be large enough to align entry points");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  assert(CodeCacheSegmentSize >= (uintx)OptoLoopAlignment,  "CodeCacheSegmentSize must be large enough to align inner loops");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  assert(CodeCacheSegmentSize >= sizeof(jdouble),    "CodeCacheSegmentSize must be large enough to align constants");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  // This was originally just a check of the alignment, causing failure, instead, round
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  // the code cache to the page size.  In particular, Solaris is moving to a larger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  // default page size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  CodeCacheExpansionSize = round_to(CodeCacheExpansionSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  InitialCodeCacheSize = round_to(InitialCodeCacheSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  ReservedCodeCacheSize = round_to(ReservedCodeCacheSize, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  if (!_heap->reserve(ReservedCodeCacheSize, InitialCodeCacheSize, CodeCacheSegmentSize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    vm_exit_during_initialization("Could not reserve enough space for code cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  MemoryService::add_code_heap_memory_pool(_heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // Initialize ICache flush mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // This service is needed for os::register_code_area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  // Give OS a chance to register generated code area.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  // This is used on Windows 64 bit platforms to register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // Structured Exception Handlers for our generated code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  os::register_code_area(_heap->low_boundary(), _heap->high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
void codeCache_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  CodeCache::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
int CodeCache::number_of_nmethods_with_dependencies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  return _number_of_nmethods_with_dependencies;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
void CodeCache::clear_inline_caches() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    nm->clear_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
// used to keep track of how much time is spent in mark_for_deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
static elapsedTimer dependentCheckTime;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
static int dependentCheckCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
int CodeCache::mark_for_deoptimization(DepChange& changes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  dependentCheckTime.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  dependentCheckCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // search the hierarchy looking for nmethods which are affected by the loading of this class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // then search the interfaces this class implements looking for nmethods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // which might be dependent of the fact that an interface only had one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  // implementor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  { No_Safepoint_Verifier nsv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    for (DepChange::ContextStream str(changes, nsv); str.next(); ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
      klassOop d = str.klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
      number_of_marked_CodeBlobs += instanceKlass::cast(d)->mark_dependent_nmethods(changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  if (VerifyDependencies) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    // Turn off dependency tracing while actually testing deps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    NOT_PRODUCT( FlagSetting fs(TraceDependencies, false) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
      if (!nm->is_marked_for_deoptimization() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
          nm->check_all_dependencies()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
        ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
        tty->print_cr("Should have been marked for deoptimization:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
        changes.print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
        nm->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
        nm->print_dependencies();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  dependentCheckTime.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
#ifdef HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
int CodeCache::mark_for_evol_deoptimization(instanceKlassHandle dependee) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // Deoptimize all methods of the evolving class itself
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  objArrayOop old_methods = dependee->methods();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  for (int i = 0; i < old_methods->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    methodOop old_method = (methodOop) old_methods->obj_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    nmethod *nm = old_method->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    if (nm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      // ...Already marked in the previous pass; don't count it again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    } else if (nm->is_evol_dependent_on(dependee())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    } else  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
      // flush caches in case they refer to a redefined methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
      nm->clear_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
#endif // HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
// Deoptimize all methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
void CodeCache::mark_all_nmethods_for_deoptimization() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
int CodeCache::mark_for_deoptimization(methodOop dependee) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    if (nm->is_dependent_on_method(dependee)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
void CodeCache::make_marked_nmethods_zombies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
      // If the nmethod has already been made non-entrant and it can be converted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
      // then zombie it now. Otherwise make it non-entrant and it will eventually
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      // be zombied when it is no longer seen on the stack. Note that the nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
      // might be "entrant" and not on the stack and so could be zombied immediately
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
      // but we can't tell because we don't track it on stack until it becomes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
      // non-entrant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
      if (nm->is_not_entrant() && nm->can_not_entrant_be_converted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
        nm->make_zombie();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
        nm->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
void CodeCache::make_marked_nmethods_not_entrant() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  assert_locked_or_safepoint(CodeCache_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  FOR_ALL_ALIVE_NMETHODS(nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
      nm->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
void CodeCache::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  _heap->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  FOR_ALL_ALIVE_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    p->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
// Non-product version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
void CodeCache::verify_if_often() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  if (VerifyCodeCacheOften) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    _heap->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
void CodeCache::print_internals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  int nmethodCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  int runtimeStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  int adapterCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  int deoptimizationStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  int uncommonTrapStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  int bufferBlobCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  int total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  int nmethodAlive = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  int nmethodNotEntrant = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  int nmethodZombie = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  int nmethodUnloaded = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  int nmethodJava = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  int nmethodNative = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  int maxCodeSize = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  CodeBlob *cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  for (cb = first(); cb != NULL; cb = next(cb)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    total++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
      nmethod* nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
      if (Verbose && nm->method() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
        ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
        char *method_name = nm->method()->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
        tty->print("%s", method_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
        if(nm->is_alive()) { tty->print_cr(" alive"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
        if(nm->is_not_entrant()) { tty->print_cr(" not-entrant"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
        if(nm->is_zombie()) { tty->print_cr(" zombie"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
      nmethodCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
      if(nm->is_alive()) { nmethodAlive++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
      if(nm->is_not_entrant()) { nmethodNotEntrant++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
      if(nm->is_zombie()) { nmethodZombie++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
      if(nm->is_unloaded()) { nmethodUnloaded++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
      if(nm->is_native_method()) { nmethodNative++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      if(nm->method() != NULL && nm->is_java_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
        nmethodJava++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
        if(nm->code_size() > maxCodeSize) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
          maxCodeSize = nm->code_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    } else if (cb->is_runtime_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
      runtimeStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    } else if (cb->is_deoptimization_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
      deoptimizationStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    } else if (cb->is_uncommon_trap_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
      uncommonTrapStubCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    } else if (cb->is_adapter_blob()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
      adapterCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    } else if (cb->is_buffer_blob()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
      bufferBlobCount++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  int bucketSize = 512;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  int bucketLimit = maxCodeSize / bucketSize + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  int *buckets = NEW_C_HEAP_ARRAY(int, bucketLimit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  memset(buckets,0,sizeof(int) * bucketLimit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  for (cb = first(); cb != NULL; cb = next(cb)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
      nmethod* nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
      if(nm->is_java_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
        buckets[nm->code_size() / bucketSize]++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  tty->print_cr("Code Cache Entries (total of %d)",total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  tty->print_cr("nmethods: %d",nmethodCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  tty->print_cr("\talive: %d",nmethodAlive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  tty->print_cr("\tnot_entrant: %d",nmethodNotEntrant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  tty->print_cr("\tzombie: %d",nmethodZombie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  tty->print_cr("\tunloaded: %d",nmethodUnloaded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  tty->print_cr("\tjava: %d",nmethodJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  tty->print_cr("\tnative: %d",nmethodNative);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  tty->print_cr("runtime_stubs: %d",runtimeStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  tty->print_cr("adapters: %d",adapterCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  tty->print_cr("buffer blobs: %d",bufferBlobCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  tty->print_cr("deoptimization_stubs: %d",deoptimizationStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  tty->print_cr("uncommon_traps: %d",uncommonTrapStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  tty->print_cr("\nnmethod size distribution (non-zombie java)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  for(int i=0; i<bucketLimit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    if(buckets[i] != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
      tty->print("%d - %d bytes",i*bucketSize,(i+1)*bucketSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
      tty->fill_to(40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
      tty->print_cr("%d",buckets[i]);
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
  FREE_C_HEAP_ARRAY(int, buckets);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
void CodeCache::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  CodeBlob_sizes live;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  CodeBlob_sizes dead;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    if (!p->is_alive()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
      dead.add(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
      live.add(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  tty->print_cr("CodeCache:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  tty->print_cr("nmethod dependency checking time %f", dependentCheckTime.seconds(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
                dependentCheckTime.seconds() / dependentCheckCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  if (!live.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
    live.print("live");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  if (!dead.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
    dead.print("dead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  if (Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
     // print the oop_map usage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    int code_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    int number_of_blobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    int number_of_oop_maps = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    int map_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
    FOR_ALL_BLOBS(p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
      if (p->is_alive()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
        number_of_blobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
        code_size += p->instructions_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
        OopMapSet* set = p->oop_maps();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
        if (set != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
          number_of_oop_maps += set->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
          map_size   += set->heap_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    tty->print_cr("OopMaps");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    tty->print_cr("  #blobs    = %d", number_of_blobs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    tty->print_cr("  code size = %d", code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    tty->print_cr("  #oop_maps = %d", number_of_oop_maps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    tty->print_cr("  map size  = %d", map_size);
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
#endif // PRODUCT