author | ant |
Fri, 04 Dec 2009 15:07:15 +0300 | |
changeset 4369 | 18b883ed2b58 |
parent 3908 | 24b55ad4c228 |
child 4750 | 71fd601907dc |
permissions | -rw-r--r-- |
1 | 1 |
/* |
670 | 2 |
* Copyright 1997-2008 Sun Microsystems, Inc. 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 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
// The CodeCache implements the code cache for various pieces of generated |
|
26 |
// code, e.g., compiled java methods, runtime stubs, transition frames, etc. |
|
27 |
// The entries in the CodeCache are all CodeBlob's. |
|
28 |
||
29 |
// Implementation: |
|
30 |
// - Each CodeBlob occupies one chunk of memory. |
|
31 |
// - Like the offset table in oldspace the zone has at table for |
|
32 |
// locating a method given a addess of an instruction. |
|
33 |
||
34 |
class OopClosure; |
|
35 |
class DepChange; |
|
36 |
||
37 |
class CodeCache : AllStatic { |
|
38 |
friend class VMStructs; |
|
39 |
private: |
|
40 |
// CodeHeap is malloc()'ed at startup and never deleted during shutdown, |
|
41 |
// so that the generated assembly code is always there when it's needed. |
|
42 |
// This may cause memory leak, but is necessary, for now. See 4423824, |
|
43 |
// 4422213 or 4436291 for details. |
|
44 |
static CodeHeap * _heap; |
|
45 |
static int _number_of_blobs; |
|
46 |
static int _number_of_nmethods_with_dependencies; |
|
47 |
static bool _needs_cache_clean; |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
670
diff
changeset
|
48 |
static nmethod* _scavenge_root_nmethods; // linked via nm->scavenge_root_link() |
1 | 49 |
|
50 |
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
|
51 |
|
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
670
diff
changeset
|
52 |
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
|
53 |
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
|
54 |
|
1 | 55 |
public: |
56 |
||
57 |
// Initialization |
|
58 |
static void initialize(); |
|
59 |
||
60 |
// Allocation/administration |
|
61 |
static CodeBlob* allocate(int size); // allocates a new CodeBlob |
|
62 |
static void commit(CodeBlob* cb); // called when the allocated CodeBlob has been filled |
|
63 |
static int alignment_unit(); // guaranteed alignment of all CodeBlobs |
|
64 |
static int alignment_offset(); // guaranteed offset of first CodeBlob byte within alignment unit (i.e., allocation header) |
|
65 |
static void free(CodeBlob* cb); // frees a CodeBlob |
|
66 |
static void flush(); // flushes all CodeBlobs |
|
67 |
static bool contains(void *p); // returns whether p is included |
|
68 |
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
|
69 |
static void blobs_do(CodeBlobClosure* f); // iterates over all CodeBlobs |
1 | 70 |
static void nmethods_do(void f(nmethod* nm)); // iterates over all nmethods |
71 |
||
72 |
// Lookup |
|
73 |
static CodeBlob* find_blob(void* start); |
|
74 |
static nmethod* find_nmethod(void* start); |
|
75 |
||
76 |
// Lookup that does not fail if you lookup a zombie method (if you call this, be sure to know |
|
77 |
// what you are doing) |
|
78 |
static CodeBlob* find_blob_unsafe(void* start) { |
|
79 |
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
|
80 |
// 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
|
81 |
// 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
|
82 |
// 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
|
83 |
// 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
|
84 |
// |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
85 |
// 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
|
86 |
// 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
|
87 |
// 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
|
88 |
// |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
89 |
// 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
|
90 |
// false. |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
91 |
// 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
|
92 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
93 |
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
|
94 |
result = NULL; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
95 |
} |
1 | 96 |
return result; |
97 |
} |
|
98 |
||
99 |
// Iteration |
|
100 |
static CodeBlob* first(); |
|
101 |
static CodeBlob* next (CodeBlob* cb); |
|
102 |
static CodeBlob* alive(CodeBlob *cb); |
|
103 |
static nmethod* alive_nmethod(CodeBlob *cb); |
|
104 |
static int nof_blobs() { return _number_of_blobs; } |
|
105 |
||
106 |
// GC support |
|
107 |
static void gc_epilogue(); |
|
108 |
static void gc_prologue(); |
|
109 |
// If "unloading_occurred" is true, then unloads (i.e., breaks root links |
|
110 |
// to) any unmarked codeBlobs in the cache. Sets "marked_for_unloading" |
|
111 |
// to "true" iff some code got unloaded. |
|
112 |
static void do_unloading(BoolObjectClosure* is_alive, |
|
113 |
OopClosure* keep_alive, |
|
114 |
bool unloading_occurred); |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
670
diff
changeset
|
115 |
static void oops_do(OopClosure* f) { |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
670
diff
changeset
|
116 |
CodeBlobToOopClosure oopc(f, /*do_marking=*/ false); |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
670
diff
changeset
|
117 |
blobs_do(&oopc); |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
670
diff
changeset
|
118 |
} |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
670
diff
changeset
|
119 |
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
|
120 |
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
|
121 |
|
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
670
diff
changeset
|
122 |
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
|
123 |
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
|
124 |
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
|
125 |
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
|
126 |
static void prune_scavenge_root_nmethods(); |
1 | 127 |
|
128 |
// Printing/debugging |
|
129 |
static void print() PRODUCT_RETURN; // prints summary |
|
130 |
static void print_internals(); |
|
131 |
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
|
132 |
static void print_trace(const char* event, CodeBlob* cb, int size = 0) PRODUCT_RETURN; |
1 | 133 |
|
134 |
// The full limits of the codeCache |
|
135 |
static address low_bound() { return (address) _heap->low_boundary(); } |
|
136 |
static address high_bound() { return (address) _heap->high_boundary(); } |
|
137 |
||
138 |
// Profiling |
|
139 |
static address first_address(); // first address used for CodeBlobs |
|
140 |
static address last_address(); // last address used for CodeBlobs |
|
141 |
static size_t capacity() { return _heap->capacity(); } |
|
142 |
static size_t max_capacity() { return _heap->max_capacity(); } |
|
143 |
static size_t unallocated_capacity() { return _heap->unallocated_capacity(); } |
|
144 |
||
145 |
static bool needs_cache_clean() { return _needs_cache_clean; } |
|
146 |
static void set_needs_cache_clean(bool v) { _needs_cache_clean = v; } |
|
147 |
static void clear_inline_caches(); // clear all inline caches |
|
148 |
||
149 |
// Deoptimization |
|
150 |
static int mark_for_deoptimization(DepChange& changes); |
|
151 |
#ifdef HOTSWAP |
|
152 |
static int mark_for_evol_deoptimization(instanceKlassHandle dependee); |
|
153 |
#endif // HOTSWAP |
|
154 |
||
155 |
static void mark_all_nmethods_for_deoptimization(); |
|
156 |
static int mark_for_deoptimization(methodOop dependee); |
|
157 |
static void make_marked_nmethods_zombies(); |
|
158 |
static void make_marked_nmethods_not_entrant(); |
|
159 |
||
160 |
// tells how many nmethods have dependencies |
|
161 |
static int number_of_nmethods_with_dependencies(); |
|
162 |
}; |