annotate src/share/vm/code/codeCache.hpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children 93b6525e3b82
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // The CodeCache implements the code cache for various pieces of generated
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // code, e.g., compiled java methods, runtime stubs, transition frames, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // The entries in the CodeCache are all CodeBlob's.
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Implementation:
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // - Each CodeBlob occupies one chunk of memory.
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // - Like the offset table in oldspace the zone has at table for
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // locating a method given a addess of an instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class OopClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class DepChange;
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 class CodeCache : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // CodeHeap is malloc()'ed at startup and never deleted during shutdown,
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // so that the generated assembly code is always there when it's needed.
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // This may cause memory leak, but is necessary, for now. See 4423824,
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // 4422213 or 4436291 for details.
a61af66fc99e Initial load
duke
parents:
diff changeset
44 static CodeHeap * _heap;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 static int _number_of_blobs;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 static int _number_of_nmethods_with_dependencies;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 static bool _needs_cache_clean;
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 static void verify_if_often() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
53 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Allocation/administration
a61af66fc99e Initial load
duke
parents:
diff changeset
56 static CodeBlob* allocate(int size); // allocates a new CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
57 static void commit(CodeBlob* cb); // called when the allocated CodeBlob has been filled
a61af66fc99e Initial load
duke
parents:
diff changeset
58 static int alignment_unit(); // guaranteed alignment of all CodeBlobs
a61af66fc99e Initial load
duke
parents:
diff changeset
59 static int alignment_offset(); // guaranteed offset of first CodeBlob byte within alignment unit (i.e., allocation header)
a61af66fc99e Initial load
duke
parents:
diff changeset
60 static void free(CodeBlob* cb); // frees a CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
61 static void flush(); // flushes all CodeBlobs
a61af66fc99e Initial load
duke
parents:
diff changeset
62 static bool contains(void *p); // returns whether p is included
a61af66fc99e Initial load
duke
parents:
diff changeset
63 static void blobs_do(void f(CodeBlob* cb)); // iterates over all CodeBlobs
a61af66fc99e Initial load
duke
parents:
diff changeset
64 static void nmethods_do(void f(nmethod* nm)); // iterates over all nmethods
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // Lookup
a61af66fc99e Initial load
duke
parents:
diff changeset
67 static CodeBlob* find_blob(void* start);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 static nmethod* find_nmethod(void* start);
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // Lookup that does not fail if you lookup a zombie method (if you call this, be sure to know
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // what you are doing)
a61af66fc99e Initial load
duke
parents:
diff changeset
72 static CodeBlob* find_blob_unsafe(void* start) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 CodeBlob* result = (CodeBlob*)_heap->find_start(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 assert(result == NULL || result->blob_contains((address)start), "found wrong CodeBlob");
a61af66fc99e Initial load
duke
parents:
diff changeset
75 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // Iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
79 static CodeBlob* first();
a61af66fc99e Initial load
duke
parents:
diff changeset
80 static CodeBlob* next (CodeBlob* cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 static CodeBlob* alive(CodeBlob *cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 static nmethod* alive_nmethod(CodeBlob *cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static int nof_blobs() { return _number_of_blobs; }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
86 static void gc_epilogue();
a61af66fc99e Initial load
duke
parents:
diff changeset
87 static void gc_prologue();
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // If "unloading_occurred" is true, then unloads (i.e., breaks root links
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // to) any unmarked codeBlobs in the cache. Sets "marked_for_unloading"
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // to "true" iff some code got unloaded.
a61af66fc99e Initial load
duke
parents:
diff changeset
91 static void do_unloading(BoolObjectClosure* is_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
92 OopClosure* keep_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
93 bool unloading_occurred);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 static void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Printing/debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
97 static void print() PRODUCT_RETURN; // prints summary
a61af66fc99e Initial load
duke
parents:
diff changeset
98 static void print_internals();
a61af66fc99e Initial load
duke
parents:
diff changeset
99 static void verify(); // verifies the code cache
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // The full limits of the codeCache
a61af66fc99e Initial load
duke
parents:
diff changeset
102 static address low_bound() { return (address) _heap->low_boundary(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
103 static address high_bound() { return (address) _heap->high_boundary(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // Profiling
a61af66fc99e Initial load
duke
parents:
diff changeset
106 static address first_address(); // first address used for CodeBlobs
a61af66fc99e Initial load
duke
parents:
diff changeset
107 static address last_address(); // last address used for CodeBlobs
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static size_t capacity() { return _heap->capacity(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 static size_t max_capacity() { return _heap->max_capacity(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 static size_t unallocated_capacity() { return _heap->unallocated_capacity(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 static bool needs_cache_clean() { return _needs_cache_clean; }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 static void set_needs_cache_clean(bool v) { _needs_cache_clean = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 static void clear_inline_caches(); // clear all inline caches
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // Deoptimization
a61af66fc99e Initial load
duke
parents:
diff changeset
117 static int mark_for_deoptimization(DepChange& changes);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 #ifdef HOTSWAP
a61af66fc99e Initial load
duke
parents:
diff changeset
119 static int mark_for_evol_deoptimization(instanceKlassHandle dependee);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 #endif // HOTSWAP
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 static void mark_all_nmethods_for_deoptimization();
a61af66fc99e Initial load
duke
parents:
diff changeset
123 static int mark_for_deoptimization(methodOop dependee);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 static void make_marked_nmethods_zombies();
a61af66fc99e Initial load
duke
parents:
diff changeset
125 static void make_marked_nmethods_not_entrant();
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // tells how many nmethods have dependencies
a61af66fc99e Initial load
duke
parents:
diff changeset
128 static int number_of_nmethods_with_dependencies();
a61af66fc99e Initial load
duke
parents:
diff changeset
129 };