hotspot/src/share/vm/code/codeCache.hpp
author thartmann
Wed, 28 Jan 2015 07:55:27 +0100
changeset 28730 106944a21769
parent 28374 0558e321c027
child 29338 92297a8bd48e
permissions -rw-r--r--
8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34 Summary: Aligning code heap sizes to large page size if supported. Reviewed-by: kvn, anoll
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
     2
 * Copyright (c) 1997, 2015, 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"
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    29
#include "code/nmethod.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    30
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    31
#include "memory/heap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    32
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    33
#include "oops/oopsHierarchy.hpp"
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    34
#include "runtime/mutexLocker.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    35
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// The CodeCache implements the code cache for various pieces of generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// code, e.g., compiled java methods, runtime stubs, transition frames, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// The entries in the CodeCache are all CodeBlob's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    40
// -- Implementation --
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    41
// The CodeCache consists of one or more CodeHeaps, each of which contains
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    42
// CodeBlobs of a specific CodeBlobType. Currently heaps for the following
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    43
// types are available:
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26796
diff changeset
    44
//  - Non-nmethods: Non-nmethods like Buffers, Adapters and Runtime Stubs
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    45
//  - Profiled nmethods: nmethods that are profiled, i.e., those
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    46
//    executed at level 2 or 3
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    47
//  - Non-Profiled nmethods: nmethods that are not profiled, i.e., those
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    48
//    executed at level 1 or 4 and native methods
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    49
//  - All: Used for code of all types if code cache segmentation is disabled.
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    50
//
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26796
diff changeset
    51
// In the rare case of the non-nmethod code heap getting full, non-nmethod code
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    52
// will be stored in the non-profiled code heap as a fallback solution.
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    53
//
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    54
// Depending on the availability of compilers and TieredCompilation there
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    55
// may be fewer heaps. The size of the code heaps depends on the values of
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    56
// ReservedCodeCacheSize, NonProfiledCodeHeapSize and ProfiledCodeHeapSize
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    57
// (see CodeCache::heap_available(..) and CodeCache::initialize_heaps(..)
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    58
// for details).
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    59
//
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    60
// Code cache segmentation is controlled by the flag SegmentedCodeCache.
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    61
// If turned off, all code types are stored in a single code heap. By default
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    62
// code cache segmentation is turned on if TieredCompilation is enabled and
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    63
// ReservedCodeCacheSize >= 240 MB.
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    64
//
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    65
// All methods of the CodeCache accepting a CodeBlobType only apply to
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    66
// CodeBlobs of the given type. For example, iteration over the
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    67
// CodeBlobs of a specific type can be done by using CodeCache::first_blob(..)
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    68
// and CodeCache::next_blob(..) and providing the corresponding CodeBlobType.
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    69
//
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    70
// IMPORTANT: If you add new CodeHeaps to the code cache or change the
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    71
// existing ones, make sure to adapt the dtrace scripts (jhelper.d) for
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    72
// Solaris and BSD.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
class OopClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
class DepChange;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
class CodeCache : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  friend class VMStructs;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    79
  friend class NMethodIterator;
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
    80
  friend class WhiteBox;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
 private:
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    82
  // CodeHeaps of the cache
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    83
  static GrowableArray<CodeHeap*>* _heaps;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    84
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    85
  static address _low_bound;                            // Lower bound of CodeHeap addresses
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    86
  static address _high_bound;                           // Upper bound of CodeHeap addresses
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    87
  static int _number_of_blobs;                          // Total number of CodeBlobs in the cache
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    88
  static int _number_of_adapters;                       // Total number of Adapters in the cache
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    89
  static int _number_of_nmethods;                       // Total number of nmethods in the cache
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    90
  static int _number_of_nmethods_with_dependencies;     // Total number of nmethods with dependencies
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    91
  static bool _needs_cache_clean;                       // True if inline caches of the nmethods needs to be flushed
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    92
  static nmethod* _scavenge_root_nmethods;              // linked via nm->scavenge_root_link()
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    93
  static int _codemem_full_count;                       // Number of times a CodeHeap in the cache was full
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
    95
  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
    96
  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
    97
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    98
  // CodeHeap management
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    99
  static void initialize_heaps();                             // Initializes the CodeHeaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   100
  // Creates a new heap with the given name and size, containing CodeBlobs of the given type
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28374
diff changeset
   101
  static void add_heap(ReservedSpace rs, const char* name, int code_blob_type);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
   102
  static CodeHeap* get_code_heap(const CodeBlob* cb);         // Returns the CodeHeap for the given CodeBlob
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   103
  static CodeHeap* get_code_heap(int code_blob_type);         // Returns the CodeHeap for the given CodeBlobType
27410
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 26942
diff changeset
   104
  // Returns the name of the VM option to set the size of the corresponding CodeHeap
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 26942
diff changeset
   105
  static const char* get_code_heap_flag_name(int code_blob_type);
