annotate src/share/vm/gc_implementation/parallelScavenge/psPromotionLAB.hpp @ 20804:7848fc12602b

Merge with jdk8u40-b25
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Tue, 07 Apr 2015 14:58:49 +0200
parents 4ca6dc0799b6 ee019285a52c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6842
b9a9ed0f8eeb 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 6197
diff changeset
2 * Copyright (c) 2002, 2012, Oracle and/or its affiliates. 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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPROMOTIONLAB_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPROMOTIONLAB_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "gc_implementation/parallelScavenge/objectStartArray.hpp"
20317
ee019285a52c 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 6842
diff changeset
29 #include "gc_interface/collectedHeap.inline.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 //
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // PSPromotionLAB is a parallel scavenge promotion lab. This class acts very
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // much like a MutableSpace. We couldn't embed a MutableSpace, though, as
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // it has a considerable number of asserts and invariants that are violated.
a61af66fc99e Initial load
duke
parents:
diff changeset
36 //
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 class ObjectStartArray;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 3985
diff changeset
40 class PSPromotionLAB : public CHeapObj<mtGC> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
41 protected:
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
42 static size_t filler_header_size;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 enum LabState {
a61af66fc99e Initial load
duke
parents:
diff changeset
45 needs_flush,
a61af66fc99e Initial load
duke
parents:
diff changeset
46 flushed,
a61af66fc99e Initial load
duke
parents:
diff changeset
47 zero_size
a61af66fc99e Initial load
duke
parents:
diff changeset
48 };
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 HeapWord* _top;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 HeapWord* _bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 HeapWord* _end;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 LabState _state;
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 void set_top(HeapWord* value) { _top = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
56 void set_bottom(HeapWord* value) { _bottom = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void set_end(HeapWord* value) { _end = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // The shared initialize code invokes this.
a61af66fc99e Initial load
duke
parents:
diff changeset
60 debug_only(virtual bool lab_is_valid(MemRegion lab) { return false; });
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 PSPromotionLAB() : _top(NULL), _bottom(NULL), _end(NULL) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // Filling and flushing.
a61af66fc99e Initial load
duke
parents:
diff changeset
66 void initialize(MemRegion lab);
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 virtual void flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
71 HeapWord* bottom() const { return _bottom; }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 HeapWord* end() const { return _end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 HeapWord* top() const { return _top; }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 bool is_flushed() { return _state == flushed; }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
3985
c63b928b212b 7021322: assert(object_end <= top()) failed: Object crosses promotion LAB boundary
stefank
parents: 1972
diff changeset
77 bool unallocate_object(HeapWord* obj, size_t obj_size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // Returns a subregion containing all objects in this space.
a61af66fc99e Initial load
duke
parents:
diff changeset
80 MemRegion used_region() { return MemRegion(bottom(), top()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // Boolean querries.
a61af66fc99e Initial load
duke
parents:
diff changeset
83 bool is_empty() const { return used() == 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
84 bool not_empty() const { return used() > 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 bool contains(const void* p) const { return _bottom <= p && p < _end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // Size computations. Sizes are in bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
88 size_t capacity() const { return byte_size(bottom(), end()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 size_t used() const { return byte_size(bottom(), top()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 size_t free() const { return byte_size(top(), end()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 };
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 class PSYoungPromotionLAB : public PSPromotionLAB {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
95 PSYoungPromotionLAB() { }
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // Not MT safe
20317
ee019285a52c 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 6842
diff changeset
98 inline HeapWord* allocate(size_t size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99
20317
ee019285a52c 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 6842
diff changeset
100 debug_only(virtual bool lab_is_valid(MemRegion lab);)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
101 };
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 class PSOldPromotionLAB : public PSPromotionLAB {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
105 ObjectStartArray* _start_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
108 PSOldPromotionLAB() : _start_array(NULL) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 PSOldPromotionLAB(ObjectStartArray* start_array) : _start_array(start_array) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 void set_start_array(ObjectStartArray* start_array) { _start_array = start_array; }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 void flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Not MT safe
a61af66fc99e Initial load
duke
parents:
diff changeset
116 HeapWord* allocate(size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // Cannot test for this now that we're doing promotion failures
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // assert(_state != flushed, "Sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
119 assert(_start_array != NULL, "Sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
120 HeapWord* obj = top();
a61af66fc99e Initial load
duke
parents:
diff changeset
121 HeapWord* new_top = obj + size;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // The 'new_top>obj' check is needed to detect overflow of obj+size.
a61af66fc99e Initial load
duke
parents:
diff changeset
123 if (new_top > obj && new_top <= end()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 set_top(new_top);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 assert(is_object_aligned((intptr_t)obj) && is_object_aligned((intptr_t)new_top),
a61af66fc99e Initial load
duke
parents:
diff changeset
126 "checking alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
127 _start_array->allocate_block(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 debug_only(virtual bool lab_is_valid(MemRegion lab));
a61af66fc99e Initial load
duke
parents:
diff changeset
135 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
136
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
137 #endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPROMOTIONLAB_HPP