Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/cds/archiveUtils.hpp
41144 views
1
/*
2
* Copyright (c) 2019, 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_CDS_ARCHIVEUTILS_HPP
26
#define SHARE_CDS_ARCHIVEUTILS_HPP
27
28
#include "logging/log.hpp"
29
#include "memory/iterator.hpp"
30
#include "memory/virtualspace.hpp"
31
#include "utilities/bitMap.hpp"
32
#include "utilities/exceptions.hpp"
33
34
class BootstrapInfo;
35
class ReservedSpace;
36
class VirtualSpace;
37
38
// ArchivePtrMarker is used to mark the location of pointers embedded in a CDS archive. E.g., when an
39
// InstanceKlass k is dumped, we mark the location of the k->_name pointer by effectively calling
40
// mark_pointer(/*ptr_loc=*/&k->_name). It's required that (_prt_base <= ptr_loc < _ptr_end). _ptr_base is
41
// fixed, but _ptr_end can be expanded as more objects are dumped.
42
class ArchivePtrMarker : AllStatic {
43
static CHeapBitMap* _ptrmap;
44
static VirtualSpace* _vs;
45
46
// Once _ptrmap is compacted, we don't allow bit marking anymore. This is to
47
// avoid unintentional copy operations after the bitmap has been finalized and written.
48
static bool _compacted;
49
50
static address* ptr_base() { return (address*)_vs->low(); } // committed lower bound (inclusive)
51
static address* ptr_end() { return (address*)_vs->high(); } // committed upper bound (exclusive)
52
53
public:
54
static void initialize(CHeapBitMap* ptrmap, VirtualSpace* vs);
55
static void mark_pointer(address* ptr_loc);
56
static void clear_pointer(address* ptr_loc);
57
static void compact(address relocatable_base, address relocatable_end);
58
static void compact(size_t max_non_null_offset);
59
60
template <typename T>
61
static void mark_pointer(T* ptr_loc) {
62
mark_pointer((address*)ptr_loc);
63
}
64
65
template <typename T>
66
static void set_and_mark_pointer(T* ptr_loc, T ptr_value) {
67
*ptr_loc = ptr_value;
68
mark_pointer(ptr_loc);
69
}
70
71
static CHeapBitMap* ptrmap() {
72
return _ptrmap;
73
}
74
};
75
76
// SharedDataRelocator is used to shift pointers in the CDS archive.
77
//
78
// The CDS archive is basically a contiguous block of memory (divided into several regions)
79
// that contains multiple objects. The objects may contain direct pointers that point to other objects
80
// within the archive (e.g., InstanceKlass::_name points to a Symbol in the archive). During dumping, we
81
// built a bitmap that marks the locations of all these pointers (using ArchivePtrMarker, see comments above).
82
//
83
// The contents of the archive assumes that it’s mapped at the default SharedBaseAddress (e.g. 0x800000000).
84
// If the archive ends up being mapped at a different address (e.g. 0x810000000), SharedDataRelocator
85
// is used to shift each marked pointer by a delta (0x10000000 in this example), so that it points to
86
// the actually mapped location of the target object.
87
class SharedDataRelocator: public BitMapClosure {
88
// for all (address** p), where (is_marked(p) && _patch_base <= p && p < _patch_end) { *p += delta; }
89
90
// Patch all pointers within this region that are marked.
91
address* _patch_base;
92
address* _patch_end;
93
94
// Before patching, all pointers must point to this region.
95
address _valid_old_base;
96
address _valid_old_end;
97
98
// After patching, all pointers must point to this region.
99
address _valid_new_base;
100
address _valid_new_end;
101
102
// How much to relocate for each pointer.
103
intx _delta;
104
105
public:
106
SharedDataRelocator(address* patch_base, address* patch_end,
107
address valid_old_base, address valid_old_end,
108
address valid_new_base, address valid_new_end, intx delta) :
109
_patch_base(patch_base), _patch_end(patch_end),
110
_valid_old_base(valid_old_base), _valid_old_end(valid_old_end),
111
_valid_new_base(valid_new_base), _valid_new_end(valid_new_end),
112
_delta(delta) {
113
log_debug(cds, reloc)("SharedDataRelocator::_patch_base = " PTR_FORMAT, p2i(_patch_base));
114
log_debug(cds, reloc)("SharedDataRelocator::_patch_end = " PTR_FORMAT, p2i(_patch_end));
115
log_debug(cds, reloc)("SharedDataRelocator::_valid_old_base = " PTR_FORMAT, p2i(_valid_old_base));
116
log_debug(cds, reloc)("SharedDataRelocator::_valid_old_end = " PTR_FORMAT, p2i(_valid_old_end));
117
log_debug(cds, reloc)("SharedDataRelocator::_valid_new_base = " PTR_FORMAT, p2i(_valid_new_base));
118
log_debug(cds, reloc)("SharedDataRelocator::_valid_new_end = " PTR_FORMAT, p2i(_valid_new_end));
119
}
120
121
bool do_bit(size_t offset);
122
};
123
124
class DumpRegion {
125
private:
126
const char* _name;
127
char* _base;
128
char* _top;
129
char* _end;
130
uintx _max_delta;
131
bool _is_packed;
132
ReservedSpace* _rs;
133
VirtualSpace* _vs;
134
135
void commit_to(char* newtop);
136
137
public:
138
DumpRegion(const char* name, uintx max_delta = 0)
139
: _name(name), _base(NULL), _top(NULL), _end(NULL),
140
_max_delta(max_delta), _is_packed(false) {}
141
142
char* expand_top_to(char* newtop);
143
char* allocate(size_t num_bytes);
144
145
void append_intptr_t(intptr_t n, bool need_to_mark = false);
146
147
char* base() const { return _base; }
148
char* top() const { return _top; }
149
char* end() const { return _end; }
150
size_t reserved() const { return _end - _base; }
151
size_t used() const { return _top - _base; }
152
bool is_packed() const { return _is_packed; }
153
bool is_allocatable() const {
154
return !is_packed() && _base != NULL;
155
}
156
157
void print(size_t total_bytes) const;
158
void print_out_of_space_msg(const char* failing_region, size_t needed_bytes);
159
160
void init(ReservedSpace* rs, VirtualSpace* vs);
161
162
void pack(DumpRegion* next = NULL);
163
164
bool contains(char* p) {
165
return base() <= p && p < top();
166
}
167
};
168
169
// Closure for serializing initialization data out to a data area to be
170
// written to the shared file.
171
172
class WriteClosure : public SerializeClosure {
173
private:
174
DumpRegion* _dump_region;
175
176
public:
177
WriteClosure(DumpRegion* r) {
178
_dump_region = r;
179
}
180
181
void do_ptr(void** p) {
182
_dump_region->append_intptr_t((intptr_t)*p, true);
183
}
184
185
void do_u4(u4* p) {
186
_dump_region->append_intptr_t((intptr_t)(*p));
187
}
188
189
void do_bool(bool *p) {
190
_dump_region->append_intptr_t((intptr_t)(*p));
191
}
192
193
void do_tag(int tag) {
194
_dump_region->append_intptr_t((intptr_t)tag);
195
}
196
197
void do_oop(oop* o);
198
void do_region(u_char* start, size_t size);
199
bool reading() const { return false; }
200
};
201
202
// Closure for serializing initialization data in from a data area
203
// (ptr_array) read from the shared file.
204
205
class ReadClosure : public SerializeClosure {
206
private:
207
intptr_t** _ptr_array;
208
209
inline intptr_t nextPtr() {
210
return *(*_ptr_array)++;
211
}
212
213
public:
214
ReadClosure(intptr_t** ptr_array) { _ptr_array = ptr_array; }
215
216
void do_ptr(void** p);
217
void do_u4(u4* p);
218
void do_bool(bool *p);
219
void do_tag(int tag);
220
void do_oop(oop *p);
221
void do_region(u_char* start, size_t size);
222
bool reading() const { return true; }
223
};
224
225
class ArchiveUtils {
226
public:
227
static void log_to_classlist(BootstrapInfo* bootstrap_specifier, TRAPS) NOT_CDS_RETURN;
228
};
229
230
#endif // SHARE_CDS_ARCHIVEUTILS_HPP
231
232