26942
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   106
  static bool heap_available(int code_blob_type);             // Returns true if an own CodeHeap for the given CodeBlobType is available
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28374
diff changeset
   107
  static size_t heap_alignment();                             // Returns the alignment of the CodeHeaps in bytes
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   108
  static ReservedCodeSpace reserve_heap_memory(size_t size);  // Reserves one continuous chunk of memory for the CodeHeaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   109
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   110
  // Iteration
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   111
  static CodeBlob* first_blob(CodeHeap* heap);                // Returns the first CodeBlob on the given CodeHeap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   112
  static CodeBlob* first_blob(int code_blob_type);            // Returns the first CodeBlob of the given type
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   113
  static CodeBlob* next_blob(CodeHeap* heap, CodeBlob* cb);   // Returns the first alive CodeBlob on the given CodeHeap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   114
  static CodeBlob* next_blob(CodeBlob* cb);                   // Returns the next CodeBlob of the given type succeeding the given CodeBlob
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   115
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   116
  static size_t bytes_allocated_in_freelists();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   117
  static int    allocated_segments();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   118
  static size_t freelists_length();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   119
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Allocation/administration
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   125
  static CodeBlob* allocate(int size, int code_blob_type); // allocates a new CodeBlob
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   126
  static void commit(CodeBlob* cb);                        // called when the allocated CodeBlob has been filled
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   127
  static int  alignment_unit();                            // guaranteed alignment of all CodeBlobs
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   128
  static int  alignment_offset();                          // guaranteed offset of first CodeBlob byte within alignment unit (i.e., allocation header)
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   129
  static void free(CodeBlob* cb);                          // frees a CodeBlob
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   130
  static bool contains(void *p);                           // returns whether p is included
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   131
  static void blobs_do(void f(CodeBlob* cb));              // iterates over all CodeBlobs
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   132
  static void blobs_do(CodeBlobClosure* f);                // iterates over all CodeBlobs
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   133
  static void nmethods_do(void f(nmethod* nm));            // iterates over all nmethods
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   134
  static void alive_nmethods_do(void f(nmethod* nm));      // iterates over all alive nmethods
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Lookup
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   137
  static CodeBlob* find_blob(void* start);              // Returns the CodeBlob containing the given address
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   138
  static CodeBlob* find_blob_unsafe(void* start);       // Same as find_blob but does not fail if looking up a zombie method
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   139
  static nmethod*  find_nmethod(void* start);           // Returns the nmethod containing the given address
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 9124
diff changeset
   140
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   141
  static int       nof_blobs()      { return _number_of_blobs; }      // Returns the total number of CodeBlobs in the cache
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   142
  static int       nof_adapters()   { return _number_of_adapters; }   // Returns the total number of Adapters in the cache
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   143
  static int       nof_nmethods()   { return _number_of_nmethods; }   // Returns the total number of nmethods in the cache
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  static void gc_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  static void gc_prologue();
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   148
  static void verify_oops();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // If "unloading_occurred" is true, then unloads (i.e., breaks root links
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // to) any unmarked codeBlobs in the cache.  Sets "marked_for_unloading"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // to "true" iff some code got unloaded.
13878
6e6a462a6cff 7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents: 13728
diff changeset
   152
  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
   153
  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
   154
  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
   155
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   156
  static nmethod* scavenge_root_nmethods()            { return _scavenge_root_nmethods; }
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 670
diff changeset
   157
  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
   158
  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
   159
  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
   160
  static void prune_scavenge_root_nmethods();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // Printing/debugging
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   163
  static void print();                           // prints summary
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static void print_internals();
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 20290
diff changeset
   165
  static void print_memory_overhead();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  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
   167
  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
   168
  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
   169
  static void log_state(outputStream* st);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   170
  static const char* get_code_heap_name(int code_blob_type)  { return (heap_available(code_blob_type) ? get_code_heap(code_blob_type)->name() : "Unused"); }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   171
  static void report_codemem_full(int code_blob_type, bool print);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25492
