author | jwilhelm |
Thu, 03 Oct 2013 21:36:29 +0200 | |
changeset 20398 | b206c580c45f |
parent 13728 | 882756847a04 |
child 29792 | 8c6fa07f0869 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2 |
* Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5076
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5076
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5076
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSCOMPACTIONMANAGER_HPP |
26 |
#define SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSCOMPACTIONMANAGER_HPP |
|
27 |
||
28 |
#include "memory/allocation.hpp" |
|
29 |
#include "utilities/stack.hpp" |
|
30 |
#include "utilities/taskqueue.hpp" |
|
31 |
||
1 | 32 |
// Move to some global location |
33 |
#define HAS_BEEN_MOVED 0x1501d01d |
|
34 |
// End move to some global location |
|
35 |
||
36 |
||
37 |
class MutableSpace; |
|
38 |
class PSOldGen; |
|
39 |
class ParCompactionManager; |
|
40 |
class ObjectStartArray; |
|
41 |
class ParallelCompactData; |
|
42 |
class ParMarkBitMap; |
|
43 |
||
13195 | 44 |
class ParCompactionManager : public CHeapObj<mtGC> { |
1 | 45 |
friend class ParallelTaskTerminator; |
46 |
friend class ParMarkBitMap; |
|
47 |
friend class PSParallelCompact; |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
48 |
friend class StealRegionCompactionTask; |
1 | 49 |
friend class UpdateAndFillClosure; |
50 |
friend class RefProcTaskExecutor; |
|
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
51 |
friend class IdleGCTask; |
1 | 52 |
|
53 |
public: |
|
54 |
||
55 |
// ------------------------ Don't putback if not needed |
|
56 |
// Actions that the compaction manager should take. |
|
57 |
enum Action { |
|
58 |
Update, |
|
59 |
Copy, |
|
60 |
UpdateAndCopy, |
|
61 |
CopyAndUpdate, |
|
62 |
NotValid |
|
63 |
}; |
|
64 |
// ------------------------ End don't putback if not needed |
|
65 |
||
66 |
private: |
|
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
67 |
// 32-bit: 4K * 8 = 32KiB; 64-bit: 8K * 16 = 128KiB |
5918 | 68 |
#define QUEUE_SIZE (1 << NOT_LP64(12) LP64_ONLY(13)) |
13195 | 69 |
typedef OverflowTaskQueue<ObjArrayTask, mtGC, QUEUE_SIZE> ObjArrayTaskQueue; |
70 |
typedef GenericTaskQueueSet<ObjArrayTaskQueue, mtGC> ObjArrayTaskQueueSet; |
|
5918 | 71 |
#undef QUEUE_SIZE |
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
72 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
73 |
static ParCompactionManager** _manager_array; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
74 |
static OopTaskQueueSet* _stack_array; |
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
75 |
static ObjArrayTaskQueueSet* _objarray_queues; |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
76 |
static ObjectStartArray* _start_array; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
77 |
static RegionTaskQueueSet* _region_array; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
78 |
static PSOldGen* _old_gen; |
1 | 79 |
|
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
80 |
private: |
13195 | 81 |
OverflowTaskQueue<oop, mtGC> _marking_stack; |
5918 | 82 |
ObjArrayTaskQueue _objarray_stack; |
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
83 |
|
1 | 84 |
// Is there a way to reuse the _marking_stack for the |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
85 |
// saving empty regions? For now just create a different |
1 | 86 |
// type of TaskQueue. |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
87 |
RegionTaskQueue* _region_stack; |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
88 |
|
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
89 |
static RegionTaskQueue** _region_list; |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
90 |
// Index in _region_list for current _region_stack. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
91 |
uint _region_stack_index; |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
92 |
|
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
93 |
// Indexes of recycled region stacks/overflow stacks |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
94 |
// Stacks of regions to be compacted are embedded in the tasks doing |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
95 |
// the compaction. A thread that executes the task extracts the |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
96 |
// region stack and drains it. These threads keep these region |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
97 |
// stacks for use during compaction task stealing. If a thread |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
98 |
// gets a second draining task, it pushed its current region stack |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
99 |
// index into the array _recycled_stack_index and gets a new |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
100 |
// region stack from the task. A thread that is executing a |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
101 |
// compaction stealing task without ever having executing a |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
102 |
// draining task, will get a region stack from _recycled_stack_index. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
103 |
// |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
104 |
// Array of indexes into the array of region stacks. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
105 |
static uint* _recycled_stack_index; |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
106 |
// The index into _recycled_stack_index of the last region stack index |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
107 |
// pushed. If -1, there are no entries into _recycled_stack_index. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
108 |
static int _recycled_top; |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
109 |
// The index into _recycled_stack_index of the last region stack index |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
110 |
// popped. If -1, there has not been any entry popped. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
111 |
static int _recycled_bottom; |
1 | 112 |
|
113 |
static ParMarkBitMap* _mark_bitmap; |
|
114 |
||
115 |
Action _action; |
|
116 |
||
117 |
static PSOldGen* old_gen() { return _old_gen; } |
|
118 |
static ObjectStartArray* start_array() { return _start_array; } |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
119 |
static OopTaskQueueSet* stack_array() { return _stack_array; } |
1 | 120 |
|
121 |
static void initialize(ParMarkBitMap* mbm); |
|
122 |
||
123 |
protected: |
|
124 |
// Array of tasks. Needed by the ParallelTaskTerminator. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
125 |
static RegionTaskQueueSet* region_array() { return _region_array; } |
13195 | 126 |
OverflowTaskQueue<oop, mtGC>* marking_stack() { return &_marking_stack; } |
1 | 127 |
|
128 |
// Pushes onto the marking stack. If the marking stack is full, |
|
129 |
// pushes onto the overflow stack. |
|
130 |
void stack_push(oop obj); |
|
131 |
// Do not implement an equivalent stack_pop. Deal with the |
|
132 |
// marking stack and overflow stack directly. |
|
133 |
||
5918 | 134 |
public: |
1 | 135 |
Action action() { return _action; } |
136 |
void set_action(Action v) { _action = v; } |
|
137 |
||
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
138 |
RegionTaskQueue* region_stack() { return _region_stack; } |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
139 |
void set_region_stack(RegionTaskQueue* v) { _region_stack = v; } |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
140 |
|
1 | 141 |
inline static ParCompactionManager* manager_array(int index); |
142 |
||
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
143 |
inline static RegionTaskQueue* region_list(int index) { |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
144 |
return _region_list[index]; |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
145 |
} |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
146 |
|
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
147 |
uint region_stack_index() { return _region_stack_index; } |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
148 |
void set_region_stack_index(uint v) { _region_stack_index = v; } |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
149 |
|
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
150 |
// Pop and push unique reusable stack index |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
151 |
static int pop_recycled_stack_index(); |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
152 |
static void push_recycled_stack_index(uint v); |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
153 |
static void reset_recycled_stack_index() { |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
154 |
_recycled_bottom = _recycled_top = -1; |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
155 |
} |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
156 |
|
1 | 157 |
ParCompactionManager(); |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
158 |
~ParCompactionManager(); |
1 | 159 |
|
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
160 |
// Pushes onto the region stack at the given index. If the |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
161 |
// region stack is full, |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
162 |
// pushes onto the region overflow stack. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
163 |
static void region_list_push(uint stack_index, size_t region_index); |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
164 |
static void verify_region_list_empty(uint stack_index); |
1 | 165 |
ParMarkBitMap* mark_bitmap() { return _mark_bitmap; } |
166 |
||
167 |
// void drain_stacks(); |
|
168 |
||
169 |
bool should_update(); |
|
170 |
bool should_copy(); |
|
171 |
||
5918 | 172 |
// Save for later processing. Must not fail. |
173 |
inline void push(oop obj) { _marking_stack.push(obj); } |
|
174 |
inline void push_objarray(oop objarray, size_t index); |
|
175 |
inline void push_region(size_t index); |
|
1 | 176 |
|
177 |
// Access function for compaction managers |
|
178 |
static ParCompactionManager* gc_thread_compaction_manager(int index); |
|
179 |
||
5918 | 180 |
static bool steal(int queue_num, int* seed, oop& t) { |
1 | 181 |
return stack_array()->steal(queue_num, seed, t); |
182 |
} |
|
183 |
||
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
184 |
static bool steal_objarray(int queue_num, int* seed, ObjArrayTask& t) { |
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
185 |
return _objarray_queues->steal(queue_num, seed, t); |
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
186 |
} |
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
187 |
|
5918 | 188 |
static bool steal(int queue_num, int* seed, size_t& region) { |
189 |
return region_array()->steal(queue_num, seed, region); |
|
1 | 190 |
} |
191 |
||
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
192 |
// Process tasks remaining on any marking stack |
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
193 |
void follow_marking_stacks(); |
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
194 |
inline bool marking_stacks_empty() const; |
1 | 195 |
|
196 |
// Process tasks remaining on any stack |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
197 |
void drain_region_stacks(); |
1 | 198 |
|
199 |
}; |
|
200 |
||
201 |
inline ParCompactionManager* ParCompactionManager::manager_array(int index) { |
|
202 |
assert(_manager_array != NULL, "access of NULL manager_array"); |
|
203 |
assert(index >= 0 && index <= (int)ParallelGCThreads, |
|
204 |
"out of range manager_array access"); |
|
205 |
return _manager_array[index]; |
|
206 |
} |
|
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
207 |
|
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
208 |
bool ParCompactionManager::marking_stacks_empty() const { |
5918 | 209 |
return _marking_stack.is_empty() && _objarray_stack.is_empty(); |
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3795
diff
changeset
|
210 |
} |
7397 | 211 |
|
212 |
#endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSCOMPACTIONMANAGER_HPP |