Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/utilities/exceptions.cpp
40949 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 "classfile/javaClasses.hpp"
27
#include "classfile/systemDictionary.hpp"
28
#include "classfile/vmClasses.hpp"
29
#include "classfile/vmSymbols.hpp"
30
#include "compiler/compileBroker.hpp"
31
#include "logging/log.hpp"
32
#include "logging/logStream.hpp"
33
#include "memory/resourceArea.hpp"
34
#include "memory/universe.hpp"
35
#include "oops/oop.inline.hpp"
36
#include "runtime/handles.inline.hpp"
37
#include "runtime/init.hpp"
38
#include "runtime/java.hpp"
39
#include "runtime/javaCalls.hpp"
40
#include "runtime/os.hpp"
41
#include "runtime/thread.inline.hpp"
42
#include "runtime/threadCritical.hpp"
43
#include "runtime/atomic.hpp"
44
#include "utilities/events.hpp"
45
#include "utilities/exceptions.hpp"
46
47
// Implementation of ThreadShadow
48
void check_ThreadShadow() {
49
const ByteSize offset1 = byte_offset_of(ThreadShadow, _pending_exception);
50
const ByteSize offset2 = Thread::pending_exception_offset();
51
if (offset1 != offset2) fatal("ThreadShadow::_pending_exception is not positioned correctly");
52
}
53
54
55
void ThreadShadow::set_pending_exception(oop exception, const char* file, int line) {
56
assert(exception != NULL && oopDesc::is_oop(exception), "invalid exception oop");
57
_pending_exception = exception;
58
_exception_file = file;
59
_exception_line = line;
60
}
61
62
void ThreadShadow::clear_pending_exception() {
63
LogTarget(Debug, exceptions) lt;
64
if (_pending_exception != NULL && lt.is_enabled()) {
65
ResourceMark rm;
66
LogStream ls(lt);
67
ls.print("Thread::clear_pending_exception: cleared exception:");
68
_pending_exception->print_on(&ls);
69
}
70
_pending_exception = NULL;
71
_exception_file = NULL;
72
_exception_line = 0;
73
}
74
75
void ThreadShadow::clear_pending_nonasync_exception() {
76
// Do not clear probable async exceptions.
77
if (!_pending_exception->is_a(vmClasses::ThreadDeath_klass()) &&
78
(_pending_exception->klass() != vmClasses::InternalError_klass() ||
79
java_lang_InternalError::during_unsafe_access(_pending_exception) != JNI_TRUE)) {
80
clear_pending_exception();
81
}
82
}
83
84
// Implementation of Exceptions
85
86
bool Exceptions::special_exception(JavaThread* thread, const char* file, int line, Handle h_exception) {
87
// bootstrapping check
88
if (!Universe::is_fully_initialized()) {
89
vm_exit_during_initialization(h_exception);
90
ShouldNotReachHere();
91
}
92
93
#ifdef ASSERT
94
// Check for trying to throw stack overflow before initialization is complete
95
// to prevent infinite recursion trying to initialize stack overflow without
96
// adequate stack space.
97
// This can happen with stress testing a large value of StackShadowPages
98
if (h_exception()->klass() == vmClasses::StackOverflowError_klass()) {
99
InstanceKlass* ik = InstanceKlass::cast(h_exception->klass());
100
assert(ik->is_initialized(),
101
"need to increase java_thread_min_stack_allowed calculation");
102
}
103
#endif // ASSERT
104
105
if (!thread->can_call_java()) {
106
// We do not care what kind of exception we get for a thread which
107
// is compiling. We just install a dummy exception object
108
thread->set_pending_exception(Universe::vm_exception(), file, line);
109
return true;
110
}
111
112
return false;
113
}
114
115
bool Exceptions::special_exception(JavaThread* thread, const char* file, int line, Symbol* h_name, const char* message) {
116
// bootstrapping check
117
if (!Universe::is_fully_initialized()) {
118
if (h_name == NULL) {
119
// atleast an informative message.
120
vm_exit_during_initialization("Exception", message);
121
} else {
122
vm_exit_during_initialization(h_name, message);
123
}
124
ShouldNotReachHere();
125
}
126
127
if (!thread->can_call_java()) {
128
// We do not care what kind of exception we get for a thread which
129
// is compiling. We just install a dummy exception object
130
thread->set_pending_exception(Universe::vm_exception(), file, line);
131
return true;
132
}
133
return false;
134
}
135
136
// This method should only be called from generated code,
137
// therefore the exception oop should be in the oopmap.
138
void Exceptions::_throw_oop(JavaThread* thread, const char* file, int line, oop exception) {
139
assert(exception != NULL, "exception should not be NULL");
140
Handle h_exception(thread, exception);
141
_throw(thread, file, line, h_exception);
142
}
143
144
void Exceptions::_throw(JavaThread* thread, const char* file, int line, Handle h_exception, const char* message) {
145
ResourceMark rm(thread);
146
assert(h_exception() != NULL, "exception should not be NULL");
147
148
// tracing (do this up front - so it works during boot strapping)
149
// Note, the print_value_string() argument is not called unless logging is enabled!
150
log_info(exceptions)("Exception <%s%s%s> (" INTPTR_FORMAT ") \n"
151
"thrown [%s, line %d]\nfor thread " INTPTR_FORMAT,
152
h_exception->print_value_string(),
153
message ? ": " : "", message ? message : "",
154
p2i(h_exception()), file, line, p2i(thread));
155
156
// for AbortVMOnException flag
157
Exceptions::debug_check_abort(h_exception, message);
158
159
// Check for special boot-strapping/compiler-thread handling
160
if (special_exception(thread, file, line, h_exception)) {
161
return;
162
}
163
164
if (h_exception->is_a(vmClasses::OutOfMemoryError_klass())) {
165
count_out_of_memory_exceptions(h_exception);
166
}
167
168
if (h_exception->is_a(vmClasses::LinkageError_klass())) {
169
Atomic::inc(&_linkage_errors);
170
}
171
172
assert(h_exception->is_a(vmClasses::Throwable_klass()), "exception is not a subclass of java/lang/Throwable");
173
174
// set the pending exception
175
thread->set_pending_exception(h_exception(), file, line);
176
177
// vm log
178
Events::log_exception(thread, h_exception, message, file, line);
179
}
180
181
182
void Exceptions::_throw_msg(JavaThread* thread, const char* file, int line, Symbol* name, const char* message,
183
Handle h_loader, Handle h_protection_domain) {
184
// Check for special boot-strapping/compiler-thread handling
185
if (special_exception(thread, file, line, name, message)) return;
186
// Create and throw exception
187
Handle h_cause(thread, NULL);
188
Handle h_exception = new_exception(thread, name, message, h_cause, h_loader, h_protection_domain);
189
_throw(thread, file, line, h_exception, message);
190
}
191
192
void Exceptions::_throw_msg_cause(JavaThread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause,
193
Handle h_loader, Handle h_protection_domain) {
194
// Check for special boot-strapping/compiler-thread handling
195
if (special_exception(thread, file, line, name, message)) return;
196
// Create and throw exception and init cause
197
Handle h_exception = new_exception(thread, name, message, h_cause, h_loader, h_protection_domain);
198
_throw(thread, file, line, h_exception, message);
199
}
200
201
void Exceptions::_throw_cause(JavaThread* thread, const char* file, int line, Symbol* name, Handle h_cause,
202
Handle h_loader, Handle h_protection_domain) {
203
// Check for special boot-strapping/compiler-thread handling
204
if (special_exception(thread, file, line, h_cause)) return;
205
// Create and throw exception
206
Handle h_exception = new_exception(thread, name, h_cause, h_loader, h_protection_domain);
207
_throw(thread, file, line, h_exception, NULL);
208
}
209
210
void Exceptions::_throw_args(JavaThread* thread, const char* file, int line, Symbol* name, Symbol* signature, JavaCallArguments *args) {
211
// Check for special boot-strapping/compiler-thread handling
212
if (special_exception(thread, file, line, name, NULL)) return;
213
// Create and throw exception
214
Handle h_loader(thread, NULL);
215
Handle h_prot(thread, NULL);
216
Handle exception = new_exception(thread, name, signature, args, h_loader, h_prot);
217
_throw(thread, file, line, exception);
218
}
219
220
221
// Methods for default parameters.
222
// NOTE: These must be here (and not in the header file) because of include circularities.
223
void Exceptions::_throw_msg_cause(JavaThread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause) {
224
_throw_msg_cause(thread, file, line, name, message, h_cause, Handle(thread, NULL), Handle(thread, NULL));
225
}
226
void Exceptions::_throw_msg(JavaThread* thread, const char* file, int line, Symbol* name, const char* message) {
227
_throw_msg(thread, file, line, name, message, Handle(thread, NULL), Handle(thread, NULL));
228
}
229
void Exceptions::_throw_cause(JavaThread* thread, const char* file, int line, Symbol* name, Handle h_cause) {
230
_throw_cause(thread, file, line, name, h_cause, Handle(thread, NULL), Handle(thread, NULL));
231
}
232
233
234
void Exceptions::throw_stack_overflow_exception(JavaThread* THREAD, const char* file, int line, const methodHandle& method) {
235
Handle exception;
236
if (!THREAD->has_pending_exception()) {
237
InstanceKlass* k = vmClasses::StackOverflowError_klass();
238
oop e = k->allocate_instance(CHECK);
239
exception = Handle(THREAD, e); // fill_in_stack trace does gc
240
assert(k->is_initialized(), "need to increase java_thread_min_stack_allowed calculation");
241
if (StackTraceInThrowable) {
242
java_lang_Throwable::fill_in_stack_trace(exception, method);
243
}
244
// Increment counter for hs_err file reporting
245
Atomic::inc(&Exceptions::_stack_overflow_errors);
246
} else {
247
// if prior exception, throw that one instead
248
exception = Handle(THREAD, THREAD->pending_exception());
249
}
250
_throw(THREAD, file, line, exception);
251
}
252
253
void Exceptions::throw_unsafe_access_internal_error(JavaThread* thread, const char* file, int line, const char* message) {
254
Handle h_exception = new_exception(thread, vmSymbols::java_lang_InternalError(), message);
255
java_lang_InternalError::set_during_unsafe_access(h_exception());
256
_throw(thread, file, line, h_exception, message);
257
}
258
259
void Exceptions::fthrow(JavaThread* thread, const char* file, int line, Symbol* h_name, const char* format, ...) {
260
const int max_msg_size = 1024;
261
va_list ap;
262
va_start(ap, format);
263
char msg[max_msg_size];
264
os::vsnprintf(msg, max_msg_size, format, ap);
265
va_end(ap);
266
_throw_msg(thread, file, line, h_name, msg);
267
}
268
269
270
// Creates an exception oop, calls the <init> method with the given signature.
271
// and returns a Handle
272
Handle Exceptions::new_exception(JavaThread* thread, Symbol* name,
273
Symbol* signature, JavaCallArguments *args,
274
Handle h_loader, Handle h_protection_domain) {
275
assert(Universe::is_fully_initialized(),
276
"cannot be called during initialization");
277
assert(!thread->has_pending_exception(), "already has exception");
278
279
Handle h_exception;
280
281
// Resolve exception klass, and check for pending exception below.
282
Klass* klass = SystemDictionary::resolve_or_fail(name, h_loader, h_protection_domain, true, thread);
283
284
if (!thread->has_pending_exception()) {
285
assert(klass != NULL, "klass must exist");
286
h_exception = JavaCalls::construct_new_instance(InstanceKlass::cast(klass),
287
signature,
288
args,
289
thread);
290
}
291
292
// Check if another exception was thrown in the process, if so rethrow that one
293
if (thread->has_pending_exception()) {
294
h_exception = Handle(thread, thread->pending_exception());
295
thread->clear_pending_exception();
296
}
297
return h_exception;
298
}
299
300
// Creates an exception oop, calls the <init> method with the given signature.
301
// and returns a Handle
302
// Initializes the cause if cause non-null
303
Handle Exceptions::new_exception(JavaThread* thread, Symbol* name,
304
Symbol* signature, JavaCallArguments *args,
305
Handle h_cause,
306
Handle h_loader, Handle h_protection_domain) {
307
Handle h_exception = new_exception(thread, name, signature, args, h_loader, h_protection_domain);
308
309
// Future: object initializer should take a cause argument
310
if (h_cause.not_null()) {
311
assert(h_cause->is_a(vmClasses::Throwable_klass()),
312
"exception cause is not a subclass of java/lang/Throwable");
313
JavaValue result1(T_OBJECT);
314
JavaCallArguments args1;
315
args1.set_receiver(h_exception);
316
args1.push_oop(h_cause);
317
JavaCalls::call_virtual(&result1, h_exception->klass(),
318
vmSymbols::initCause_name(),
319
vmSymbols::throwable_throwable_signature(),
320
&args1,
321
thread);
322
}
323
324
// Check if another exception was thrown in the process, if so rethrow that one
325
if (thread->has_pending_exception()) {
326
h_exception = Handle(thread, thread->pending_exception());
327
thread->clear_pending_exception();
328
}
329
return h_exception;
330
}
331
332
// Convenience method. Calls either the <init>() or <init>(Throwable) method when
333
// creating a new exception
334
Handle Exceptions::new_exception(JavaThread* thread, Symbol* name,
335
Handle h_cause,
336
Handle h_loader, Handle h_protection_domain,
337
ExceptionMsgToUtf8Mode to_utf8_safe) {
338
JavaCallArguments args;
339
Symbol* signature = NULL;
340
if (h_cause.is_null()) {
341
signature = vmSymbols::void_method_signature();
342
} else {
343
signature = vmSymbols::throwable_void_signature();
344
args.push_oop(h_cause);
345
}
346
return new_exception(thread, name, signature, &args, h_loader, h_protection_domain);
347
}
348
349
// Convenience method. Calls either the <init>() or <init>(String) method when
350
// creating a new exception
351
Handle Exceptions::new_exception(JavaThread* thread, Symbol* name,
352
const char* message, Handle h_cause,
353
Handle h_loader, Handle h_protection_domain,
354
ExceptionMsgToUtf8Mode to_utf8_safe) {
355
JavaCallArguments args;
356
Symbol* signature = NULL;
357
if (message == NULL) {
358
signature = vmSymbols::void_method_signature();
359
} else {
360
// We want to allocate storage, but we can't do that if there's
361
// a pending exception, so we preserve any pending exception
362
// around the allocation.
363
// If we get an exception from the allocation, prefer that to
364
// the exception we are trying to build, or the pending exception.
365
// This is sort of like what PreserveExceptionMark does, except
366
// for the preferencing and the early returns.
367
Handle incoming_exception(thread, NULL);
368
if (thread->has_pending_exception()) {
369
incoming_exception = Handle(thread, thread->pending_exception());
370
thread->clear_pending_exception();
371
}
372
Handle msg;
373
if (to_utf8_safe == safe_to_utf8) {
374
// Make a java UTF8 string.
375
msg = java_lang_String::create_from_str(message, thread);
376
} else {
377
// Make a java string keeping the encoding scheme of the original string.
378
msg = java_lang_String::create_from_platform_dependent_str(message, thread);
379
}
380
if (thread->has_pending_exception()) {
381
Handle exception(thread, thread->pending_exception());
382
thread->clear_pending_exception();
383
return exception;
384
}
385
if (incoming_exception.not_null()) {
386
return incoming_exception;
387
}
388
args.push_oop(msg);
389
signature = vmSymbols::string_void_signature();
390
}
391
return new_exception(thread, name, signature, &args, h_cause, h_loader, h_protection_domain);
392
}
393
394
// Another convenience method that creates handles for null class loaders and
395
// protection domains and null causes.
396
// If the last parameter 'to_utf8_mode' is safe_to_utf8,
397
// it means we can safely ignore the encoding scheme of the message string and
398
// convert it directly to a java UTF8 string. Otherwise, we need to take the
399
// encoding scheme of the string into account. One thing we should do at some
400
// point is to push this flag down to class java_lang_String since other
401
// classes may need similar functionalities.
402
Handle Exceptions::new_exception(JavaThread* thread, Symbol* name,
403
const char* message,
404
ExceptionMsgToUtf8Mode to_utf8_safe) {
405
406
Handle h_loader(thread, NULL);
407
Handle h_prot(thread, NULL);
408
Handle h_cause(thread, NULL);
409
return Exceptions::new_exception(thread, name, message, h_cause, h_loader,
410
h_prot, to_utf8_safe);
411
}
412
413
// invokedynamic uses wrap_dynamic_exception for:
414
// - bootstrap method resolution
415
// - post call to MethodHandleNatives::linkCallSite
416
// dynamically computed constant uses wrap_dynamic_exception for:
417
// - bootstrap method resolution
418
// - post call to MethodHandleNatives::linkDynamicConstant
419
void Exceptions::wrap_dynamic_exception(bool is_indy, JavaThread* THREAD) {
420
if (THREAD->has_pending_exception()) {
421
bool log_indy = log_is_enabled(Debug, methodhandles, indy) && is_indy;
422
bool log_condy = log_is_enabled(Debug, methodhandles, condy) && !is_indy;
423
LogStreamHandle(Debug, methodhandles, indy) lsh_indy;
424
LogStreamHandle(Debug, methodhandles, condy) lsh_condy;
425
LogStream* ls = NULL;
426
if (log_indy) {
427
ls = &lsh_indy;
428
} else if (log_condy) {
429
ls = &lsh_condy;
430
}
431
oop exception = THREAD->pending_exception();
432
433
// See the "Linking Exceptions" section for the invokedynamic instruction
434
// in JVMS 6.5.
435
if (exception->is_a(vmClasses::Error_klass())) {
436
// Pass through an Error, including BootstrapMethodError, any other form
437
// of linkage error, or say ThreadDeath/OutOfMemoryError
438
if (ls != NULL) {
439
ls->print_cr("bootstrap method invocation wraps BSME around " INTPTR_FORMAT, p2i((void *)exception));
440
exception->print_on(ls);
441
}
442
return;
443
}
444
445
// Otherwise wrap the exception in a BootstrapMethodError
446
if (ls != NULL) {
447
ls->print_cr("%s throws BSME for " INTPTR_FORMAT, is_indy ? "invokedynamic" : "dynamic constant", p2i((void *)exception));
448
exception->print_on(ls);
449
}
450
Handle nested_exception(THREAD, exception);
451
THREAD->clear_pending_exception();
452
THROW_CAUSE(vmSymbols::java_lang_BootstrapMethodError(), nested_exception)
453
}
454
}
455
456
// Exception counting for hs_err file
457
volatile int Exceptions::_stack_overflow_errors = 0;
458
volatile int Exceptions::_linkage_errors = 0;
459
volatile int Exceptions::_out_of_memory_error_java_heap_errors = 0;
460
volatile int Exceptions::_out_of_memory_error_metaspace_errors = 0;
461
volatile int Exceptions::_out_of_memory_error_class_metaspace_errors = 0;
462
463
void Exceptions::count_out_of_memory_exceptions(Handle exception) {
464
if (exception() == Universe::out_of_memory_error_metaspace()) {
465
Atomic::inc(&_out_of_memory_error_metaspace_errors);
466
} else if (exception() == Universe::out_of_memory_error_class_metaspace()) {
467
Atomic::inc(&_out_of_memory_error_class_metaspace_errors);
468
} else {
469
// everything else reported as java heap OOM
470
Atomic::inc(&_out_of_memory_error_java_heap_errors);
471
}
472
}
473
474
void print_oom_count(outputStream* st, const char *err, int count) {
475
if (count > 0) {
476
st->print_cr("OutOfMemoryError %s=%d", err, count);
477
}
478
}
479
480
bool Exceptions::has_exception_counts() {
481
return (_stack_overflow_errors + _out_of_memory_error_java_heap_errors +
482
_out_of_memory_error_metaspace_errors + _out_of_memory_error_class_metaspace_errors) > 0;
483
}
484
485
void Exceptions::print_exception_counts_on_error(outputStream* st) {
486
print_oom_count(st, "java_heap_errors", _out_of_memory_error_java_heap_errors);
487
print_oom_count(st, "metaspace_errors", _out_of_memory_error_metaspace_errors);
488
print_oom_count(st, "class_metaspace_errors", _out_of_memory_error_class_metaspace_errors);
489
if (_stack_overflow_errors > 0) {
490
st->print_cr("StackOverflowErrors=%d", _stack_overflow_errors);
491
}
492
if (_linkage_errors > 0) {
493
st->print_cr("LinkageErrors=%d", _linkage_errors);
494
}
495
}
496
497
// Implementation of ExceptionMark
498
499
ExceptionMark::ExceptionMark(JavaThread* thread) {
500
assert(thread == JavaThread::current(), "must be");
501
_thread = thread;
502
check_no_pending_exception();
503
}
504
505
ExceptionMark::ExceptionMark() {
506
_thread = JavaThread::current();
507
check_no_pending_exception();
508
}
509
510
inline void ExceptionMark::check_no_pending_exception() {
511
if (_thread->has_pending_exception()) {
512
oop exception = _thread->pending_exception();
513
_thread->clear_pending_exception(); // Needed to avoid infinite recursion
514
exception->print();
515
fatal("ExceptionMark constructor expects no pending exceptions");
516
}
517
}
518
519
520
ExceptionMark::~ExceptionMark() {
521
if (_thread->has_pending_exception()) {
522
Handle exception(_thread, _thread->pending_exception());
523
_thread->clear_pending_exception(); // Needed to avoid infinite recursion
524
if (is_init_completed()) {
525
exception->print();
526
fatal("ExceptionMark destructor expects no pending exceptions");
527
} else {
528
vm_exit_during_initialization(exception);
529
}
530
}
531
}
532
533
// ----------------------------------------------------------------------------------------
534
535
// caller frees value_string if necessary
536
void Exceptions::debug_check_abort(const char *value_string, const char* message) {
537
if (AbortVMOnException != NULL && value_string != NULL &&
538
strstr(value_string, AbortVMOnException)) {
539
if (AbortVMOnExceptionMessage == NULL || (message != NULL &&
540
strstr(message, AbortVMOnExceptionMessage))) {
541
fatal("Saw %s, aborting", value_string);
542
}
543
}
544
}
545
546
void Exceptions::debug_check_abort(Handle exception, const char* message) {
547
if (AbortVMOnException != NULL) {
548
debug_check_abort_helper(exception, message);
549
}
550
}
551
552
void Exceptions::debug_check_abort_helper(Handle exception, const char* message) {
553
ResourceMark rm;
554
if (message == NULL && exception->is_a(vmClasses::Throwable_klass())) {
555
oop msg = java_lang_Throwable::message(exception());
556
if (msg != NULL) {
557
message = java_lang_String::as_utf8_string(msg);
558
}
559
}
560
debug_check_abort(exception()->klass()->external_name(), message);
561
}
562
563
// for logging exceptions
564
void Exceptions::log_exception(Handle exception, const char* message) {
565
ResourceMark rm;
566
Symbol* detail_message = java_lang_Throwable::detail_message(exception());
567
if (detail_message != NULL) {
568
log_info(exceptions)("Exception <%s: %s>\n thrown in %s",
569
exception->print_value_string(),
570
detail_message->as_C_string(),
571
message);
572
} else {
573
log_info(exceptions)("Exception <%s>\n thrown in %s",
574
exception->print_value_string(),
575
message);
576
}
577
}
578
579