Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/gc/parallel/psCompactionManager.hpp
41149 views
1
/*
2
* Copyright (c) 2005, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*
23
*/
24
25
#ifndef SHARE_GC_PARALLEL_PSCOMPACTIONMANAGER_HPP
26
#define SHARE_GC_PARALLEL_PSCOMPACTIONMANAGER_HPP
27
28
#include "gc/parallel/psParallelCompact.hpp"
29
#include "gc/shared/taskqueue.hpp"
30
#include "gc/shared/taskTerminator.hpp"
31
#include "memory/allocation.hpp"
32
#include "utilities/stack.hpp"
33
34
class MutableSpace;
35
class PSOldGen;
36
class ParCompactionManager;
37
class ObjectStartArray;
38
class ParallelCompactData;
39
class ParMarkBitMap;
40
41
class ParCompactionManager : public CHeapObj<mtGC> {
42
friend class MarkFromRootsTask;
43
friend class ParallelCompactRefProcProxyTask;
44
friend class ParallelScavengeRefProcProxyTask;
45
friend class ParMarkBitMap;
46
friend class PSParallelCompact;
47
friend class UpdateDensePrefixAndCompactionTask;
48
49
private:
50
typedef GenericTaskQueue<oop, mtGC> OopTaskQueue;
51
typedef GenericTaskQueueSet<OopTaskQueue, mtGC> OopTaskQueueSet;
52
53
// 32-bit: 4K * 8 = 32KiB; 64-bit: 8K * 16 = 128KiB
54
#define QUEUE_SIZE (1 << NOT_LP64(12) LP64_ONLY(13))
55
typedef OverflowTaskQueue<ObjArrayTask, mtGC, QUEUE_SIZE> ObjArrayTaskQueue;
56
typedef GenericTaskQueueSet<ObjArrayTaskQueue, mtGC> ObjArrayTaskQueueSet;
57
#undef QUEUE_SIZE
58
typedef OverflowTaskQueue<size_t, mtGC> RegionTaskQueue;
59
typedef GenericTaskQueueSet<RegionTaskQueue, mtGC> RegionTaskQueueSet;
60
61
static ParCompactionManager** _manager_array;
62
static OopTaskQueueSet* _oop_task_queues;
63
static ObjArrayTaskQueueSet* _objarray_task_queues;
64
static ObjectStartArray* _start_array;
65
static RegionTaskQueueSet* _region_task_queues;
66
static PSOldGen* _old_gen;
67
68
OverflowTaskQueue<oop, mtGC> _marking_stack;
69
ObjArrayTaskQueue _objarray_stack;
70
size_t _next_shadow_region;
71
72
// Is there a way to reuse the _marking_stack for the
73
// saving empty regions? For now just create a different
74
// type of TaskQueue.
75
RegionTaskQueue _region_stack;
76
77
static ParMarkBitMap* _mark_bitmap;
78
79
// Contains currently free shadow regions. We use it in
80
// a LIFO fashion for better data locality and utilization.
81
static GrowableArray<size_t>* _shadow_region_array;
82
83
// Provides mutual exclusive access of _shadow_region_array.
84
// See pop/push_shadow_region_mt_safe() below
85
static Monitor* _shadow_region_monitor;
86
87
HeapWord* _last_query_beg;
88
oop _last_query_obj;
89
size_t _last_query_ret;
90
91
static PSOldGen* old_gen() { return _old_gen; }
92
static ObjectStartArray* start_array() { return _start_array; }
93
static OopTaskQueueSet* oop_task_queues() { return _oop_task_queues; }
94
95
static void initialize(ParMarkBitMap* mbm);
96
97
protected:
98
// Array of task queues. Needed by the task terminator.
99
static RegionTaskQueueSet* region_task_queues() { return _region_task_queues; }
100
OverflowTaskQueue<oop, mtGC>* marking_stack() { return &_marking_stack; }
101
102
// Pushes onto the marking stack. If the marking stack is full,
103
// pushes onto the overflow stack.
104
void stack_push(oop obj);
105
// Do not implement an equivalent stack_pop. Deal with the
106
// marking stack and overflow stack directly.
107
108
public:
109
static const size_t InvalidShadow = ~0;
110
static size_t pop_shadow_region_mt_safe(PSParallelCompact::RegionData* region_ptr);
111
static void push_shadow_region_mt_safe(size_t shadow_region);
112
static void push_shadow_region(size_t shadow_region);
113
static void remove_all_shadow_regions();
114
115
inline size_t next_shadow_region() { return _next_shadow_region; }
116
inline void set_next_shadow_region(size_t record) { _next_shadow_region = record; }
117
inline size_t move_next_shadow_region_by(size_t workers) {
118
_next_shadow_region += workers;
119
return next_shadow_region();
120
}
121
122
void reset_bitmap_query_cache() {
123
_last_query_beg = NULL;
124
_last_query_obj = NULL;
125
_last_query_ret = 0;
126
}
127
128
// Bitmap query support, cache last query and result
129
HeapWord* last_query_begin() { return _last_query_beg; }
130
oop last_query_object() { return _last_query_obj; }
131
size_t last_query_return() { return _last_query_ret; }
132
133
void set_last_query_begin(HeapWord *new_beg) { _last_query_beg = new_beg; }
134
void set_last_query_object(oop new_obj) { _last_query_obj = new_obj; }
135
void set_last_query_return(size_t new_ret) { _last_query_ret = new_ret; }
136
137
static void reset_all_bitmap_query_caches();
138
139
RegionTaskQueue* region_stack() { return &_region_stack; }
140
141
static ParCompactionManager* get_vmthread_cm() { return _manager_array[ParallelGCThreads]; }
142
143
ParCompactionManager();
144
145
// Pushes onto the region stack at the given index. If the
146
// region stack is full,
147
// pushes onto the region overflow stack.
148
static void verify_region_list_empty(uint stack_index);
149
ParMarkBitMap* mark_bitmap() { return _mark_bitmap; }
150
151
// void drain_stacks();
152
153
bool should_update();
154
bool should_copy();
155
156
// Save for later processing. Must not fail.
157
inline void push(oop obj);
158
inline void push_objarray(oop objarray, size_t index);
159
inline void push_region(size_t index);
160
161
// Check mark and maybe push on marking stack.
162
template <typename T> inline void mark_and_push(T* p);
163
164
inline void follow_klass(Klass* klass);
165
166
void follow_class_loader(ClassLoaderData* klass);
167
168
// Access function for compaction managers
169
static ParCompactionManager* gc_thread_compaction_manager(uint index);
170
171
static bool steal(int queue_num, oop& t);
172
static bool steal_objarray(int queue_num, ObjArrayTask& t);
173
static bool steal(int queue_num, size_t& region);
174
175
// Process tasks remaining on any marking stack
176
void follow_marking_stacks();
177
inline bool marking_stacks_empty() const;
178
179
// Process tasks remaining on any stack
180
void drain_region_stacks();
181
182
void follow_contents(oop obj);
183
void follow_array(objArrayOop array, int index);
184
185
void update_contents(oop obj);
186
187
class FollowStackClosure: public VoidClosure {
188
private:
189
ParCompactionManager* _compaction_manager;
190
TaskTerminator* _terminator;
191
uint _worker_id;
192
public:
193
FollowStackClosure(ParCompactionManager* cm, TaskTerminator* terminator, uint worker_id)
194
: _compaction_manager(cm), _terminator(terminator), _worker_id(worker_id) { }
195
virtual void do_void();
196
};
197
198
// Called after marking.
199
static void verify_all_marking_stack_empty() NOT_DEBUG_RETURN;
200
201
// Region staks hold regions in from-space; called after compaction.
202
static void verify_all_region_stack_empty() NOT_DEBUG_RETURN;
203
};
204
205
bool ParCompactionManager::marking_stacks_empty() const {
206
return _marking_stack.is_empty() && _objarray_stack.is_empty();
207
}
208
209
#endif // SHARE_GC_PARALLEL_PSCOMPACTIONMANAGER_HPP
210
211