author | coleenp |
Thu, 27 Jul 2017 18:06:41 -0400 | |
changeset 46727 | 6e4a84748e2c |
parent 46647 | 634dc786bf96 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43945
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_CODE_CODECACHE_HPP |
26 |
#define SHARE_VM_CODE_CODECACHE_HPP |
|
27 |
||
28 |
#include "code/codeBlob.hpp" |
|
26796 | 29 |
#include "code/nmethod.hpp" |
7397 | 30 |
#include "memory/allocation.hpp" |
31 |
#include "memory/heap.hpp" |
|
32 |
#include "oops/instanceKlass.hpp" |
|
33 |
#include "oops/oopsHierarchy.hpp" |
|
26796 | 34 |
#include "runtime/mutexLocker.hpp" |
7397 | 35 |
|
1 | 36 |
// The CodeCache implements the code cache for various pieces of generated |
37 |
// code, e.g., compiled java methods, runtime stubs, transition frames, etc. |
|
38 |
// The entries in the CodeCache are all CodeBlob's. |
|
39 |
||
26796 | 40 |
// -- Implementation -- |
41 |
// The CodeCache consists of one or more CodeHeaps, each of which contains |
|
42 |
// CodeBlobs of a specific CodeBlobType. Currently heaps for the following |
|
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 | 45 |
// - Profiled nmethods: nmethods that are profiled, i.e., those |
46 |
// executed at level 2 or 3 |
|
47 |
// - Non-Profiled nmethods: nmethods that are not profiled, i.e., those |
|
48 |
// executed at level 1 or 4 and native methods |
|
49 |
// - All: Used for code of all types if code cache segmentation is disabled. |
|
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 | 52 |
// will be stored in the non-profiled code heap as a fallback solution. |
53 |
// |
|
54 |
// Depending on the availability of compilers and TieredCompilation there |
|
55 |
// may be fewer heaps. The size of the code heaps depends on the values of |
|
56 |
// ReservedCodeCacheSize, NonProfiledCodeHeapSize and ProfiledCodeHeapSize |
|
57 |
// (see CodeCache::heap_available(..) and CodeCache::initialize_heaps(..) |
|
58 |
// for details). |
|
59 |
// |
|
60 |
// Code cache segmentation is controlled by the flag SegmentedCodeCache. |
|
61 |
// If turned off, all code types are stored in a single code heap. By default |
|
62 |
// code cache segmentation is turned on if TieredCompilation is enabled and |
|
63 |
// ReservedCodeCacheSize >= 240 MB. |
|
64 |
// |
|
65 |
// All methods of the CodeCache accepting a CodeBlobType only apply to |
|
66 |
// CodeBlobs of the given type. For example, iteration over the |
|
67 |
// CodeBlobs of a specific type can be done by using CodeCache::first_blob(..) |
|
68 |
// and CodeCache::next_blob(..) and providing the corresponding CodeBlobType. |
|
69 |
// |
|
70 |
// IMPORTANT: If you add new CodeHeaps to the code cache or change the |
|
71 |
// existing ones, make sure to adapt the dtrace scripts (jhelper.d) for |
|
72 |
// Solaris and BSD. |
|
1 | 73 |
|
74 |
class OopClosure; |
|
36300
5b47f168b948
7177745: JSR292: Many Callsite relinkages cause target method to always run in interpreter mode
vlivanov
parents:
35123
diff
changeset
|
75 |
class KlassDepChange; |
1 | 76 |
|
77 |
class CodeCache : AllStatic { |
|
78 |
friend class VMStructs; |
|
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
34182
diff
changeset
|
79 |
friend class JVMCIVMStructs; |
42650 | 80 |
template <class T, class Filter> friend class CodeBlobIterator; |
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
81 |
friend class WhiteBox; |
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
31348
diff
changeset
|
82 |
friend class CodeCacheLoader; |
1 | 83 |
private: |
26796 | 84 |
// CodeHeaps of the cache |
85 |
static GrowableArray<CodeHeap*>* _heaps; |
|
42650 | 86 |
static GrowableArray<CodeHeap*>* _compiled_heaps; |
87 |
static GrowableArray<CodeHeap*>* _nmethod_heaps; |
|
45622
3e4f81c922de
8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents:
43945
diff
changeset
|
88 |
static GrowableArray<CodeHeap*>* _allocable_heaps; |
26796 | 89 |
|
90 |
static address _low_bound; // Lower bound of CodeHeap addresses |
|
91 |
static address _high_bound; // Upper bound of CodeHeap addresses |
|
92 |
static int _number_of_nmethods_with_dependencies; // Total number of nmethods with dependencies |
|
93 |
static bool _needs_cache_clean; // True if inline caches of the nmethods needs to be flushed |
|
94 |
static nmethod* _scavenge_root_nmethods; // linked via nm->scavenge_root_link() |
|
1 | 95 |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
670
diff
changeset
|
96 |
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
|
97 |
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
|
98 |
|
26796 | 99 |
// CodeHeap management |
100 |
static void initialize_heaps(); // Initializes the CodeHeaps |
|
34182
82d1b1696016
8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents:
34158
diff
changeset
|
101 |
// Check the code heap sizes set by the user via command line |
82d1b1696016
8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents:
34158
diff
changeset
|
102 |
static void check_heap_sizes(size_t non_nmethod_size, size_t profiled_size, size_t non_profiled_size, size_t cache_size, bool all_set); |
26796 | 103 |
// 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
|
104 |
static void add_heap(ReservedSpace rs, const char* name, int code_blob_type); |
46647
634dc786bf96
8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents:
46632
diff
changeset
|
105 |
static CodeHeap* get_code_heap_containing(void* p); // Returns the CodeHeap containing the given pointer, or NULL |
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
106 |
static CodeHeap* get_code_heap(const CodeBlob* cb); // Returns the CodeHeap for the given CodeBlob |
26796 | 107 |
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
|
108 |
// 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
|
109 |
static const char* get_code_heap_flag_name(int code_blob_type); |
28730
106944a21769
8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents:
28374
diff
changeset
|
110 |
static size_t heap_alignment(); // Returns the alignment of the CodeHeaps in bytes |
26796 | 111 |
static ReservedCodeSpace reserve_heap_memory(size_t size); // Reserves one continuous chunk of memory for the CodeHeaps |
112 |
||
113 |
// Iteration |
|
114 |
static CodeBlob* first_blob(CodeHeap* heap); // Returns the first CodeBlob on the given CodeHeap |
|
115 |
static CodeBlob* first_blob(int code_blob_type); // Returns the first CodeBlob of the given type |
|
42650 | 116 |
static CodeBlob* next_blob(CodeHeap* heap, CodeBlob* cb); // Returns the next CodeBlob on the given CodeHeap |
26796 | 117 |
|
118 |
static size_t bytes_allocated_in_freelists(); |
|
119 |
static int allocated_segments(); |
|
120 |
static size_t freelists_length(); |
|
18025 | 121 |
|
36591
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
122 |
static void set_scavenge_root_nmethods(nmethod* nm) { _scavenge_root_nmethods = nm; } |
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
123 |
static void prune_scavenge_root_nmethods(); |
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
124 |
static void unlink_scavenge_root_nmethod(nmethod* nm, nmethod* prev); |
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
125 |
|
42650 | 126 |
// Make private to prevent unsafe calls. Not all CodeBlob*'s are embedded in a CodeHeap. |
127 |
static bool contains(CodeBlob *p) { fatal("don't call me!"); return false; } |
|
128 |
||
1 | 129 |
public: |
130 |
// Initialization |
|
131 |
static void initialize(); |
|
132 |
||
42650 | 133 |
static int code_heap_compare(CodeHeap* const &lhs, CodeHeap* const &rhs); |
134 |
||
135 |
static void add_heap(CodeHeap* heap); |
|
136 |
static const GrowableArray<CodeHeap*>* heaps() { return _heaps; } |
|
137 |
static const GrowableArray<CodeHeap*>* compiled_heaps() { return _compiled_heaps; } |
|
138 |
static const GrowableArray<CodeHeap*>* nmethod_heaps() { return _nmethod_heaps; } |
|
139 |
||
1 | 140 |
// Allocation/administration |
40863
f5fec6a2dc9e
8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents:
38133
diff
changeset
|
141 |
static CodeBlob* allocate(int size, int code_blob_type, int orig_code_blob_type = CodeBlobType::All); // allocates a new CodeBlob |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27410
diff
changeset
|
142 |
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
|
143 |
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
|
144 |
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
|
145 |
static void free(CodeBlob* cb); // frees a CodeBlob |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27410
diff
changeset
|
146 |
static bool contains(void *p); // returns whether p is included |
42650 | 147 |
static bool contains(nmethod* nm); // returns whether nm is included |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27410
diff
changeset
|
148 |
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
|
149 |
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
|
150 |
static void nmethods_do(void f(nmethod* nm)); // iterates over all nmethods |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37289
diff
changeset
|
151 |
static void metadata_do(void f(Metadata* m)); // iterates over metadata in alive nmethods |
1 | 152 |
|
153 |
// Lookup |
|
26796 | 154 |
static CodeBlob* find_blob(void* start); // Returns the CodeBlob containing the given address |
155 |
static CodeBlob* find_blob_unsafe(void* start); // Same as find_blob but does not fail if looking up a zombie method |
|
156 |
static nmethod* find_nmethod(void* start); // Returns the nmethod containing the given address |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37289
diff
changeset
|
157 |
static CompiledMethod* find_compiled(void* start); |
13195 | 158 |
|
34158
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
159 |
static int blob_count(); // Returns the total number of CodeBlobs in the cache |
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
160 |
static int blob_count(int code_blob_type); |
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
161 |
static int adapter_count(); // Returns the total number of Adapters in the cache |
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
162 |
static int adapter_count(int code_blob_type); |
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
163 |
static int nmethod_count(); // Returns the total number of nmethods in the cache |
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
164 |
static int nmethod_count(int code_blob_type); |
1 | 165 |
|
166 |
// GC support |
|
167 |
static void gc_epilogue(); |
|
168 |
static void gc_prologue(); |
|
8724
693c6b883b54
7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents:
8672
diff
changeset
|
169 |
static void verify_oops(); |
1 | 170 |
// If "unloading_occurred" is true, then unloads (i.e., breaks root links |
171 |
// to) any unmarked codeBlobs in the cache. Sets "marked_for_unloading" |
|
172 |
// to "true" iff some code got unloaded. |
|
13878
6e6a462a6cff
7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents:
13728
diff
changeset
|
173 |
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
|
174 |
static void asserted_non_scavengable_nmethods_do(CodeBlobClosure* f = NULL) PRODUCT_RETURN; |
36591
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
175 |
|
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
176 |
// Apply f to every live code blob in scavengable nmethods. Prune nmethods |
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
177 |
// from the list of scavengable nmethods if f->fix_relocations() and a nmethod |
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
178 |
// no longer has scavengable oops. If f->fix_relocations(), then f must copy |
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
179 |
// objects to their new location immediately to avoid fixing nmethods on the |
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
180 |
// basis of the old object locations. |
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35123
diff
changeset
|
181 |
static void scavenge_root_nmethods_do(CodeBlobToOopClosure* f); |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
670
diff
changeset
|
182 |
|
26796 | 183 |
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
|
184 |
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
|
185 |
static void drop_scavenge_root_nmethod(nmethod* nm); |
1 | 186 |
|
187 |
// Printing/debugging |
|
15201
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
13878
diff
changeset
|
188 |
static void print(); // prints summary |
1 | 189 |
static void print_internals(); |
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
20290
diff
changeset
|
190 |
static void print_memory_overhead(); |
1 | 191 |
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
|
192 |
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
|
193 |
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
|
194 |
static void log_state(outputStream* st); |
26796 | 195 |
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"); } |
196 |
static void report_codemem_full(int code_blob_type, bool print); |
|
1 | 197 |
|
26587 | 198 |
// Dcmd (Diagnostic commands) |
199 |
static void print_codelist(outputStream* st); |
|
200 |
static void print_layout(outputStream* st); |
|
201 |
||
1 | 202 |
// The full limits of the codeCache |
26796 | 203 |
static address low_bound() { return _low_bound; } |
34158
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
204 |
static address low_bound(int code_blob_type); |
26796 | 205 |
static address high_bound() { return _high_bound; } |
34158
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
206 |
static address high_bound(int code_blob_type); |
1 | 207 |
|
42650 | 208 |
// Have to use far call instructions to call this pc. |
209 |
static bool is_far_target(address pc); |
|
210 |
||
1 | 211 |
// Profiling |
26796 | 212 |
static size_t capacity(); |
26942
fa5ea7ff078d
8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents:
26919
diff
changeset
|
213 |
static size_t unallocated_capacity(int code_blob_type); |
26796 | 214 |
static size_t unallocated_capacity(); |
215 |
static size_t max_capacity(); |
|
216 |
||
217 |
static double reverse_free_ratio(int code_blob_type); |
|
218 |
||
219 |
static bool needs_cache_clean() { return _needs_cache_clean; } |
|
220 |
static void set_needs_cache_clean(bool v) { _needs_cache_clean = v; } |
|
221 |
static void clear_inline_caches(); // clear all inline caches |
|
37289
9989add27bf4
8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents:
36593
diff
changeset
|
222 |
static void cleanup_inline_caches(); |
1 | 223 |
|
34158
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
224 |
// Returns true if an own CodeHeap for the given CodeBlobType is available |
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
225 |
static bool heap_available(int code_blob_type); |
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
226 |
|
42650 | 227 |
// Returns the CodeBlobType for the given CompiledMethod |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37289
diff
changeset
|
228 |
static int get_code_blob_type(CompiledMethod* cm) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37289
diff
changeset
|
229 |
return get_code_heap(cm)->code_blob_type(); |
31348
c28f02c7abb5
8077279: assert(ic->is_clean()) failed: IC should be clean
sjohanss
parents:
31037
diff
changeset
|
230 |
} |
c28f02c7abb5
8077279: assert(ic->is_clean()) failed: IC should be clean
sjohanss
parents:
31037
diff
changeset
|
231 |
|
42650 | 232 |
static bool code_blob_type_accepts_compiled(int type) { |
233 |
bool result = type == CodeBlobType::All || type <= CodeBlobType::MethodProfiled; |
|
234 |
AOT_ONLY( result = result || type == CodeBlobType::AOT; ) |
|
235 |
return result; |
|
236 |
} |
|
237 |
||
238 |
static bool code_blob_type_accepts_nmethod(int type) { |
|
239 |
return type == CodeBlobType::All || type <= CodeBlobType::MethodProfiled; |
|
240 |
} |
|
241 |
||
45622
3e4f81c922de
8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents:
43945
diff
changeset
|
242 |
static bool code_blob_type_accepts_allocable(int type) { |
3e4f81c922de
8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents:
43945
diff
changeset
|
243 |
return type <= CodeBlobType::All; |
3e4f81c922de
8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents:
43945
diff
changeset
|
244 |
} |
3e4f81c922de
8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents:
43945
diff
changeset
|
245 |
|
3e4f81c922de
8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents:
43945
diff
changeset
|
246 |
|
31348
c28f02c7abb5
8077279: assert(ic->is_clean()) failed: IC should be clean
sjohanss
parents:
31037
diff
changeset
|
247 |
// Returns the CodeBlobType for the given compilation level |
26796 | 248 |
static int get_code_blob_type(int comp_level) { |
249 |
if (comp_level == CompLevel_none || |
|
250 |
comp_level == CompLevel_simple || |
|
251 |
comp_level == CompLevel_full_optimization) { |
|
252 |
// Non profiled methods |
|
253 |
return CodeBlobType::MethodNonProfiled; |
|
254 |
} else if (comp_level == CompLevel_limited_profile || |
|
255 |
comp_level == CompLevel_full_profile) { |
|
256 |
// Profiled methods |
|
257 |
return CodeBlobType::MethodProfiled; |
|
258 |
} |
|
259 |
ShouldNotReachHere(); |
|
260 |
return 0; |
|
261 |
} |
|
1 | 262 |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
263 |
static void verify_clean_inline_caches(); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
264 |
static void verify_icholder_relocations(); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
265 |
|
1 | 266 |
// Deoptimization |
28374
0558e321c027
8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents:
27642
diff
changeset
|
267 |
private: |
36300
5b47f168b948
7177745: JSR292: Many Callsite relinkages cause target method to always run in interpreter mode
vlivanov
parents:
35123
diff
changeset
|
268 |
static int mark_for_deoptimization(KlassDepChange& changes); |
1 | 269 |
#ifdef HOTSWAP |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43945
diff
changeset
|
270 |
static int mark_for_evol_deoptimization(InstanceKlass* dependee); |
1 | 271 |
#endif // HOTSWAP |
272 |
||
28374
0558e321c027
8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents:
27642
diff
changeset
|
273 |
public: |
1 | 274 |
static void mark_all_nmethods_for_deoptimization(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
275 |
static int mark_for_deoptimization(Method* dependee); |
1 | 276 |
static void make_marked_nmethods_not_entrant(); |
277 |
||
28374
0558e321c027
8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents:
27642
diff
changeset
|
278 |
// Flushing and deoptimization |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43945
diff
changeset
|
279 |
static void flush_dependents_on(InstanceKlass* dependee); |
28374
0558e321c027
8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents:
27642
diff
changeset
|
280 |
#ifdef HOTSWAP |
0558e321c027
8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents:
27642
diff
changeset
|
281 |
// Flushing and deoptimization in case of evolution |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43945
diff
changeset
|
282 |
static void flush_evol_dependents_on(InstanceKlass* dependee); |
28374
0558e321c027
8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents:
27642
diff
changeset
|
283 |
#endif // HOTSWAP |
0558e321c027
8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents:
27642
diff
changeset
|
284 |
// Support for fullspeed debugging |
46727
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
46647
diff
changeset
|
285 |
static void flush_dependents_on_method(const methodHandle& dependee); |
28374
0558e321c027
8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents:
27642
diff
changeset
|
286 |
|
26796 | 287 |
// tells how many nmethods have dependencies |
1 | 288 |
static int number_of_nmethods_with_dependencies(); |
18025 | 289 |
|
34158
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
290 |
static int get_codemem_full_count(int code_blob_type) { |
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
291 |
CodeHeap* heap = get_code_heap(code_blob_type); |
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
292 |
return (heap != NULL) ? heap->full_count() : 0; |
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
32401
diff
changeset
|
293 |
} |
1 | 294 |
}; |
7397 | 295 |
|
26796 | 296 |
|
297 |
// Iterator to iterate over nmethods in the CodeCache. |
|
42650 | 298 |
template <class T, class Filter> class CodeBlobIterator : public StackObj { |
26796 | 299 |
private: |
300 |
CodeBlob* _code_blob; // Current CodeBlob |
|
42650 | 301 |
GrowableArrayIterator<CodeHeap*> _heap; |
302 |
GrowableArrayIterator<CodeHeap*> _end; |
|
26796 | 303 |
|
304 |
public: |
|
42650 | 305 |
CodeBlobIterator(T* nm = NULL) { |
306 |
if (Filter::heaps() == NULL) { |
|
307 |
return; |
|
308 |
} |
|
309 |
_heap = Filter::heaps()->begin(); |
|
310 |
_end = Filter::heaps()->end(); |
|
311 |
// If set to NULL, initialized by first call to next() |
|
312 |
_code_blob = (CodeBlob*)nm; |
|
313 |
if (nm != NULL) { |
|
43945
e7f2e49d2274
8173151: Code heap corruption due to incorrect inclusion test
zmajo
parents:
42664
diff
changeset
|
314 |
while(!(*_heap)->contains_blob(_code_blob)) { |
42650 | 315 |
++_heap; |
316 |
} |
|
43945
e7f2e49d2274
8173151: Code heap corruption due to incorrect inclusion test
zmajo
parents:
42664
diff
changeset
|
317 |
assert((*_heap)->contains_blob(_code_blob), "match not found"); |
42650 | 318 |
} |
26796 | 319 |
} |
320 |
||
42650 | 321 |
// Advance iterator to next blob |
26796 | 322 |
bool next() { |
323 |
assert_locked_or_safepoint(CodeCache_lock); |
|
324 |
||
42650 | 325 |
bool result = next_blob(); |
326 |
while (!result && _heap != _end) { |
|
327 |
// Advance to next code heap of segmented code cache |
|
328 |
if (++_heap == _end) { |
|
329 |
break; |
|
330 |
} |
|
331 |
result = next_blob(); |
|
26796 | 332 |
} |
42650 | 333 |
|
26796 | 334 |
return result; |
335 |
} |
|
336 |
||
42650 | 337 |
// Advance iterator to next alive blob |
26796 | 338 |
bool next_alive() { |
339 |
bool result = next(); |
|
340 |
while(result && !_code_blob->is_alive()) { |
|
341 |
result = next(); |
|
342 |
} |
|
343 |
return result; |
|
344 |
} |
|
345 |
||
346 |
bool end() const { return _code_blob == NULL; } |
|
42650 | 347 |
T* method() const { return (T*)_code_blob; } |
26796 | 348 |
|
349 |
private: |
|
42650 | 350 |
|
351 |
// Advance iterator to the next blob in the current code heap |
|
352 |
bool next_blob() { |
|
353 |
if (_heap == _end) { |
|
354 |
return false; |
|
26796 | 355 |
} |
42650 | 356 |
CodeHeap *heap = *_heap; |
26796 | 357 |
// Get first method CodeBlob |
358 |
if (_code_blob == NULL) { |
|
42650 | 359 |
_code_blob = CodeCache::first_blob(heap); |
26796 | 360 |
if (_code_blob == NULL) { |
361 |
return false; |
|
42650 | 362 |
} else if (Filter::apply(_code_blob)) { |
26796 | 363 |
return true; |
364 |
} |
|
365 |
} |
|
366 |
// Search for next method CodeBlob |
|
42650 | 367 |
_code_blob = CodeCache::next_blob(heap, _code_blob); |
368 |
while (_code_blob != NULL && !Filter::apply(_code_blob)) { |
|
369 |
_code_blob = CodeCache::next_blob(heap, _code_blob); |
|
26796 | 370 |
} |
371 |
return _code_blob != NULL; |
|
372 |
} |
|
373 |
}; |
|
374 |
||
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37289
diff
changeset
|
375 |
|
42650 | 376 |
struct CompiledMethodFilter { |
377 |
static bool apply(CodeBlob* cb) { return cb->is_compiled(); } |
|
378 |
static const GrowableArray<CodeHeap*>* heaps() { return CodeCache::compiled_heaps(); } |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37289
diff
changeset
|
379 |
}; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37289
diff
changeset
|
380 |
|
42650 | 381 |
|
382 |
struct NMethodFilter { |
|
383 |
static bool apply(CodeBlob* cb) { return cb->is_nmethod(); } |
|
384 |
static const GrowableArray<CodeHeap*>* heaps() { return CodeCache::nmethod_heaps(); } |
|
385 |
}; |
|
386 |
||
387 |
||
388 |
typedef CodeBlobIterator<CompiledMethod, CompiledMethodFilter> CompiledMethodIterator; |
|
389 |
typedef CodeBlobIterator<nmethod, NMethodFilter> NMethodIterator; |
|
390 |
||
7397 | 391 |
#endif // SHARE_VM_CODE_CODECACHE_HPP |