author | redestad |
Sun, 11 Dec 2016 12:20:45 +0100 | |
changeset 42469 | d1c0a9123f87 |
parent 41070 | 496463b4e206 |
child 46271 | 979ebd346ecf |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35477
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
2 |
* Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/systemDictionary.hpp" |
|
27 |
#include "classfile/vmSymbols.hpp" |
|
28 |
#include "compiler/compileBroker.hpp" |
|
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33602
diff
changeset
|
29 |
#include "logging/log.hpp" |
37248 | 30 |
#include "memory/resourceArea.hpp" |
7397 | 31 |
#include "oops/oop.inline.hpp" |
32 |
#include "runtime/init.hpp" |
|
33 |
#include "runtime/java.hpp" |
|
34 |
#include "runtime/javaCalls.hpp" |
|
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
13728
diff
changeset
|
35 |
#include "runtime/thread.inline.hpp" |
7397 | 36 |
#include "runtime/threadCritical.hpp" |
37 |
#include "utilities/events.hpp" |
|
38 |
#include "utilities/exceptions.hpp" |
|
1 | 39 |
|
40 |
// Implementation of ThreadShadow |
|
41 |
void check_ThreadShadow() { |
|
42 |
const ByteSize offset1 = byte_offset_of(ThreadShadow, _pending_exception); |
|
43 |
const ByteSize offset2 = Thread::pending_exception_offset(); |
|
44 |
if (offset1 != offset2) fatal("ThreadShadow::_pending_exception is not positioned correctly"); |
|
45 |
} |
|
46 |
||
47 |
||
48 |
void ThreadShadow::set_pending_exception(oop exception, const char* file, int line) { |
|
49 |
assert(exception != NULL && exception->is_oop(), "invalid exception oop"); |
|
50 |
_pending_exception = exception; |
|
51 |
_exception_file = file; |
|
52 |
_exception_line = line; |
|
53 |
} |
|
54 |
||
55 |
void ThreadShadow::clear_pending_exception() { |
|
37110
0c468eab5c66
8150085: Convert TraceClearedExceptions to Unified Loggin
rprotacio
parents:
35477
diff
changeset
|
56 |
if (_pending_exception != NULL && log_is_enabled(Debug, exceptions)) { |
0c468eab5c66
8150085: Convert TraceClearedExceptions to Unified Loggin
rprotacio
parents:
35477
diff
changeset
|
57 |
ResourceMark rm; |
37242 | 58 |
outputStream* logst = Log(exceptions)::debug_stream(); |
37110
0c468eab5c66
8150085: Convert TraceClearedExceptions to Unified Loggin
rprotacio
parents:
35477
diff
changeset
|
59 |
logst->print("Thread::clear_pending_exception: cleared exception:"); |
0c468eab5c66
8150085: Convert TraceClearedExceptions to Unified Loggin
rprotacio
parents:
35477
diff
changeset
|
60 |
_pending_exception->print_on(logst); |
1 | 61 |
} |
62 |
_pending_exception = NULL; |
|
63 |
_exception_file = NULL; |
|
64 |
_exception_line = 0; |
|
65 |
} |
|
66 |
// Implementation of Exceptions |
|
67 |
||
68 |
bool Exceptions::special_exception(Thread* thread, const char* file, int line, Handle h_exception) { |
|
69 |
// bootstrapping check |
|
70 |
if (!Universe::is_fully_initialized()) { |
|
71 |
vm_exit_during_initialization(h_exception); |
|
72 |
ShouldNotReachHere(); |
|
73 |
} |
|
74 |
||
6964
6e45ffa3bccf
6983240: guarantee((Solaris::min_stack_allowed >= (StackYellowPages+StackRedPages...) wrong
coleenp
parents:
6179
diff
changeset
|
75 |
#ifdef ASSERT |
6e45ffa3bccf
6983240: guarantee((Solaris::min_stack_allowed >= (StackYellowPages+StackRedPages...) wrong
coleenp
parents:
6179
diff
changeset
|
76 |
// Check for trying to throw stack overflow before initialization is complete |
6e45ffa3bccf
6983240: guarantee((Solaris::min_stack_allowed >= (StackYellowPages+StackRedPages...) wrong
coleenp
parents:
6179
diff
changeset
|
77 |
// to prevent infinite recursion trying to initialize stack overflow without |
6e45ffa3bccf
6983240: guarantee((Solaris::min_stack_allowed >= (StackYellowPages+StackRedPages...) wrong
coleenp
parents:
6179
diff
changeset
|
78 |
// adequate stack space. |
6e45ffa3bccf
6983240: guarantee((Solaris::min_stack_allowed >= (StackYellowPages+StackRedPages...) wrong
coleenp
parents:
6179
diff
changeset
|
79 |
// This can happen with stress testing a large value of StackShadowPages |
6e45ffa3bccf
6983240: guarantee((Solaris::min_stack_allowed >= (StackYellowPages+StackRedPages...) wrong
coleenp
parents:
6179
diff
changeset
|
80 |
if (h_exception()->klass() == SystemDictionary::StackOverflowError_klass()) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13396
diff
changeset
|
81 |
InstanceKlass* ik = InstanceKlass::cast(h_exception->klass()); |
6964
6e45ffa3bccf
6983240: guarantee((Solaris::min_stack_allowed >= (StackYellowPages+StackRedPages...) wrong
coleenp
parents:
6179
diff
changeset
|
82 |
assert(ik->is_initialized(), |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
37248
diff
changeset
|
83 |
"need to increase java_thread_min_stack_allowed calculation"); |
6964
6e45ffa3bccf
6983240: guarantee((Solaris::min_stack_allowed >= (StackYellowPages+StackRedPages...) wrong
coleenp
parents:
6179
diff
changeset
|
84 |
} |
6e45ffa3bccf
6983240: guarantee((Solaris::min_stack_allowed >= (StackYellowPages+StackRedPages...) wrong
coleenp
parents:
6179
diff
changeset
|
85 |
#endif // ASSERT |
6e45ffa3bccf
6983240: guarantee((Solaris::min_stack_allowed >= (StackYellowPages+StackRedPages...) wrong
coleenp
parents:
6179
diff
changeset
|
86 |
|
1 | 87 |
if (thread->is_VM_thread() |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31337
diff
changeset
|
88 |
|| !thread->can_call_java() |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
24424
diff
changeset
|
89 |
|| DumpSharedSpaces ) { |
1 | 90 |
// We do not care what kind of exception we get for the vm-thread or a thread which |
91 |
// is compiling. We just install a dummy exception object |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
24424
diff
changeset
|
92 |
// |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
24424
diff
changeset
|
93 |
// We also cannot throw a proper exception when dumping, because we cannot run |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
24424
diff
changeset
|
94 |
// Java bytecodes now. A dummy exception will suffice. |
1 | 95 |
thread->set_pending_exception(Universe::vm_exception(), file, line); |
96 |
return true; |
|
97 |
} |
|
98 |
||
99 |
return false; |
|
100 |
} |
|
101 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
102 |
bool Exceptions::special_exception(Thread* thread, const char* file, int line, Symbol* h_name, const char* message) { |
1 | 103 |
// bootstrapping check |
104 |
if (!Universe::is_fully_initialized()) { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
105 |
if (h_name == NULL) { |
1 | 106 |
// atleast an informative message. |
107 |
vm_exit_during_initialization("Exception", message); |
|
108 |
} else { |
|
109 |
vm_exit_during_initialization(h_name, message); |
|
110 |
} |
|
111 |
ShouldNotReachHere(); |
|
112 |
} |
|
113 |
||
114 |
if (thread->is_VM_thread() |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31337
diff
changeset
|
115 |
|| !thread->can_call_java() |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
24424
diff
changeset
|
116 |
|| DumpSharedSpaces ) { |
1 | 117 |
// We do not care what kind of exception we get for the vm-thread or a thread which |
118 |
// is compiling. We just install a dummy exception object |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
24424
diff
changeset
|
119 |
// |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
24424
diff
changeset
|
120 |
// We also cannot throw a proper exception when dumping, because we cannot run |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
24424
diff
changeset
|
121 |
// Java bytecodes now. A dummy exception will suffice. |
1 | 122 |
thread->set_pending_exception(Universe::vm_exception(), file, line); |
123 |
return true; |
|
124 |
} |
|
125 |
return false; |
|
126 |
} |
|
127 |
||
128 |
// This method should only be called from generated code, |
|
129 |
// therefore the exception oop should be in the oopmap. |
|
130 |
void Exceptions::_throw_oop(Thread* thread, const char* file, int line, oop exception) { |
|
131 |
assert(exception != NULL, "exception should not be NULL"); |
|
132 |
Handle h_exception = Handle(thread, exception); |
|
133 |
_throw(thread, file, line, h_exception); |
|
134 |
} |
|
135 |
||
4014
b59b8c387950
6889302: TraceExceptions output should include detail message
never
parents:
1
diff
changeset
|
136 |
void Exceptions::_throw(Thread* thread, const char* file, int line, Handle h_exception, const char* message) { |
19158 | 137 |
ResourceMark rm; |
1 | 138 |
assert(h_exception() != NULL, "exception should not be NULL"); |
139 |
||
140 |
// tracing (do this up front - so it works during boot strapping) |
|
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33602
diff
changeset
|
141 |
log_info(exceptions)("Exception <%s%s%s> (" INTPTR_FORMAT ") \n" |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33602
diff
changeset
|
142 |
"thrown [%s, line %d]\nfor thread " INTPTR_FORMAT, |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33602
diff
changeset
|
143 |
h_exception->print_value_string(), |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33602
diff
changeset
|
144 |
message ? ": " : "", message ? message : "", |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33602
diff
changeset
|
145 |
p2i(h_exception()), file, line, p2i(thread)); |
1 | 146 |
// for AbortVMOnException flag |
33208
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
147 |
Exceptions::debug_check_abort(h_exception, message); |
1 | 148 |
|
149 |
// Check for special boot-strapping/vm-thread handling |
|
19158 | 150 |
if (special_exception(thread, file, line, h_exception)) { |
151 |
return; |
|
152 |
} |
|
1 | 153 |
|
31335
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
154 |
if (h_exception->is_a(SystemDictionary::OutOfMemoryError_klass())) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
155 |
count_out_of_memory_exceptions(h_exception); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
156 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
157 |
|
4571 | 158 |
assert(h_exception->is_a(SystemDictionary::Throwable_klass()), "exception is not a subclass of java/lang/Throwable"); |
1 | 159 |
|
160 |
// set the pending exception |
|
161 |
thread->set_pending_exception(h_exception(), file, line); |
|
162 |
||
163 |
// vm log |
|
31336
897c602148d9
8076161: Runtime stub for throw_null_pointer_exception always constructs log messages
mockner
parents:
26135
diff
changeset
|
164 |
if (LogEvents){ |
897c602148d9
8076161: Runtime stub for throw_null_pointer_exception always constructs log messages
mockner
parents:
26135
diff
changeset
|
165 |
Events::log_exception(thread, "Exception <%s%s%s> (" INTPTR_FORMAT ") thrown at [%s, line %d]", |
897c602148d9
8076161: Runtime stub for throw_null_pointer_exception always constructs log messages
mockner
parents:
26135
diff
changeset
|
166 |
h_exception->print_value_string(), message ? ": " : "", message ? message : "", |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
167 |
p2i(h_exception()), file, line); |
31336
897c602148d9
8076161: Runtime stub for throw_null_pointer_exception always constructs log messages
mockner
parents:
26135
diff
changeset
|
168 |
} |
1 | 169 |
} |
170 |
||
171 |
||
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
172 |
void Exceptions::_throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
173 |
Handle h_loader, Handle h_protection_domain) { |
1 | 174 |
// Check for special boot-strapping/vm-thread handling |
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
175 |
if (special_exception(thread, file, line, name, message)) return; |
1 | 176 |
// Create and throw exception |
177 |
Handle h_cause(thread, NULL); |
|
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
178 |
Handle h_exception = new_exception(thread, name, message, h_cause, h_loader, h_protection_domain); |
4014
b59b8c387950
6889302: TraceExceptions output should include detail message
never
parents:
1
diff
changeset
|
179 |
_throw(thread, file, line, h_exception, message); |
1 | 180 |
} |
181 |
||
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
182 |
void Exceptions::_throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
183 |
Handle h_loader, Handle h_protection_domain) { |
1 | 184 |
// Check for special boot-strapping/vm-thread handling |
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
185 |
if (special_exception(thread, file, line, name, message)) return; |
1 | 186 |
// Create and throw exception and init cause |
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
187 |
Handle h_exception = new_exception(thread, name, message, h_cause, h_loader, h_protection_domain); |
4014
b59b8c387950
6889302: TraceExceptions output should include detail message
never
parents:
1
diff
changeset
|
188 |
_throw(thread, file, line, h_exception, message); |
1 | 189 |
} |
190 |
||
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
191 |
void Exceptions::_throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
192 |
Handle h_loader, Handle h_protection_domain) { |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
193 |
// Check for special boot-strapping/vm-thread handling |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
194 |
if (special_exception(thread, file, line, h_cause)) return; |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
195 |
// Create and throw exception |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
196 |
Handle h_exception = new_exception(thread, name, h_cause, h_loader, h_protection_domain); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
197 |
_throw(thread, file, line, h_exception, NULL); |
1 | 198 |
} |
199 |
||
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
200 |
void Exceptions::_throw_args(Thread* thread, const char* file, int line, Symbol* name, Symbol* signature, JavaCallArguments *args) { |
1 | 201 |
// Check for special boot-strapping/vm-thread handling |
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
202 |
if (special_exception(thread, file, line, name, NULL)) return; |
1 | 203 |
// Create and throw exception |
204 |
Handle h_loader(thread, NULL); |
|
205 |
Handle h_prot(thread, NULL); |
|
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
206 |
Handle exception = new_exception(thread, name, signature, args, h_loader, h_prot); |
1 | 207 |
_throw(thread, file, line, exception); |
208 |
} |
|
209 |
||
210 |
||
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
211 |
// Methods for default parameters. |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
212 |
// NOTE: These must be here (and not in the header file) because of include circularities. |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
213 |
void Exceptions::_throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause) { |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
214 |
_throw_msg_cause(thread, file, line, name, message, h_cause, Handle(thread, NULL), Handle(thread, NULL)); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
215 |
} |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
216 |
void Exceptions::_throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message) { |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
217 |
_throw_msg(thread, file, line, name, message, Handle(thread, NULL), Handle(thread, NULL)); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
218 |
} |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
219 |
void Exceptions::_throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause) { |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
220 |
_throw_cause(thread, file, line, name, h_cause, Handle(thread, NULL), Handle(thread, NULL)); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
221 |
} |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
222 |
|
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
223 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33230
diff
changeset
|
224 |
void Exceptions::throw_stack_overflow_exception(Thread* THREAD, const char* file, int line, const methodHandle& method) { |
1 | 225 |
Handle exception; |
226 |
if (!THREAD->has_pending_exception()) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13396
diff
changeset
|
227 |
Klass* k = SystemDictionary::StackOverflowError_klass(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13396
diff
changeset
|
228 |
oop e = InstanceKlass::cast(k)->allocate_instance(CHECK); |
1 | 229 |
exception = Handle(THREAD, e); // fill_in_stack trace does gc |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
37248
diff
changeset
|
230 |
assert(InstanceKlass::cast(k)->is_initialized(), "need to increase java_thread_min_stack_allowed calculation"); |
1 | 231 |
if (StackTraceInThrowable) { |
9321
c29711c6ae35
7009923: JSR 292: VM crash in JavaThread::last_frame
coleenp
parents:
8921
diff
changeset
|
232 |
java_lang_Throwable::fill_in_stack_trace(exception, method()); |
1 | 233 |
} |
31335
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
234 |
// Increment counter for hs_err file reporting |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
235 |
Atomic::inc(&Exceptions::_stack_overflow_errors); |
1 | 236 |
} else { |
237 |
// if prior exception, throw that one instead |
|
238 |
exception = Handle(THREAD, THREAD->pending_exception()); |
|
239 |
} |
|
9321
c29711c6ae35
7009923: JSR 292: VM crash in JavaThread::last_frame
coleenp
parents:
8921
diff
changeset
|
240 |
_throw(THREAD, file, line, exception); |
1 | 241 |
} |
242 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
243 |
void Exceptions::fthrow(Thread* thread, const char* file, int line, Symbol* h_name, const char* format, ...) { |
1 | 244 |
const int max_msg_size = 1024; |
245 |
va_list ap; |
|
246 |
va_start(ap, format); |
|
247 |
char msg[max_msg_size]; |
|
248 |
vsnprintf(msg, max_msg_size, format, ap); |
|
249 |
msg[max_msg_size-1] = '\0'; |
|
250 |
va_end(ap); |
|
251 |
_throw_msg(thread, file, line, h_name, msg); |
|
252 |
} |
|
253 |
||
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22234
diff
changeset
|
254 |
|
1 | 255 |
// Creates an exception oop, calls the <init> method with the given signature. |
256 |
// and returns a Handle |
|
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
257 |
Handle Exceptions::new_exception(Thread *thread, Symbol* name, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
258 |
Symbol* signature, JavaCallArguments *args, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
259 |
Handle h_loader, Handle h_protection_domain) { |
1 | 260 |
assert(Universe::is_fully_initialized(), |
261 |
"cannot be called during initialization"); |
|
262 |
assert(thread->is_Java_thread(), "can only be called by a Java thread"); |
|
263 |
assert(!thread->has_pending_exception(), "already has exception"); |
|
264 |
||
265 |
Handle h_exception; |
|
266 |
||
267 |
// Resolve exception klass |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13396
diff
changeset
|
268 |
Klass* ik = SystemDictionary::resolve_or_fail(name, h_loader, h_protection_domain, true, thread); |
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
269 |
instanceKlassHandle klass(thread, ik); |
1 | 270 |
|
271 |
if (!thread->has_pending_exception()) { |
|
272 |
assert(klass.not_null(), "klass must exist"); |
|
273 |
// We are about to create an instance - so make sure that klass is initialized |
|
274 |
klass->initialize(thread); |
|
275 |
if (!thread->has_pending_exception()) { |
|
276 |
// Allocate new exception |
|
277 |
h_exception = klass->allocate_instance_handle(thread); |
|
278 |
if (!thread->has_pending_exception()) { |
|
279 |
JavaValue result(T_VOID); |
|
280 |
args->set_receiver(h_exception); |
|
281 |
// Call constructor |
|
282 |
JavaCalls::call_special(&result, klass, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
283 |
vmSymbols::object_initializer_name(), |
1 | 284 |
signature, |
285 |
args, |
|
286 |
thread); |
|
287 |
} |
|
288 |
} |
|
289 |
} |
|
290 |
||
291 |
// Check if another exception was thrown in the process, if so rethrow that one |
|
292 |
if (thread->has_pending_exception()) { |
|
293 |
h_exception = Handle(thread, thread->pending_exception()); |
|
294 |
thread->clear_pending_exception(); |
|
295 |
} |
|
296 |
return h_exception; |
|
297 |
} |
|
298 |
||
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
299 |
// Creates an exception oop, calls the <init> method with the given signature. |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
300 |
// and returns a Handle |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
301 |
// Initializes the cause if cause non-null |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
302 |
Handle Exceptions::new_exception(Thread *thread, Symbol* name, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
303 |
Symbol* signature, JavaCallArguments *args, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
304 |
Handle h_cause, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
305 |
Handle h_loader, Handle h_protection_domain) { |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
306 |
Handle h_exception = new_exception(thread, name, signature, args, h_loader, h_protection_domain); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
307 |
|
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
308 |
// Future: object initializer should take a cause argument |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
309 |
if (h_cause.not_null()) { |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
310 |
assert(h_cause->is_a(SystemDictionary::Throwable_klass()), |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
311 |
"exception cause is not a subclass of java/lang/Throwable"); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
312 |
JavaValue result1(T_OBJECT); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
313 |
JavaCallArguments args1; |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
314 |
args1.set_receiver(h_exception); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
315 |
args1.push_oop(h_cause); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
316 |
JavaCalls::call_virtual(&result1, h_exception->klass(), |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
317 |
vmSymbols::initCause_name(), |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
318 |
vmSymbols::throwable_throwable_signature(), |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
319 |
&args1, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
320 |
thread); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
321 |
} |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
322 |
|
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
323 |
// Check if another exception was thrown in the process, if so rethrow that one |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
324 |
if (thread->has_pending_exception()) { |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
325 |
h_exception = Handle(thread, thread->pending_exception()); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
326 |
thread->clear_pending_exception(); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
327 |
} |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
328 |
return h_exception; |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
329 |
} |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
330 |
|
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
331 |
// Convenience method. Calls either the <init>() or <init>(Throwable) method when |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
332 |
// creating a new exception |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
333 |
Handle Exceptions::new_exception(Thread* thread, Symbol* name, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
334 |
Handle h_cause, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
335 |
Handle h_loader, Handle h_protection_domain, |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
336 |
ExceptionMsgToUtf8Mode to_utf8_safe) { |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
337 |
JavaCallArguments args; |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
338 |
Symbol* signature = NULL; |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
339 |
if (h_cause.is_null()) { |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
340 |
signature = vmSymbols::void_method_signature(); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
341 |
} else { |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
342 |
signature = vmSymbols::throwable_void_signature(); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
343 |
args.push_oop(h_cause); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
344 |
} |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
345 |
return new_exception(thread, name, signature, &args, h_loader, h_protection_domain); |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
346 |
} |
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
347 |
|
1 | 348 |
// Convenience method. Calls either the <init>() or <init>(String) method when |
349 |
// creating a new exception |
|
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
350 |
Handle Exceptions::new_exception(Thread* thread, Symbol* name, |
1 | 351 |
const char* message, Handle h_cause, |
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
352 |
Handle h_loader, Handle h_protection_domain, |
1 | 353 |
ExceptionMsgToUtf8Mode to_utf8_safe) { |
354 |
JavaCallArguments args; |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
355 |
Symbol* signature = NULL; |
1 | 356 |
if (message == NULL) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
357 |
signature = vmSymbols::void_method_signature(); |
1 | 358 |
} else { |
359 |
// We want to allocate storage, but we can't do that if there's |
|
360 |
// a pending exception, so we preserve any pending exception |
|
361 |
// around the allocation. |
|
362 |
// If we get an exception from the allocation, prefer that to |
|
363 |
// the exception we are trying to build, or the pending exception. |
|
364 |
// This is sort of like what PRESERVE_EXCEPTION_MARK does, except |
|
365 |
// for the preferencing and the early returns. |
|
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
366 |
Handle incoming_exception(thread, NULL); |
1 | 367 |
if (thread->has_pending_exception()) { |
368 |
incoming_exception = Handle(thread, thread->pending_exception()); |
|
369 |
thread->clear_pending_exception(); |
|
370 |
} |
|
371 |
Handle msg; |
|
372 |
if (to_utf8_safe == safe_to_utf8) { |
|
373 |
// Make a java UTF8 string. |
|
374 |
msg = java_lang_String::create_from_str(message, thread); |
|
375 |
} else { |
|
376 |
// Make a java string keeping the encoding scheme of the original string. |
|
377 |
msg = java_lang_String::create_from_platform_dependent_str(message, thread); |
|
378 |
} |
|
379 |
if (thread->has_pending_exception()) { |
|
380 |
Handle exception(thread, thread->pending_exception()); |
|
381 |
thread->clear_pending_exception(); |
|
382 |
return exception; |
|
383 |
} |
|
384 |
if (incoming_exception.not_null()) { |
|
385 |
return incoming_exception; |
|
386 |
} |
|
387 |
args.push_oop(msg); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
388 |
signature = vmSymbols::string_void_signature(); |
1 | 389 |
} |
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
390 |
return new_exception(thread, name, signature, &args, h_cause, h_loader, h_protection_domain); |
1 | 391 |
} |
392 |
||
393 |
// Another convenience method that creates handles for null class loaders and |
|
394 |
// protection domains and null causes. |
|
395 |
// If the last parameter 'to_utf8_mode' is safe_to_utf8, |
|
396 |
// it means we can safely ignore the encoding scheme of the message string and |
|
397 |
// convert it directly to a java UTF8 string. Otherwise, we need to take the |
|
398 |
// encoding scheme of the string into account. One thing we should do at some |
|
399 |
// point is to push this flag down to class java_lang_String since other |
|
400 |
// classes may need similar functionalities. |
|
13396
1b2b5f740ee0
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents:
11636
diff
changeset
|
401 |
Handle Exceptions::new_exception(Thread* thread, Symbol* name, |
1 | 402 |
const char* message, |
403 |
ExceptionMsgToUtf8Mode to_utf8_safe) { |
|
404 |
||
405 |
Handle h_loader(thread, NULL); |
|
406 |
Handle h_prot(thread, NULL); |
|
407 |
Handle h_cause(thread, NULL); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
408 |
return Exceptions::new_exception(thread, name, message, h_cause, h_loader, |
1 | 409 |
h_prot, to_utf8_safe); |
410 |
} |
|
411 |
||
31335
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
412 |
|
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
413 |
// Exception counting for hs_err file |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
414 |
volatile int Exceptions::_stack_overflow_errors = 0; |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
415 |
volatile int Exceptions::_out_of_memory_error_java_heap_errors = 0; |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
416 |
volatile int Exceptions::_out_of_memory_error_metaspace_errors = 0; |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
417 |
volatile int Exceptions::_out_of_memory_error_class_metaspace_errors = 0; |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
418 |
|
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
419 |
void Exceptions::count_out_of_memory_exceptions(Handle exception) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
420 |
if (exception() == Universe::out_of_memory_error_metaspace()) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
421 |
Atomic::inc(&_out_of_memory_error_metaspace_errors); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
422 |
} else if (exception() == Universe::out_of_memory_error_class_metaspace()) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
423 |
Atomic::inc(&_out_of_memory_error_class_metaspace_errors); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
424 |
} else { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
425 |
// everything else reported as java heap OOM |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
426 |
Atomic::inc(&_out_of_memory_error_java_heap_errors); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
427 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
428 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
429 |
|
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
430 |
void print_oom_count(outputStream* st, const char *err, int count) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
431 |
if (count > 0) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
432 |
st->print_cr("OutOfMemoryError %s=%d", err, count); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
433 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
434 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
435 |
|
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
436 |
bool Exceptions::has_exception_counts() { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
437 |
return (_stack_overflow_errors + _out_of_memory_error_java_heap_errors + |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
438 |
_out_of_memory_error_metaspace_errors + _out_of_memory_error_class_metaspace_errors) > 0; |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
439 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
440 |
|
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
441 |
void Exceptions::print_exception_counts_on_error(outputStream* st) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
442 |
print_oom_count(st, "java_heap_errors", _out_of_memory_error_java_heap_errors); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
443 |
print_oom_count(st, "metaspace_errors", _out_of_memory_error_metaspace_errors); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
444 |
print_oom_count(st, "class_metaspace_errors", _out_of_memory_error_class_metaspace_errors); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
445 |
if (_stack_overflow_errors > 0) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
446 |
st->print_cr("StackOverflowErrors=%d", _stack_overflow_errors); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
447 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
448 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
26135
diff
changeset
|
449 |
|
1 | 450 |
// Implementation of ExceptionMark |
451 |
||
452 |
ExceptionMark::ExceptionMark(Thread*& thread) { |
|
453 |
thread = Thread::current(); |
|
454 |
_thread = thread; |
|
455 |
if (_thread->has_pending_exception()) { |
|
456 |
oop exception = _thread->pending_exception(); |
|
457 |
_thread->clear_pending_exception(); // Needed to avoid infinite recursion |
|
458 |
exception->print(); |
|
459 |
fatal("ExceptionMark constructor expects no pending exceptions"); |
|
460 |
} |
|
461 |
} |
|
462 |
||
463 |
||
464 |
ExceptionMark::~ExceptionMark() { |
|
465 |
if (_thread->has_pending_exception()) { |
|
466 |
Handle exception(_thread, _thread->pending_exception()); |
|
467 |
_thread->clear_pending_exception(); // Needed to avoid infinite recursion |
|
468 |
if (is_init_completed()) { |
|
469 |
exception->print(); |
|
470 |
fatal("ExceptionMark destructor expects no pending exceptions"); |
|
471 |
} else { |
|
472 |
vm_exit_during_initialization(exception); |
|
473 |
} |
|
474 |
} |
|
475 |
} |
|
476 |
||
477 |
// ---------------------------------------------------------------------------------------- |
|
478 |
||
479 |
// caller frees value_string if necessary |
|
6179
4846648c4b7b
6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents:
5547
diff
changeset
|
480 |
void Exceptions::debug_check_abort(const char *value_string, const char* message) { |
1 | 481 |
if (AbortVMOnException != NULL && value_string != NULL && |
482 |
strstr(value_string, AbortVMOnException)) { |
|
33208
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
483 |
if (AbortVMOnExceptionMessage == NULL || (message != NULL && |
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
484 |
strstr(message, AbortVMOnExceptionMessage))) { |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31337
diff
changeset
|
485 |
fatal("Saw %s, aborting", value_string); |
6179
4846648c4b7b
6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents:
5547
diff
changeset
|
486 |
} |
1 | 487 |
} |
488 |
} |
|
489 |
||
6179
4846648c4b7b
6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents:
5547
diff
changeset
|
490 |
void Exceptions::debug_check_abort(Handle exception, const char* message) { |
1 | 491 |
if (AbortVMOnException != NULL) { |
33208
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
492 |
debug_check_abort_helper(exception, message); |
1 | 493 |
} |
494 |
} |
|
33208
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
495 |
|
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
496 |
void Exceptions::debug_check_abort_helper(Handle exception, const char* message) { |
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
497 |
ResourceMark rm; |
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
498 |
if (message == NULL && exception->is_a(SystemDictionary::Throwable_klass())) { |
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
499 |
oop msg = java_lang_Throwable::message(exception); |
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
500 |
if (msg != NULL) { |
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
501 |
message = java_lang_String::as_utf8_string(msg); |
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
502 |
} |
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
503 |
} |
33602 | 504 |
debug_check_abort(exception()->klass()->external_name(), message); |
33208
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33148
diff
changeset
|
505 |
} |
35477
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
506 |
|
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
507 |
// for logging exceptions |
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
508 |
void Exceptions::log_exception(Handle exception, stringStream tempst) { |
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
509 |
ResourceMark rm; |
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
510 |
Symbol* message = java_lang_Throwable::detail_message(exception()); |
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
511 |
if (message != NULL) { |
37190
09d719d466a6
8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents:
37110
diff
changeset
|
512 |
log_info(exceptions)("Exception <%s: %s>\n thrown in %s", |
35477
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
513 |
exception->print_value_string(), |
37190
09d719d466a6
8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents:
37110
diff
changeset
|
514 |
message->as_C_string(), |
09d719d466a6
8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents:
37110
diff
changeset
|
515 |
tempst.as_string()); |
35477
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
516 |
} else { |
37190
09d719d466a6
8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents:
37110
diff
changeset
|
517 |
log_info(exceptions)("Exception <%s>\n thrown in %s", |
35477
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
518 |
exception->print_value_string(), |
37190
09d719d466a6
8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents:
37110
diff
changeset
|
519 |
tempst.as_string()); |
35477
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
520 |
} |
7a00b08d27bc
8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents:
35216
diff
changeset
|
521 |
} |