hotspot/src/share/vm/code/codeCache.hpp
author neliasso
Thu, 11 Apr 2013 13:57:44 +0200
changeset 17016 78b1c3670525
parent 16615 45c4ee9a9212
child 17132 dffd513b2a8c
permissions -rw-r--r--
8006952: Slow VM due to excessive code cache freelist iteration Summary: Remove continous free block requirement Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
     2
 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5533
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5533
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5533
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    25
#ifndef SHARE_VM_CODE_CODECACHE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    26
#define SHARE_VM_CODE_CODECACHE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    28
#include "code/codeBlob.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    29
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    30
#include "memory/heap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    31
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    32
#include "oops/oopsHierarchy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// The CodeCache implements the code cache for various pieces of generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// code, e.g., compiled java methods, runtime stubs, transition frames, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// The entries in the CodeCache are all CodeBlob's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// Implementation:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//   - Each CodeBlob occupies one chunk of memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//   - Like the offset table in oldspace the zone has at table for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//     locating a method given a addess of an instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class OopClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class DepChange;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class CodeCache : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // CodeHeap is malloc()'ed at startup and never deleted during shutdown,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // so that the generated assembly code is always there when it's needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // This may cause memory leak, but is necessary, for now. See 4423824,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // 4422213 or 4436291 for details.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  static CodeHeap * _heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  static int _number_of_blobs;
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5547
diff changeset
    55
  static int _number_of_adapters;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5547
