Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/code/exceptionHandlerTable.cpp
40930 views
1
/*
2
* Copyright (c) 1998, 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 "code/exceptionHandlerTable.hpp"
27
#include "code/nmethod.hpp"
28
#include "memory/allocation.inline.hpp"
29
30
void ExceptionHandlerTable::add_entry(HandlerTableEntry entry) {
31
_nesting.check();
32
if (_length >= _size) {
33
// not enough space => grow the table (amortized growth, double its size)
34
guarantee(_size > 0, "no space allocated => cannot grow the table since it is part of nmethod");
35
int new_size = _size * 2;
36
_table = REALLOC_RESOURCE_ARRAY(HandlerTableEntry, _table, _size, new_size);
37
_size = new_size;
38
}
39
assert(_length < _size, "sanity check");
40
_table[_length++] = entry;
41
}
42
43
44
HandlerTableEntry* ExceptionHandlerTable::subtable_for(int catch_pco) const {
45
int i = 0;
46
while (i < _length) {
47
HandlerTableEntry* t = _table + i;
48
if (t->pco() == catch_pco) {
49
// found subtable matching the catch_pco
50
return t;
51
} else {
52
// advance to next subtable
53
i += t->len() + 1; // +1 for header
54
}
55
}
56
return NULL;
57
}
58
59
60
ExceptionHandlerTable::ExceptionHandlerTable(int initial_size) {
61
guarantee(initial_size > 0, "initial size must be > 0");
62
_table = NEW_RESOURCE_ARRAY(HandlerTableEntry, initial_size);
63
_length = 0;
64
_size = initial_size;
65
}
66
67
68
ExceptionHandlerTable::ExceptionHandlerTable(const CompiledMethod* cm) {
69
_table = (HandlerTableEntry*)cm->handler_table_begin();
70
_length = cm->handler_table_size() / sizeof(HandlerTableEntry);
71
_size = 0; // no space allocated by ExeptionHandlerTable!
72
}
73
74
75
void ExceptionHandlerTable::add_subtable(
76
int catch_pco,
77
GrowableArray<intptr_t>* handler_bcis,
78
GrowableArray<intptr_t>* scope_depths_from_top_scope,
79
GrowableArray<intptr_t>* handler_pcos
80
) {
81
assert(subtable_for(catch_pco) == NULL, "catch handlers for this catch_pco added twice");
82
assert(handler_bcis->length() == handler_pcos->length(), "bci & pc table have different length");
83
assert(scope_depths_from_top_scope == NULL || handler_bcis->length() == scope_depths_from_top_scope->length(), "bci & scope_depths table have different length");
84
if (handler_bcis->length() > 0) {
85
// add subtable header
86
add_entry(HandlerTableEntry(handler_bcis->length(), catch_pco, 0));
87
// add individual entries
88
for (int i = 0; i < handler_bcis->length(); i++) {
89
intptr_t scope_depth = 0;
90
if (scope_depths_from_top_scope != NULL) {
91
scope_depth = scope_depths_from_top_scope->at(i);
92
}
93
add_entry(HandlerTableEntry(handler_bcis->at(i), handler_pcos->at(i), scope_depth));
94
assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->pco() == handler_pcos->at(i), "entry not added correctly (1)");
95
assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->scope_depth() == scope_depth, "entry not added correctly (2)");
96
}
97
}
98
}
99
100
101
void ExceptionHandlerTable::copy_to(CompiledMethod* cm) {
102
assert(size_in_bytes() == cm->handler_table_size(), "size of space allocated in compiled method incorrect");
103
copy_bytes_to(cm->handler_table_begin());
104
}
105
106
void ExceptionHandlerTable::copy_bytes_to(address addr) {
107
memmove(addr, _table, size_in_bytes());
108
}
109
110
HandlerTableEntry* ExceptionHandlerTable::entry_for(int catch_pco, int handler_bci, int scope_depth) const {
111
HandlerTableEntry* t = subtable_for(catch_pco);
112
if (t != NULL) {
113
int l = t->len();
114
while (l-- > 0) {
115
t++;
116
if (t->bci() == handler_bci && t->scope_depth() == scope_depth) return t;
117
}
118
}
119
return NULL;
120
}
121
122
123
void ExceptionHandlerTable::print_subtable(HandlerTableEntry* t, address base) const {
124
int l = t->len();
125
bool have_base_addr = (base != NULL);
126
if (have_base_addr) {
127
tty->print_cr("catch_pco = %d (pc=" INTPTR_FORMAT ", %d entries)", t->pco(), p2i(base + t->pco()), l);
128
} else {
129
tty->print_cr("catch_pco = %d (%d entries)", t->pco(), l);
130
}
131
while (l-- > 0) {
132
t++;
133
if (have_base_addr) {
134
tty->print_cr(" bci %d at scope depth %d -> pco %d (pc=" INTPTR_FORMAT ")",
135
t->bci(), t->scope_depth(), t->pco(), p2i(base + t->pco()));
136
} else {
137
tty->print_cr(" bci %d at scope depth %d -> pco %d", t->bci(), t->scope_depth(), t->pco());
138
}
139
}
140
}
141
142
143
void ExceptionHandlerTable::print(address base) const {
144
tty->print_cr("ExceptionHandlerTable (size = %d bytes)", size_in_bytes());
145
int i = 0;
146
while (i < _length) {
147
HandlerTableEntry* t = _table + i;
148
print_subtable(t, base);
149
// advance to next subtable
150
i += t->len() + 1; // +1 for header
151
}
152
}
153
154
void ExceptionHandlerTable::print_subtable_for(int catch_pco) const {
155
HandlerTableEntry* subtable = subtable_for(catch_pco);
156
157
if( subtable != NULL ) { print_subtable( subtable ); }
158
}
159
160
// ----------------------------------------------------------------------------
161
// Implicit null exception tables. Maps an exception PC offset to a
162
// continuation PC offset. During construction it's a variable sized
163
// array with a max size and current length. When stored inside an
164
// nmethod a zero length table takes no space. This is detected by
165
// nul_chk_table_size() == 0. Otherwise the table has a length word
166
// followed by pairs of <excp-offset, const-offset>.
167
void ImplicitExceptionTable::set_size( uint size ) {
168
_size = size;
169
_data = NEW_RESOURCE_ARRAY(implicit_null_entry, (size*2));
170
_len = 0;
171
}
172
173
void ImplicitExceptionTable::append( uint exec_off, uint cont_off ) {
174
assert( (sizeof(implicit_null_entry) >= 4) || (exec_off < 65535), "" );
175
assert( (sizeof(implicit_null_entry) >= 4) || (cont_off < 65535), "" );
176
uint l = len();
177
if (l == _size) {
178
uint old_size_in_elements = _size*2;
179
if (_size == 0) _size = 4;
180
_size *= 2;
181
uint new_size_in_elements = _size*2;
182
_data = REALLOC_RESOURCE_ARRAY(uint, _data, old_size_in_elements, new_size_in_elements);
183
}
184
*(adr(l) ) = exec_off;
185
*(adr(l)+1) = cont_off;
186
_len = l+1;
187
};
188
189
uint ImplicitExceptionTable::continuation_offset( uint exec_off ) const {
190
uint l = len();
191
for( uint i=0; i<l; i++ )
192
if( *adr(i) == exec_off )
193
return *(adr(i)+1);
194
return 0; // Failed to find any execption offset
195
}
196
197
void ImplicitExceptionTable::print(address base) const {
198
const uint n = len();
199
if (n > 0) {
200
const uint items_per_line = 3;
201
uint i;
202
tty->print_cr("ImplicitExceptionTable (size = %d entries, %d bytes):", n, size_in_bytes());
203
tty->print("{");
204
for (i = 0; i < n; i++) {
205
if (i%items_per_line == 0) {
206
tty->cr();
207
tty->fill_to(3);
208
}
209
tty->print("< " INTPTR_FORMAT ", " INTPTR_FORMAT " > ", p2i(base + *adr(i)), p2i(base + *(adr(i)+1)));
210
}
211
tty->bol();
212
tty->print_cr("}");
213
} else {
214
tty->print_cr("ImplicitExceptionTable is empty");
215
}
216
}
217
218
ImplicitExceptionTable::ImplicitExceptionTable(const CompiledMethod* nm) {
219
if (nm->nul_chk_table_size() == 0) {
220
_len = 0;
221
_data = NULL;
222
} else {
223
// the first word is the length if non-zero, so read it out and
224
// skip to the next word to get the table.
225
_data = (implicit_null_entry*)nm->nul_chk_table_begin();
226
_len = _data[0];
227
_data++;
228
}
229
_size = len();
230
assert(size_in_bytes() <= nm->nul_chk_table_size(), "size of space allocated in nmethod incorrect");
231
}
232
233
void ImplicitExceptionTable::copy_to( nmethod* nm ) {
234
copy_bytes_to(nm->nul_chk_table_begin(), nm->nul_chk_table_size());
235
}
236
237
void ImplicitExceptionTable::copy_bytes_to(address addr, int size) {
238
assert(size_in_bytes() <= size, "size of space allocated in nmethod incorrect");
239
if (len() != 0) {
240
implicit_null_entry* nmdata = (implicit_null_entry*)addr;
241
// store the length in the first uint
242
nmdata[0] = _len;
243
nmdata++;
244
// copy the table after the length
245
memmove( nmdata, _data, 2 * len() * sizeof(implicit_null_entry));
246
} else {
247
// zero length table takes zero bytes
248
assert(size_in_bytes() == 0, "bad size");
249
assert(size == 0, "bad size");
250
}
251
}
252
253
void ImplicitExceptionTable::verify(nmethod *nm) const {
254
for (uint i = 0; i < len(); i++) {
255
if ((*adr(i) > (unsigned int)nm->insts_size()) ||
256
(*(adr(i)+1) > (unsigned int)nm->insts_size()))
257
fatal("Invalid offset in ImplicitExceptionTable at " PTR_FORMAT, p2i(_data));
258
}
259
}
260
261