diff changeset
   173
  // Dcmd (Diagnostic commands)
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25492
diff changeset
   174
  static void print_codelist(outputStream* st);
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25492
diff changeset
   175
  static void print_layout(outputStream* st);
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25492
diff changeset
   176
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // The full limits of the codeCache
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   178
  static address low_bound()                          { return _low_bound; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   179
  static address high_bound()                         { return _high_bound; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // Profiling
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   182
  static size_t capacity();
26942
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   183
  static size_t unallocated_capacity(int code_blob_type);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   184
  static size_t unallocated_capacity();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   185
  static size_t max_capacity();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   186
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   187
  static double reverse_free_ratio(int code_blob_type);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   188
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   189
  static bool needs_cache_clean()                     { return _needs_cache_clean; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   190
  static void set_needs_cache_clean(bool v)           { _needs_cache_clean = v;    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   191
  static void clear_inline_caches();                  // clear all inline caches
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   193
  // Returns the CodeBlobType for nmethods of the given compilation level
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   194
  static int get_code_blob_type(int comp_level) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   195
    if (comp_level == CompLevel_none ||
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   196
        comp_level == CompLevel_simple ||
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   197
        comp_level == CompLevel_full_optimization) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   198
      // Non profiled methods
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   199
      return CodeBlobType::MethodNonProfiled;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   200
    } else if (comp_level == CompLevel_limited_profile ||
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   201
               comp_level == CompLevel_full_profile) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   202
      // Profiled methods
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   203
      return CodeBlobType::MethodProfiled;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   204
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   205
    ShouldNotReachHere();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   206
    return 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   207
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   209
  static void verify_clean_inline_caches();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   210
  static void verify_icholder_relocations();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   211
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Deoptimization
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   213
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  static int  mark_for_deoptimization(DepChange& changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
#ifdef HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  static int  mark_for_evol_deoptimization(instanceKlassHandle dependee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
#endif // HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   219
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  static void mark_all_nmethods_for_deoptimization();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   221
  static int  mark_for_deoptimization(Method* dependee);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  static void make_marked_nmethods_zombies();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  static void make_marked_nmethods_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   225
  // Flushing and deoptimization
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   226
  static void flush_dependents_on(instanceKlassHandle dependee);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   227
  static void flush_dependents_on(Handle call_site, Handle method_handle);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   228
#ifdef HOTSWAP
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   229
  // Flushing and deoptimization in case of evolution
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   230
  static void flush_evol_dependents_on(instanceKlassHandle dependee);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   231
#endif // HOTSWAP
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   232
  // Support for fullspeed debugging
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   233
  static void flush_dependents_on_method(methodHandle dependee);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27642
diff changeset
   234
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   235
  // tells how many nmethods have dependencies
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  static int number_of_nmethods_with_dependencies();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   237
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
   238
  static int get_codemem_full_count() { return _codemem_full_count; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
   240
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   241
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   242
// Iterator to iterate over nmethods in the CodeCache.
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   243
class NMethodIterator : public StackObj {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   244
 private:
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   245
  CodeBlob* _code_blob;   // Current CodeBlob
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   246
  int _code_blob_type;    // Refers to current CodeHeap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   247
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   248
 public:
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   249
  NMethodIterator() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   250
    initialize(NULL); // Set to NULL, initialized by first call to next()
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   251
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   252
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   253
  NMethodIterator(nmethod* nm) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   254
    initialize(nm);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   255
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   256
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   257
  // Advance iterator to next nmethod
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   258
  bool next() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   259
    assert_locked_or_safepoint(CodeCache_lock);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   260
    assert(_code_blob_type < CodeBlobType::NumTypes, "end reached");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   261
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   262
    bool result = next_nmethod();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   263
    while (!result && (_code_blob_type < CodeBlobType::MethodProfiled)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   264
      // Advance to next code heap if segmented code cache
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   265
      _code_blob_type++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   266
      result = next_nmethod();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   267
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   268
    return result;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   269
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   270
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   271
  // Advance iterator to next alive nmethod
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   272
  bool next_alive() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   273
    bool result = next();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   274
    while(result && !_code_blob->is_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   275
      result = next();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   276
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   277
    return result;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   278
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   279
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   280
  bool end()        const   { return _code_blob == NULL; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   281
  nmethod* method() const   { return (nmethod*)_code_blob; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   282
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   283
private:
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   284
  // Initialize iterator to given nmethod
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   285
  void initialize(nmethod* nm) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   286
    _code_blob = (CodeBlob*)nm;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   287
    if (!SegmentedCodeCache) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   288
      // Iterate over all CodeBlobs
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   289
      _code_blob_type = CodeBlobType::All;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   290
    } else if (nm != NULL) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   291
      _code_blob_type = CodeCache::get_code_blob_type(nm->comp_level());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   292
    } else {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   293
      // Only iterate over method code heaps, starting with non-profiled
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   294
      _code_blob_type = CodeBlobType::MethodNonProfiled;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   295
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   296
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   297
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   298
  // Advance iterator to the next nmethod in the current code heap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   299
  bool next_nmethod() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   300
    // Get first method CodeBlob
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   301
    if (_code_blob == NULL) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   302
      _code_blob = CodeCache::first_blob(_code_blob_type);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   303
      if (_code_blob == NULL) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   304
        return false;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   305
      } else if (_code_blob->is_nmethod()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   306
        return true;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   307
      }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   308
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   309
    // Search for next method CodeBlob
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   310
    _code_blob = CodeCache::next_blob(_code_blob);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   311
    while (_code_blob != NULL && !_code_blob->is_nmethod()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   312
      _code_blob = CodeCache::next_blob(_code_blob);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   313
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   314
    return _code_blob != NULL;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   315
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   316
};
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   317
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
   318
#endif // SHARE_VM_CODE_CODECACHE_HPP