diff changeset
    56
  static int _number_of_nmethods;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static int _number_of_nmethods_with_dependencies;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  static bool _needs_cache_clean;
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
    59
  static nmethod* _scavenge_root_nmethods;  // linked via nm->scavenge_root_link()
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
    60
  static nmethod* _saved_nmethods;          // linked via nm->saved_nmethod_look()
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  static void verify_if_often() PRODUCT_RETURN;
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
    63
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
    64
  static void mark_scavenge_root_nmethods() PRODUCT_RETURN;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
    65
  static void verify_perm_nmethods(CodeBlobClosure* f_or_null) PRODUCT_RETURN;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
    66
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // Allocation/administration
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 16615
diff changeset
    73
  static CodeBlob* allocate(int size, bool is_critical = false); // allocates a new CodeBlob
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  static void commit(CodeBlob* cb);                 // called when the allocated CodeBlob has been filled
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  static int alignment_unit();                      // guaranteed alignment of all CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  static int alignment_offset();                    // guaranteed offset of first CodeBlob byte within alignment unit (i.e., allocation header)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  static void free(CodeBlob* cb);                   // frees a CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  static void flush();                              // flushes all CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  static bool contains(void *p);                    // returns whether p is included
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  static void blobs_do(void f(CodeBlob* cb));       // iterates over all CodeBlobs
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
    81
  static void blobs_do(CodeBlobClosure* f);         // iterates over all CodeBlobs
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  static void nmethods_do(void f(nmethod* nm));     // iterates over all nmethods
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    83
  static void alive_nmethods_do(void f(nmethod* nm)); // iterates over all alive nmethods
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Lookup
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static CodeBlob* find_blob(void* start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  static nmethod*  find_nmethod(void* start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Lookup that does not fail if you lookup a zombie method (if you call this, be sure to know
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // what you are doing)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static CodeBlob* find_blob_unsafe(void* start) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 9124
diff changeset
    92
    // NMT can walk the stack before code cache is created
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 9124
diff changeset
    93
    if (_heap == NULL) return NULL;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 9124
diff changeset
    94
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    CodeBlob* result = (CodeBlob*)_heap->find_start(start);
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    96
    // this assert is too strong because the heap code will return the
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    97
    // heapblock containing start. That block can often be larger than
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    98
    // the codeBlob itself. If you look up an address that is within
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    99
    // the heapblock but not in the codeBlob you will assert.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   100
    //
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   101
    // Most things will not lookup such bad addresses. However
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   102
    // AsyncGetCallTrace can see intermediate frames and get that kind
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   103
    // of invalid address and so can a developer using hsfind.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   104
    //
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   105
    // The more correct answer is to return NULL if blob_contains() returns
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   106
    // false.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   107
    // assert(result == NULL || result->blob_contains((address)start), "found wrong CodeBlob");
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   108
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   109
    if (result != NULL && !result->blob_contains((address)start)) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   110
      result = NULL;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   111
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  static CodeBlob* first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  static CodeBlob* next (CodeBlob* cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  static CodeBlob* alive(CodeBlob *cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  static nmethod* alive_nmethod(CodeBlob *cb);
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   120
  static nmethod* first_nmethod();
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 4750
diff changeset
   121
  static nmethod* next_nmethod (CodeBlob* cb);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  static int       nof_blobs()                 { return _number_of_blobs; }
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5547
diff changeset
   123
  static int       nof_adapters()              { return _number_of_adapters; }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5547
diff changeset
   124
  static int       nof_nmethods()              { return _number_of_nmethods; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  static void gc_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  static void gc_prologue();
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   129
  static void verify_oops();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // If "unloading_occurred" is true, then unloads (i.e., breaks root links
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // to) any unmarked codeBlobs in the cache.  Sets "marked_for_unloading"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // to "true" iff some code got unloaded.
13878
6e6a462a6cff 7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents: 13728
diff changeset
   133
  static void do_unloading(BoolObjectClosure* is_alive, bool unloading_occurred);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   134
  static void oops_do(OopClosure* f) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   135
    CodeBlobToOopClosure oopc(f, /*do_marking=*/ false);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   136
    blobs_do(&oopc);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   137
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   138
  static void asserted_non_scavengable_nmethods_do(CodeBlobClosure* f = NULL) PRODUCT_RETURN;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   139
  static void scavenge_root_nmethods_do(CodeBlobClosure* f);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   140
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   141
  static nmethod* scavenge_root_nmethods()          { return _scavenge_root_nmethods; }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   142
  static void set_scavenge_root_nmethods(nmethod* nm) { _scavenge_root_nmethods = nm; }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   143
  static void add_scavenge_root_nmethod(nmethod* nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   144
  static void drop_scavenge_root_nmethod(nmethod* nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   145
  static void prune_scavenge_root_nmethods();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Printing/debugging
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   148
  static void print();                           // prints summary
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  static void print_internals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  static void verify();                          // verifies the code cache
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   151
  static void print_trace(const char* event, CodeBlob* cb, int size = 0) PRODUCT_RETURN;
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   152
  static void print_summary(outputStream* st, bool detailed = true); // Prints a summary of the code cache usage
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
   153
  static void log_state(outputStream* st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // The full limits of the codeCache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  static address  low_bound()                    { return (address) _heap->low_boundary(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  static address  high_bound()                   { return (address) _heap->high_boundary(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // Profiling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  static address first_address();                // first address used for CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  static address last_address();                 // last  address used for CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  static size_t  capacity()                      { return _heap->capacity(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  static size_t  max_capacity()                  { return _heap->max_capacity(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static size_t  unallocated_capacity()          { return _heap->unallocated_capacity(); }
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 16615
diff changeset
   165
  static bool    needs_flushing()                { return unallocated_capacity() < CodeCacheFlushingMinimumFreeSpace; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  static bool needs_cache_clean()                { return _needs_cache_clean; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  static void set_needs_cache_clean(bool v)      { _needs_cache_clean = v;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  static void clear_inline_caches();             // clear all inline caches
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   171
  static nmethod* find_and_remove_saved_code(Method* m);
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   172
  static void remove_saved_code(nmethod* nm);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   173
  static void speculatively_disconnect(nmethod* nm);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   174
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // Deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  static int  mark_for_deoptimization(DepChange& changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
#ifdef HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  static int  mark_for_evol_deoptimization(instanceKlassHandle dependee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
#endif // HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  static void mark_all_nmethods_for_deoptimization();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   182
  static int  mark_for_deoptimization(Method* dependee);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  static void make_marked_nmethods_zombies();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  static void make_marked_nmethods_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    // tells how many nmethods have dependencies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  static int number_of_nmethods_with_dependencies();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
   189
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
   190
#endif // SHARE_VM_CODE_CODECACHE_HPP