annotate src/share/vm/gc_interface/collectedHeap.hpp @ 845:df6caf649ff7

6700789: G1: Enable use of compressed oops with G1 heaps Summary: Modifications to G1 so as to allow the use of compressed oops. Reviewed-by: apetrusenko, coleenp, jmasa, kvn, never, phh, tonyp
author ysr
date Tue, 14 Jul 2009 15:40:39 -0700
parents 7bb995fbd3c0
children 8b46c4d82093 148e5441d916
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
579
0fbdb4381b99 6814575: Update copyright year
xdono
parents: 542
diff changeset
2 * Copyright 2001-2009 Sun Microsystems, Inc. All Rights Reserved.
0
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 // A "CollectedHeap" is an implementation of a java heap for HotSpot. This
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // is an abstract class: there may be many different kinds of heaps. This
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // class defines the functions that a heap must implement, and contains
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // infrastructure common to all heaps.
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class BarrierSet;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class ThreadClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class AdaptiveSizePolicy;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class Thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 //
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // CollectedHeap
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // SharedHeap
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // GenCollectedHeap
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // G1CollectedHeap
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // ParallelScavengeHeap
a61af66fc99e Initial load
duke
parents:
diff changeset
41 //
a61af66fc99e Initial load
duke
parents:
diff changeset
42 class CollectedHeap : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 friend class IsGCActiveMark; // Block structured external access to _is_gc_active
542
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 517
diff changeset
45 friend class constantPoolCacheKlass; // allocate() method inserts is_conc_safe
0
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static int _fire_out_of_memory_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
50
481
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
51 // Used for filler objects (static, but initialized in ctor).
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
52 static size_t _filler_array_max_size;
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
53
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 MemRegion _reserved;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 BarrierSet* _barrier_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 bool _is_gc_active;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 unsigned int _total_collections; // ... started
a61af66fc99e Initial load
duke
parents:
diff changeset
59 unsigned int _total_full_collections; // ... started
a61af66fc99e Initial load
duke
parents:
diff changeset
60 NOT_PRODUCT(volatile size_t _promotion_failure_alot_count;)
a61af66fc99e Initial load
duke
parents:
diff changeset
61 NOT_PRODUCT(volatile size_t _promotion_failure_alot_gc_number;)
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // Reason for current garbage collection. Should be set to
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // a value reflecting no collection between collections.
a61af66fc99e Initial load
duke
parents:
diff changeset
65 GCCause::Cause _gc_cause;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 GCCause::Cause _gc_lastcause;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 PerfStringVariable* _perf_gc_cause;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 PerfStringVariable* _perf_gc_lastcause;
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
71 CollectedHeap();
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // Create a new tlab
a61af66fc99e Initial load
duke
parents:
diff changeset
74 virtual HeapWord* allocate_new_tlab(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // Fix up tlabs to make the heap well-formed again,
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // optionally retiring the tlabs.
a61af66fc99e Initial load
duke
parents:
diff changeset
78 virtual void fill_all_tlabs(bool retire);
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // Accumulate statistics on all tlabs.
a61af66fc99e Initial load
duke
parents:
diff changeset
81 virtual void accumulate_statistics_all_tlabs();
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // Reinitialize tlabs before resuming mutators.
a61af66fc99e Initial load
duke
parents:
diff changeset
84 virtual void resize_all_tlabs();
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // Allocate from the current thread's TLAB, with broken-out slow path.
a61af66fc99e Initial load
duke
parents:
diff changeset
88 inline static HeapWord* allocate_from_tlab(Thread* thread, size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 static HeapWord* allocate_from_tlab_slow(Thread* thread, size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // Allocate an uninitialized block of the given size, or returns NULL if
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // this is impossible.
a61af66fc99e Initial load
duke
parents:
diff changeset
93 inline static HeapWord* common_mem_allocate_noinit(size_t size, bool is_noref, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Like allocate_init, but the block returned by a successful allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // is guaranteed initialized to zeros.
a61af66fc99e Initial load
duke
parents:
diff changeset
97 inline static HeapWord* common_mem_allocate_init(size_t size, bool is_noref, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // Same as common_mem version, except memory is allocated in the permanent area
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // If there is no permanent area, revert to common_mem_allocate_noinit
a61af66fc99e Initial load
duke
parents:
diff changeset
101 inline static HeapWord* common_permanent_mem_allocate_noinit(size_t size, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // Same as common_mem version, except memory is allocated in the permanent area
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // If there is no permanent area, revert to common_mem_allocate_init
a61af66fc99e Initial load
duke
parents:
diff changeset
105 inline static HeapWord* common_permanent_mem_allocate_init(size_t size, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Helper functions for (VM) allocation.
a61af66fc99e Initial load
duke
parents:
diff changeset
108 inline static void post_allocation_setup_common(KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
109 HeapWord* obj, size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 inline static void post_allocation_setup_no_klass_install(KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
111 HeapWord* objPtr,
a61af66fc99e Initial load
duke
parents:
diff changeset
112 size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 inline static void post_allocation_setup_obj(KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
115 HeapWord* obj, size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 inline static void post_allocation_setup_array(KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
118 HeapWord* obj, size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
119 int length);
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Clears an allocated object.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 inline static void init_obj(HeapWord* obj, size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
123
481
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
124 // Filler object utilities.
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
125 static inline size_t filler_array_hdr_size();
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
126 static inline size_t filler_array_min_size();
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
127 static inline size_t filler_array_max_size();
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
128
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
129 DEBUG_ONLY(static void fill_args_check(HeapWord* start, size_t words);)
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
130 DEBUG_ONLY(static void zap_filler_array(HeapWord* start, size_t words);)
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
131
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
132 // Fill with a single array; caller must ensure filler_array_min_size() <=
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
133 // words <= filler_array_max_size().
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
134 static inline void fill_with_array(HeapWord* start, size_t words);
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
135
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
136 // Fill with a single object (either an int array or a java.lang.Object).
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
137 static inline void fill_with_object_impl(HeapWord* start, size_t words);
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
138
0
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Verification functions
a61af66fc99e Initial load
duke
parents:
diff changeset
140 virtual void check_for_bad_heap_word_value(HeapWord* addr, size_t size)
a61af66fc99e Initial load
duke
parents:
diff changeset
141 PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 virtual void check_for_non_bad_heap_word_value(HeapWord* addr, size_t size)
a61af66fc99e Initial load
duke
parents:
diff changeset
143 PRODUCT_RETURN;
542
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 517
diff changeset
144 debug_only(static void check_for_valid_allocation_state();)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
147 enum Name {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 Abstract,
a61af66fc99e Initial load
duke
parents:
diff changeset
149 SharedHeap,
a61af66fc99e Initial load
duke
parents:
diff changeset
150 GenCollectedHeap,
a61af66fc99e Initial load
duke
parents:
diff changeset
151 ParallelScavengeHeap,
a61af66fc99e Initial load
duke
parents:
diff changeset
152 G1CollectedHeap
a61af66fc99e Initial load
duke
parents:
diff changeset
153 };
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 virtual CollectedHeap::Name kind() const { return CollectedHeap::Abstract; }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 /**
a61af66fc99e Initial load
duke
parents:
diff changeset
158 * Returns JNI error code JNI_ENOMEM if memory could not be allocated,
a61af66fc99e Initial load
duke
parents:
diff changeset
159 * and JNI_OK on success.
a61af66fc99e Initial load
duke
parents:
diff changeset
160 */
a61af66fc99e Initial load
duke
parents:
diff changeset
161 virtual jint initialize() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // In many heaps, there will be a need to perform some initialization activities
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // after the Universe is fully formed, but before general heap allocation is allowed.
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // This is the correct place to place such initialization methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
166 virtual void post_initialize() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 MemRegion reserved_region() const { return _reserved; }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
169 address base() const { return (address)reserved_region().start(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // Future cleanup here. The following functions should specify bytes or
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // heapwords as part of their signature.
a61af66fc99e Initial load
duke
parents:
diff changeset
173 virtual size_t capacity() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 virtual size_t used() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // Return "true" if the part of the heap that allocates Java
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // objects has reached the maximal committed limit that it can
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // reach, without a garbage collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
179 virtual bool is_maximal_no_gc() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 virtual size_t permanent_capacity() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 virtual size_t permanent_used() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // Support for java.lang.Runtime.maxMemory(): return the maximum amount of
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // memory that the vm could make available for storing 'normal' java objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // This is based on the reserved address space, but should not include space
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // that the vm uses internally for bookkeeping or temporary storage (e.g.,
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // perm gen space or, in the case of the young gen, one of the survivor
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // spaces).
a61af66fc99e Initial load
duke
parents:
diff changeset
190 virtual size_t max_capacity() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // Returns "TRUE" if "p" points into the reserved area of the heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
193 bool is_in_reserved(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 return _reserved.contains(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 bool is_in_reserved_or_null(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 return p == NULL || is_in_reserved(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // Returns "TRUE" if "p" points to the head of an allocated object in the
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // heap. Since this method can be expensive in general, we restrict its
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // use to assertion checking only.
a61af66fc99e Initial load
duke
parents:
diff changeset
204 virtual bool is_in(const void* p) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 bool is_in_or_null(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 return p == NULL || is_in(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 // Let's define some terms: a "closed" subset of a heap is one that
a61af66fc99e Initial load
duke
parents:
diff changeset
211 //
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // 1) contains all currently-allocated objects, and
a61af66fc99e Initial load
duke
parents:
diff changeset
213 //
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // 2) is closed under reference: no object in the closed subset
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // references one outside the closed subset.
a61af66fc99e Initial load
duke
parents:
diff changeset
216 //
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // Membership in a heap's closed subset is useful for assertions.
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // Clearly, the entire heap is a closed subset, so the default
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // implementation is to use "is_in_reserved". But this may not be too
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // liberal to perform useful checking. Also, the "is_in" predicate
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // defines a closed subset, but may be too expensive, since "is_in"
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // verifies that its argument points to an object head. The
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // "closed_subset" method allows a heap to define an intermediate
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // predicate, allowing more precise checking than "is_in_reserved" at
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // lower cost than "is_in."
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // One important case is a heap composed of disjoint contiguous spaces,
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // such as the Garbage-First collector. Such heaps have a convenient
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // closed subset consisting of the allocated portions of those
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // contiguous spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // Return "TRUE" iff the given pointer points into the heap's defined
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // closed subset (which defaults to the entire heap).
a61af66fc99e Initial load
duke
parents:
diff changeset
234 virtual bool is_in_closed_subset(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
235 return is_in_reserved(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 bool is_in_closed_subset_or_null(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 return p == NULL || is_in_closed_subset(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // Returns "TRUE" if "p" is allocated as "permanent" data.
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // If the heap does not use "permanent" data, returns the same
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // value is_in_reserved() would return.
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // NOTE: this actually returns true if "p" is in reserved space
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // for the space not that it is actually allocated (i.e. in committed
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // space). If you need the more conservative answer use is_permanent().
a61af66fc99e Initial load
duke
parents:
diff changeset
248 virtual bool is_in_permanent(const void *p) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // Returns "TRUE" if "p" is in the committed area of "permanent" data.
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // If the heap does not use "permanent" data, returns the same
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // value is_in() would return.
a61af66fc99e Initial load
duke
parents:
diff changeset
253 virtual bool is_permanent(const void *p) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 bool is_in_permanent_or_null(const void *p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 return p == NULL || is_in_permanent(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // Returns "TRUE" if "p" is a method oop in the
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // current heap, with high probability. This predicate
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // is not stable, in general.
a61af66fc99e Initial load
duke
parents:
diff changeset
262 bool is_valid_method(oop p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 void set_gc_cause(GCCause::Cause v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 _gc_lastcause = _gc_cause;
a61af66fc99e Initial load
duke
parents:
diff changeset
267 _perf_gc_lastcause->set_value(GCCause::to_string(_gc_lastcause));
a61af66fc99e Initial load
duke
parents:
diff changeset
268 _perf_gc_cause->set_value(GCCause::to_string(v));
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270 _gc_cause = v;
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272 GCCause::Cause gc_cause() { return _gc_cause; }
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // Preload classes into the shared portion of the heap, and then dump
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // that data to a file so that it can be loaded directly by another
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // VM (then terminate).
a61af66fc99e Initial load
duke
parents:
diff changeset
277 virtual void preload_and_dump(TRAPS) { ShouldNotReachHere(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // General obj/array allocation facilities.
a61af66fc99e Initial load
duke
parents:
diff changeset
280 inline static oop obj_allocate(KlassHandle klass, int size, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
281 inline static oop array_allocate(KlassHandle klass, int size, int length, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
282 inline static oop large_typearray_allocate(KlassHandle klass, int size, int length, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // Special obj/array allocation facilities.
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // Some heaps may want to manage "permanent" data uniquely. These default
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // to the general routines if the heap does not support such handling.
a61af66fc99e Initial load
duke
parents:
diff changeset
287 inline static oop permanent_obj_allocate(KlassHandle klass, int size, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // permanent_obj_allocate_no_klass_install() does not do the installation of
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // the klass pointer in the newly created object (as permanent_obj_allocate()
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // above does). This allows for a delay in the installation of the klass
a61af66fc99e Initial load
duke
parents:
diff changeset
291 // pointer that is needed during the create of klassKlass's. The
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // method post_allocation_install_obj_klass() is used to install the
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // klass pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
294 inline static oop permanent_obj_allocate_no_klass_install(KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
295 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
296 TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
297 inline static void post_allocation_install_obj_klass(KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
298 oop obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
299 int size);
a61af66fc99e Initial load
duke
parents:
diff changeset
300 inline static oop permanent_array_allocate(KlassHandle klass, int size, int length, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // Raw memory allocation facilities
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // The obj and array allocate methods are covers for these methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // The permanent allocation method should default to mem_allocate if
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // permanent memory isn't supported.
a61af66fc99e Initial load
duke
parents:
diff changeset
306 virtual HeapWord* mem_allocate(size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
307 bool is_noref,
a61af66fc99e Initial load
duke
parents:
diff changeset
308 bool is_tlab,
a61af66fc99e Initial load
duke
parents:
diff changeset
309 bool* gc_overhead_limit_was_exceeded) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
310 virtual HeapWord* permanent_mem_allocate(size_t size) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // The boundary between a "large" and "small" array of primitives, in words.
a61af66fc99e Initial load
duke
parents:
diff changeset
313 virtual size_t large_typearray_limit() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
314
481
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
315 // Utilities for turning raw memory into filler objects.
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
316 //
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
317 // min_fill_size() is the smallest region that can be filled.
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
318 // fill_with_objects() can fill arbitrary-sized regions of the heap using
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
319 // multiple objects. fill_with_object() is for regions known to be smaller
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
320 // than the largest array of integers; it uses a single object to fill the
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
321 // region and has slightly less overhead.
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
322 static size_t min_fill_size() {
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
323 return size_t(align_object_size(oopDesc::header_size()));
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
324 }
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
325
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
326 static void fill_with_objects(HeapWord* start, size_t words);
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
327
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
328 static void fill_with_object(HeapWord* start, size_t words);
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
329 static void fill_with_object(MemRegion region) {
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
330 fill_with_object(region.start(), region.word_size());
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
331 }
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
332 static void fill_with_object(HeapWord* start, HeapWord* end) {
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
333 fill_with_object(start, pointer_delta(end, start));
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
334 }
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 356
diff changeset
335
0
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // Some heaps may offer a contiguous region for shared non-blocking
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // allocation, via inlined code (by exporting the address of the top and
a61af66fc99e Initial load
duke
parents:
diff changeset
338 // end fields defining the extent of the contiguous allocation region.)
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // This function returns "true" iff the heap supports this kind of
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // allocation. (Default is "no".)
a61af66fc99e Initial load
duke
parents:
diff changeset
342 virtual bool supports_inline_contig_alloc() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
343 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
344 }
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // These functions return the addresses of the fields that define the
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // boundaries of the contiguous allocation area. (These fields should be
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // physically near to one another.)
a61af66fc99e Initial load
duke
parents:
diff changeset
348 virtual HeapWord** top_addr() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
349 guarantee(false, "inline contiguous allocation not supported");
a61af66fc99e Initial load
duke
parents:
diff changeset
350 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352 virtual HeapWord** end_addr() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
353 guarantee(false, "inline contiguous allocation not supported");
a61af66fc99e Initial load
duke
parents:
diff changeset
354 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
356
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // Some heaps may be in an unparseable state at certain times between
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // collections. This may be necessary for efficient implementation of
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // certain allocation-related activities. Calling this function before
a61af66fc99e Initial load
duke
parents:
diff changeset
360 // attempting to parse a heap ensures that the heap is in a parsable
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // state (provided other concurrent activity does not introduce
a61af66fc99e Initial load
duke
parents:
diff changeset
362 // unparsability). It is normally expected, therefore, that this
a61af66fc99e Initial load
duke
parents:
diff changeset
363 // method is invoked with the world stopped.
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // NOTE: if you override this method, make sure you call
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // super::ensure_parsability so that the non-generational
a61af66fc99e Initial load
duke
parents:
diff changeset
366 // part of the work gets done. See implementation of
a61af66fc99e Initial load
duke
parents:
diff changeset
367 // CollectedHeap::ensure_parsability and, for instance,
a61af66fc99e Initial load
duke
parents:
diff changeset
368 // that of GenCollectedHeap::ensure_parsability().
a61af66fc99e Initial load
duke
parents:
diff changeset
369 // The argument "retire_tlabs" controls whether existing TLABs
a61af66fc99e Initial load
duke
parents:
diff changeset
370 // are merely filled or also retired, thus preventing further
a61af66fc99e Initial load
duke
parents:
diff changeset
371 // allocation from them and necessitating allocation of new TLABs.
a61af66fc99e Initial load
duke
parents:
diff changeset
372 virtual void ensure_parsability(bool retire_tlabs);
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // Return an estimate of the maximum allocation that could be performed
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // without triggering any collection or expansion activity. In a
a61af66fc99e Initial load
duke
parents:
diff changeset
376 // generational collector, for example, this is probably the largest
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // allocation that could be supported (without expansion) in the youngest
a61af66fc99e Initial load
duke
parents:
diff changeset
378 // generation. It is "unsafe" because no locks are taken; the result
a61af66fc99e Initial load
duke
parents:
diff changeset
379 // should be treated as an approximation, not a guarantee, for use in
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // heuristic resizing decisions.
a61af66fc99e Initial load
duke
parents:
diff changeset
381 virtual size_t unsafe_max_alloc() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // Section on thread-local allocation buffers (TLABs)
a61af66fc99e Initial load
duke
parents:
diff changeset
384 // If the heap supports thread-local allocation buffers, it should override
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // the following methods:
a61af66fc99e Initial load
duke
parents:
diff changeset
386 // Returns "true" iff the heap supports thread-local allocation buffers.
a61af66fc99e Initial load
duke
parents:
diff changeset
387 // The default is "no".
a61af66fc99e Initial load
duke
parents:
diff changeset
388 virtual bool supports_tlab_allocation() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
389 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391 // The amount of space available for thread-local allocation buffers.
a61af66fc99e Initial load
duke
parents:
diff changeset
392 virtual size_t tlab_capacity(Thread *thr) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
393 guarantee(false, "thread-local allocation buffers not supported");
a61af66fc99e Initial load
duke
parents:
diff changeset
394 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
395 }
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // An estimate of the maximum allocation that could be performed
a61af66fc99e Initial load
duke
parents:
diff changeset
397 // for thread-local allocation buffers without triggering any
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // collection or expansion activity.
a61af66fc99e Initial load
duke
parents:
diff changeset
399 virtual size_t unsafe_max_tlab_alloc(Thread *thr) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
400 guarantee(false, "thread-local allocation buffers not supported");
a61af66fc99e Initial load
duke
parents:
diff changeset
401 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // Can a compiler initialize a new object without store barriers?
a61af66fc99e Initial load
duke
parents:
diff changeset
404 // This permission only extends from the creation of a new object
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // via a TLAB up to the first subsequent safepoint.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
406 virtual bool can_elide_tlab_store_barriers() const = 0;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
407
0
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // If a compiler is eliding store barriers for TLAB-allocated objects,
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // there is probably a corresponding slow path which can produce
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // an object allocated anywhere. The compiler's runtime support
a61af66fc99e Initial load
duke
parents:
diff changeset
411 // promises to call this function on such a slow-path-allocated
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // object before performing initializations that have elided
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // store barriers. Returns new_obj, or maybe a safer copy thereof.
a61af66fc99e Initial load
duke
parents:
diff changeset
414 virtual oop new_store_barrier(oop new_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
415
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // Can a compiler elide a store barrier when it writes
a61af66fc99e Initial load
duke
parents:
diff changeset
417 // a permanent oop into the heap? Applies when the compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // is storing x to the heap, where x->is_perm() is true.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
419 virtual bool can_elide_permanent_oop_store_barriers() const = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // Does this heap support heap inspection (+PrintClassHistogram?)
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
422 virtual bool supports_heap_inspection() const = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // Perform a collection of the heap; intended for use in implementing
a61af66fc99e Initial load
duke
parents:
diff changeset
425 // "System.gc". This probably implies as full a collection as the
a61af66fc99e Initial load
duke
parents:
diff changeset
426 // "CollectedHeap" supports.
a61af66fc99e Initial load
duke
parents:
diff changeset
427 virtual void collect(GCCause::Cause cause) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // This interface assumes that it's being called by the
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // vm thread. It collects the heap assuming that the
a61af66fc99e Initial load
duke
parents:
diff changeset
431 // heap lock is already held and that we are executing in
a61af66fc99e Initial load
duke
parents:
diff changeset
432 // the context of the vm thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
433 virtual void collect_as_vm_thread(GCCause::Cause cause) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // Returns the barrier set for this heap
a61af66fc99e Initial load
duke
parents:
diff changeset
436 BarrierSet* barrier_set() { return _barrier_set; }
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 // Returns "true" iff there is a stop-world GC in progress. (I assume
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // that it should answer "false" for the concurrent part of a concurrent
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // collector -- dld).
a61af66fc99e Initial load
duke
parents:
diff changeset
441 bool is_gc_active() const { return _is_gc_active; }
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 // Total number of GC collections (started)
a61af66fc99e Initial load
duke
parents:
diff changeset
444 unsigned int total_collections() const { return _total_collections; }
a61af66fc99e Initial load
duke
parents:
diff changeset
445 unsigned int total_full_collections() const { return _total_full_collections;}
a61af66fc99e Initial load
duke
parents:
diff changeset
446
a61af66fc99e Initial load
duke
parents:
diff changeset
447 // Increment total number of GC collections (started)
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // Should be protected but used by PSMarkSweep - cleanup for 1.4.2
a61af66fc99e Initial load
duke
parents:
diff changeset
449 void increment_total_collections(bool full = false) {
a61af66fc99e Initial load
duke
parents:
diff changeset
450 _total_collections++;
a61af66fc99e Initial load
duke
parents:
diff changeset
451 if (full) {
a61af66fc99e Initial load
duke
parents:
diff changeset
452 increment_total_full_collections();
a61af66fc99e Initial load
duke
parents:
diff changeset
453 }
a61af66fc99e Initial load
duke
parents:
diff changeset
454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456 void increment_total_full_collections() { _total_full_collections++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
457
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // Return the AdaptiveSizePolicy for the heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
459 virtual AdaptiveSizePolicy* size_policy() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
460
a61af66fc99e Initial load
duke
parents:
diff changeset
461 // Iterate over all the ref-containing fields of all objects, calling
a61af66fc99e Initial load
duke
parents:
diff changeset
462 // "cl.do_oop" on each. This includes objects in permanent memory.
a61af66fc99e Initial load
duke
parents:
diff changeset
463 virtual void oop_iterate(OopClosure* cl) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
464
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // Iterate over all objects, calling "cl.do_object" on each.
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // This includes objects in permanent memory.
a61af66fc99e Initial load
duke
parents:
diff changeset
467 virtual void object_iterate(ObjectClosure* cl) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
468
517
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 481
diff changeset
469 // Similar to object_iterate() except iterates only
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 481
diff changeset
470 // over live objects.
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 481
diff changeset
471 virtual void safe_object_iterate(ObjectClosure* cl) = 0;
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 481
diff changeset
472
0
a61af66fc99e Initial load
duke
parents:
diff changeset
473 // Behaves the same as oop_iterate, except only traverses
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // interior pointers contained in permanent memory. If there
a61af66fc99e Initial load
duke
parents:
diff changeset
475 // is no permanent memory, does nothing.
a61af66fc99e Initial load
duke
parents:
diff changeset
476 virtual void permanent_oop_iterate(OopClosure* cl) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 // Behaves the same as object_iterate, except only traverses
a61af66fc99e Initial load
duke
parents:
diff changeset
479 // object contained in permanent memory. If there is no
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // permanent memory, does nothing.
a61af66fc99e Initial load
duke
parents:
diff changeset
481 virtual void permanent_object_iterate(ObjectClosure* cl) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
482
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // NOTE! There is no requirement that a collector implement these
a61af66fc99e Initial load
duke
parents:
diff changeset
484 // functions.
a61af66fc99e Initial load
duke
parents:
diff changeset
485 //
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // A CollectedHeap is divided into a dense sequence of "blocks"; that is,
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // each address in the (reserved) heap is a member of exactly
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // one block. The defining characteristic of a block is that it is
a61af66fc99e Initial load
duke
parents:
diff changeset
489 // possible to find its size, and thus to progress forward to the next
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // block. (Blocks may be of different sizes.) Thus, blocks may
a61af66fc99e Initial load
duke
parents:
diff changeset
491 // represent Java objects, or they might be free blocks in a
a61af66fc99e Initial load
duke
parents:
diff changeset
492 // free-list-based heap (or subheap), as long as the two kinds are
a61af66fc99e Initial load
duke
parents:
diff changeset
493 // distinguishable and the size of each is determinable.
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495 // Returns the address of the start of the "block" that contains the
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // address "addr". We say "blocks" instead of "object" since some heaps
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // may not pack objects densely; a chunk may either be an object or a
a61af66fc99e Initial load
duke
parents:
diff changeset
498 // non-object.
a61af66fc99e Initial load
duke
parents:
diff changeset
499 virtual HeapWord* block_start(const void* addr) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // Requires "addr" to be the start of a chunk, and returns its size.
a61af66fc99e Initial load
duke
parents:
diff changeset
502 // "addr + size" is required to be the start of a new chunk, or the end
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // of the active area of the heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
504 virtual size_t block_size(const HeapWord* addr) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
505
a61af66fc99e Initial load
duke
parents:
diff changeset
506 // Requires "addr" to be the start of a block, and returns "TRUE" iff
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // the block is an object.
a61af66fc99e Initial load
duke
parents:
diff changeset
508 virtual bool block_is_obj(const HeapWord* addr) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
509
a61af66fc99e Initial load
duke
parents:
diff changeset
510 // Returns the longest time (in ms) that has elapsed since the last
a61af66fc99e Initial load
duke
parents:
diff changeset
511 // time that any part of the heap was examined by a garbage collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
512 virtual jlong millis_since_last_gc() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
513
a61af66fc99e Initial load
duke
parents:
diff changeset
514 // Perform any cleanup actions necessary before allowing a verification.
a61af66fc99e Initial load
duke
parents:
diff changeset
515 virtual void prepare_for_verify() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
516
615
c6c601a0f2d6 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 542
diff changeset
517 // Generate any dumps preceding or following a full gc
c6c601a0f2d6 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 542
diff changeset
518 void pre_full_gc_dump();
c6c601a0f2d6 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 542
diff changeset
519 void post_full_gc_dump();
c6c601a0f2d6 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 542
diff changeset
520
0
a61af66fc99e Initial load
duke
parents:
diff changeset
521 virtual void print() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
522 virtual void print_on(outputStream* st) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524 // Print all GC threads (other than the VM thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
525 // used by this heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
526 virtual void print_gc_threads_on(outputStream* st) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 void print_gc_threads() { print_gc_threads_on(tty); }
a61af66fc99e Initial load
duke
parents:
diff changeset
528 // Iterator for all GC threads (other than VM thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
529 virtual void gc_threads_do(ThreadClosure* tc) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 // Print any relevant tracing info that flags imply.
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // Default implementation does nothing.
a61af66fc99e Initial load
duke
parents:
diff changeset
533 virtual void print_tracing_info() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
534
a61af66fc99e Initial load
duke
parents:
diff changeset
535 // Heap verification
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 628
diff changeset
536 virtual void verify(bool allow_dirty, bool silent, bool option) = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
537
a61af66fc99e Initial load
duke
parents:
diff changeset
538 // Non product verification and debugging.
a61af66fc99e Initial load
duke
parents:
diff changeset
539 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
540 // Support for PromotionFailureALot. Return true if it's time to cause a
a61af66fc99e Initial load
duke
parents:
diff changeset
541 // promotion failure. The no-argument version uses
a61af66fc99e Initial load
duke
parents:
diff changeset
542 // this->_promotion_failure_alot_count as the counter.
a61af66fc99e Initial load
duke
parents:
diff changeset
543 inline bool promotion_should_fail(volatile size_t* count);
a61af66fc99e Initial load
duke
parents:
diff changeset
544 inline bool promotion_should_fail();
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 // Reset the PromotionFailureALot counters. Should be called at the end of a
a61af66fc99e Initial load
duke
parents:
diff changeset
547 // GC in which promotion failure ocurred.
a61af66fc99e Initial load
duke
parents:
diff changeset
548 inline void reset_promotion_should_fail(volatile size_t* count);
a61af66fc99e Initial load
duke
parents:
diff changeset
549 inline void reset_promotion_should_fail();
a61af66fc99e Initial load
duke
parents:
diff changeset
550 #endif // #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
551
a61af66fc99e Initial load
duke
parents:
diff changeset
552 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
553 static int fired_fake_oom() {
a61af66fc99e Initial load
duke
parents:
diff changeset
554 return (CIFireOOMAt > 1 && _fire_out_of_memory_count >= CIFireOOMAt);
a61af66fc99e Initial load
duke
parents:
diff changeset
555 }
a61af66fc99e Initial load
duke
parents:
diff changeset
556 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
557 };
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559 // Class to set and reset the GC cause for a CollectedHeap.
a61af66fc99e Initial load
duke
parents:
diff changeset
560
a61af66fc99e Initial load
duke
parents:
diff changeset
561 class GCCauseSetter : StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
562 CollectedHeap* _heap;
a61af66fc99e Initial load
duke
parents:
diff changeset
563 GCCause::Cause _previous_cause;
a61af66fc99e Initial load
duke
parents:
diff changeset
564 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
565 GCCauseSetter(CollectedHeap* heap, GCCause::Cause cause) {
a61af66fc99e Initial load
duke
parents:
diff changeset
566 assert(SafepointSynchronize::is_at_safepoint(),
a61af66fc99e Initial load
duke
parents:
diff changeset
567 "This method manipulates heap state without locking");
a61af66fc99e Initial load
duke
parents:
diff changeset
568 _heap = heap;
a61af66fc99e Initial load
duke
parents:
diff changeset
569 _previous_cause = _heap->gc_cause();
a61af66fc99e Initial load
duke
parents:
diff changeset
570 _heap->set_gc_cause(cause);
a61af66fc99e Initial load
duke
parents:
diff changeset
571 }
a61af66fc99e Initial load
duke
parents:
diff changeset
572
a61af66fc99e Initial load
duke
parents:
diff changeset
573 ~GCCauseSetter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
574 assert(SafepointSynchronize::is_at_safepoint(),
a61af66fc99e Initial load
duke
parents:
diff changeset
575 "This method manipulates heap state without locking");
a61af66fc99e Initial load
duke
parents:
diff changeset
576 _heap->set_gc_cause(_previous_cause);
a61af66fc99e Initial load
duke
parents:
diff changeset
577 }
a61af66fc99e Initial load
duke
parents:
diff changeset
578 };