Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/cds/cdsoffsets.cpp
41144 views
1
/*
2
* Copyright (c) 2014, 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
#include "precompiled.hpp"
26
#include "cds/cdsoffsets.hpp"
27
#include "cds/dynamicArchive.hpp"
28
#include "cds/filemap.hpp"
29
#include "runtime/os.hpp"
30
#include "memory/allocation.hpp"
31
#include "memory/allocation.inline.hpp"
32
#include "utilities/macros.hpp"
33
34
CDSOffsets::CDSOffsets(const char* name, int offset, CDSOffsets* next) {
35
_name = NEW_C_HEAP_ARRAY(char, strlen(name) + 1, mtInternal);
36
strcpy(_name, name);
37
_offset = offset;
38
_next = next;
39
}
40
41
CDSOffsets* CDSOffsets::_all = NULL;
42
#define ADD_NEXT(list, name, value) \
43
list->add_end(new CDSOffsets(name, value, NULL))
44
45
#define CREATE_OFFSET_MAPS \
46
_all = new CDSOffsets("size_t_size", sizeof(size_t), NULL); \
47
ADD_NEXT(_all, "int_size", sizeof(int)); \
48
ADD_NEXT(_all, "FileMapHeader::_magic", offset_of(FileMapHeader, _magic)); \
49
ADD_NEXT(_all, "FileMapHeader::_crc", offset_of(FileMapHeader, _crc)); \
50
ADD_NEXT(_all, "FileMapHeader::_version", offset_of(FileMapHeader, _version)); \
51
ADD_NEXT(_all, "FileMapHeader::_jvm_ident", offset_of(FileMapHeader, _jvm_ident)); \
52
ADD_NEXT(_all, "FileMapHeader::_space[0]", offset_of(FileMapHeader, _space)); \
53
ADD_NEXT(_all, "CDSFileMapRegion::_crc", offset_of(CDSFileMapRegion, _crc)); \
54
ADD_NEXT(_all, "CDSFileMapRegion::_used", offset_of(CDSFileMapRegion, _used)); \
55
ADD_NEXT(_all, "file_header_size", sizeof(FileMapHeader)); \
56
ADD_NEXT(_all, "DynamicArchiveHeader::_base_region_crc", offset_of(DynamicArchiveHeader, _base_region_crc)); \
57
ADD_NEXT(_all, "CDSFileMapRegion_size", sizeof(CDSFileMapRegion));
58
59
int CDSOffsets::find_offset(const char* name) {
60
if (_all == NULL) {
61
CREATE_OFFSET_MAPS
62
}
63
CDSOffsets* it = _all;
64
while(it) {
65
if (!strcmp(name, it->get_name())) {
66
return it->get_offset();
67
}
68
it = it->next();
69
}
70
return -1; // not found
71
}
72
73
void CDSOffsets::add_end(CDSOffsets* n) {
74
CDSOffsets* p = this;
75
while(p && p->_next) { p = p->_next; }
76
p->_next = n;
77
}
78
79