annotate src/share/vm/utilities/exceptions.hpp @ 14518:d8041d695d19

Merged with jdk9/dev/hotspot changeset 3812c088b945
author twisti
date Tue, 11 Mar 2014 18:45:59 -0700
parents 5a9afbf72714 febc6428bc79
children 4ca6dc0799b6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
14297
febc6428bc79 8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents: 12032
diff changeset
2 * Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1011
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1011
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1011
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1684
diff changeset
25 #ifndef SHARE_VM_UTILITIES_EXCEPTIONS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1684
diff changeset
26 #define SHARE_VM_UTILITIES_EXCEPTIONS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1684
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1684
diff changeset
28 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1684
diff changeset
29 #include "oops/oopsHierarchy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1684
diff changeset
30 #include "utilities/sizes.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1684
diff changeset
31
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // This file provides the basic support for exception handling in the VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // Note: We do not use C++ exceptions to avoid compiler dependencies and
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // unpredictable performance.
a61af66fc99e Initial load
duke
parents:
diff changeset
35 //
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Scheme: Exceptions are stored with the thread. There is never more
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // than one pending exception per thread. All functions that can throw
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // an exception carry a THREAD argument (usually the last argument and
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // declared with the TRAPS macro). Throwing an exception means setting
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // a pending exception in the thread. Upon return from a function that
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // can throw an exception, we must check if an exception is pending.
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // The CHECK macros do this in a convenient way. Carrying around the
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // thread provides also convenient access to it (e.g. for Handle
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // creation, w/o the need for recomputation).
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // Forward declarations to be independent of the include structure.
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // This allows us to have exceptions.hpp included in top.hpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 class Thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 class Handle;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
53 class Symbol;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54 class JavaCallArguments;
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // The ThreadShadow class is a helper class to access the _pending_exception
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // field of the Thread class w/o having access to the Thread's interface (for
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // include hierachy reasons).
a61af66fc99e Initial load
duke
parents:
diff changeset
59
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4825
diff changeset
60 class ThreadShadow: public CHeapObj<mtThread> {
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3272
diff changeset
61 friend class VMStructs;
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3272
diff changeset
62
0
a61af66fc99e Initial load
duke
parents:
diff changeset
63 protected:
13220
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
64 #ifdef GRAAL
8337
37977d1dcedc Transmit deoptimization reason in thread local.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 8328
diff changeset
65 int _pending_deoptimization;
13641
5a9afbf72714 Add a speculation oop for uncommon trap deoptimization. Save it in the SpeculationLog during deoptimization.
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13220
diff changeset
66 oop _pending_failed_speculation;
8328
6b6cbd8b8914 Support deoptimizing before the entry to a synchronized method.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7582
diff changeset
67 bool _pending_monitorenter;
13220
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
68 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
69 oop _pending_exception; // Thread has gc actions.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 const char* _exception_file; // file information for exception (debugging only)
a61af66fc99e Initial load
duke
parents:
diff changeset
71 int _exception_line; // line information for exception (debugging only)
a61af66fc99e Initial load
duke
parents:
diff changeset
72 friend void check_ThreadShadow(); // checks _pending_exception offset
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // The following virtual exists only to force creation of a vtable.
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // We need ThreadShadow to have a vtable, even in product builds,
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // so that its layout will start at an offset of zero relative to Thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // Some C++ compilers are so "clever" that they put the ThreadShadow
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // base class at offset 4 in Thread (after Thread's vtable), if they
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // notice that Thread has a vtable but ThreadShadow does not.
a61af66fc99e Initial load
duke
parents:
diff changeset
80 virtual void unused_initial_virtual() { }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
83 oop pending_exception() const { return _pending_exception; }
a61af66fc99e Initial load
duke
parents:
diff changeset
84 bool has_pending_exception() const { return _pending_exception != NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 const char* exception_file() const { return _exception_file; }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 int exception_line() const { return _exception_line; }
13220
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
87 #ifdef GRAAL
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
88 int pending_deoptimization() const { return _pending_deoptimization; }
13641
5a9afbf72714 Add a speculation oop for uncommon trap deoptimization. Save it in the SpeculationLog during deoptimization.
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13220
diff changeset
89 oop pending_failed_speculation() const { return _pending_failed_speculation; }
8328
6b6cbd8b8914 Support deoptimizing before the entry to a synchronized method.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7582
diff changeset
90 bool has_pending_monitorenter() const { return _pending_monitorenter; }
13220
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
91 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
94 static ByteSize pending_exception_offset() { return byte_offset_of(ThreadShadow, _pending_exception); }
13220
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
95 #ifdef GRAAL
8337
37977d1dcedc Transmit deoptimization reason in thread local.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 8328
diff changeset
96 static ByteSize pending_deoptimization_offset() { return byte_offset_of(ThreadShadow, _pending_deoptimization); }
8328
6b6cbd8b8914 Support deoptimizing before the entry to a synchronized method.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7582
diff changeset
97 static ByteSize pending_monitorenter_offset() { return byte_offset_of(ThreadShadow, _pending_monitorenter); }
13641
5a9afbf72714 Add a speculation oop for uncommon trap deoptimization. Save it in the SpeculationLog during deoptimization.
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13220
diff changeset
98 static ByteSize pending_failed_speculation_offset() { return byte_offset_of(ThreadShadow, _pending_failed_speculation); }
8328
6b6cbd8b8914 Support deoptimizing before the entry to a synchronized method.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7582
diff changeset
99
8337
37977d1dcedc Transmit deoptimization reason in thread local.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 8328
diff changeset
100 void set_pending_monitorenter(bool b) { _pending_monitorenter = b; }
37977d1dcedc Transmit deoptimization reason in thread local.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 8328
diff changeset
101 void set_pending_deoptimization(int reason) { _pending_deoptimization = reason; }
13641
5a9afbf72714 Add a speculation oop for uncommon trap deoptimization. Save it in the SpeculationLog during deoptimization.
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13220
diff changeset
102 void set_pending_failed_speculation(oop failed_speculation) { _pending_failed_speculation = failed_speculation; }
13220
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
103 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // use THROW whenever possible!
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void set_pending_exception(oop exception, const char* file, int line);
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // use CLEAR_PENDING_EXCEPTION whenever possible!
a61af66fc99e Initial load
duke
parents:
diff changeset
109 void clear_pending_exception();
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 ThreadShadow() : _pending_exception(NULL),
13220
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
112 _exception_file(NULL), _exception_line(0)
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
113 #ifdef GRAAL
13641
5a9afbf72714 Add a speculation oop for uncommon trap deoptimization. Save it in the SpeculationLog during deoptimization.
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13220
diff changeset
114 , _pending_monitorenter(false), _pending_deoptimization(-1), _pending_failed_speculation(NULL)
13220
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
115 #endif
2b43fcc68add Put _pending_deoptimization and _pending_monitorenter under ifdef GRAAL
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
116 {}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
117 };
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // Exceptions is a helper class that encapsulates all operations
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // that require access to the thread interface and which are
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // relatively rare. The Exceptions operations should only be
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // used directly if the macros below are insufficient.
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 class Exceptions {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 static bool special_exception(Thread *thread, const char* file, int line, Handle exception);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
127 static bool special_exception(Thread* thread, const char* file, int line, Symbol* name, const char* message);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
128 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // this enum is defined to indicate whether it is safe to
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // ignore the encoding scheme of the original message string.
a61af66fc99e Initial load
duke
parents:
diff changeset
131 typedef enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 safe_to_utf8 = 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
133 unsafe_to_utf8 = 1
a61af66fc99e Initial load
duke
parents:
diff changeset
134 } ExceptionMsgToUtf8Mode;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // Throw exceptions: w/o message, w/ message & with formatted message.
a61af66fc99e Initial load
duke
parents:
diff changeset
136 static void _throw_oop(Thread* thread, const char* file, int line, oop exception);
1011
fcb148c6b605 6889302: TraceExceptions output should include detail message
never
parents: 844
diff changeset
137 static void _throw(Thread* thread, const char* file, int line, Handle exception, const char* msg = NULL);
6271
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
138
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
139 static void _throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message);
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
140 static void _throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
141 Handle loader, Handle protection_domain);
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
142
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
143 static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause);
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
144 static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
145 Handle h_loader, Handle h_protection_domain);
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
146
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
147 static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause);
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
148 static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
149 Handle h_loader, Handle h_protection_domain);
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
150
0
a61af66fc99e Initial load
duke
parents:
diff changeset
151 static void _throw_args(Thread* thread, const char* file, int line,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
152 Symbol* name, Symbol* signature,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
153 JavaCallArguments* args);
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // There is no THROW... macro for this method. Caller should remember
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // to do a return after calling it.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
157 static void fthrow(Thread* thread, const char* file, int line, Symbol* name,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
158 const char* format, ...);
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // Create and initialize a new exception
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
161 static Handle new_exception(Thread* thread, Symbol* name,
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
162 Symbol* signature, JavaCallArguments* args,
6271
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
163 Handle loader, Handle protection_domain);
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
164
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
165 static Handle new_exception(Thread* thread, Symbol* name,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
166 Symbol* signature, JavaCallArguments* args,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
167 Handle cause,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
168 Handle loader, Handle protection_domain);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
169
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
170 static Handle new_exception(Thread* thread, Symbol* name,
6271
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
171 Handle cause,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
172 Handle loader, Handle protection_domain,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
173 ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
a61af66fc99e Initial load
duke
parents:
diff changeset
174
6271
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
175 static Handle new_exception(Thread* thread, Symbol* name,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
176 const char* message, Handle cause,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
177 Handle loader, Handle protection_domain,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
178 ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
179
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
180 static Handle new_exception(Thread* thread, Symbol* name,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
181 const char* message,
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
182 ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183
3272
01147d8aac1d 7009923: JSR 292: VM crash in JavaThread::last_frame
coleenp
parents: 2426
diff changeset
184 static void throw_stack_overflow_exception(Thread* thread, const char* file, int line, methodHandle method);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // for AbortVMOnException flag
1684
66c5dadb4d61 6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents: 1552
diff changeset
187 NOT_PRODUCT(static void debug_check_abort(Handle exception, const char* message = NULL);)
66c5dadb4d61 6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents: 1552
diff changeset
188 NOT_PRODUCT(static void debug_check_abort(const char *value_string, const char* message = NULL);)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
189 };
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // The THREAD & TRAPS macros facilitate the declaration of functions that throw exceptions.
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // Convention: Use the TRAPS macro as the last argument of such a function; e.g.:
a61af66fc99e Initial load
duke
parents:
diff changeset
194 //
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // int this_function_may_trap(int x, float y, TRAPS)
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 #define THREAD __the_thread__
a61af66fc99e Initial load
duke
parents:
diff changeset
198 #define TRAPS Thread* THREAD
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // The CHECK... macros should be used to pass along a THREAD reference and to check for pending
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // exceptions. In special situations it is necessary to handle pending exceptions explicitly,
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // in these cases the PENDING_EXCEPTION helper macros should be used.
a61af66fc99e Initial load
duke
parents:
diff changeset
204 //
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Macro naming conventions: Macros that end with _ require a result value to be returned. They
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // are for functions with non-void result type. The result value is usually ignored because of
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // the exception and is only needed for syntactic correctness. The _0 ending is a shortcut for
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // _(0) since this is a frequent case. Example:
a61af66fc99e Initial load
duke
parents:
diff changeset
209 //
a61af66fc99e Initial load
duke
parents:
diff changeset
210 // int result = this_function_may_trap(x_arg, y_arg, CHECK_0);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 //
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // CAUTION: make sure that the function call using a CHECK macro is not the only statement of a
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // conditional branch w/o enclosing {} braces, since the CHECK macros expand into several state-
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // ments!
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 #define PENDING_EXCEPTION (((ThreadShadow*)THREAD)->pending_exception())
a61af66fc99e Initial load
duke
parents:
diff changeset
217 #define HAS_PENDING_EXCEPTION (((ThreadShadow*)THREAD)->has_pending_exception())
a61af66fc99e Initial load
duke
parents:
diff changeset
218 #define CLEAR_PENDING_EXCEPTION (((ThreadShadow*)THREAD)->clear_pending_exception())
a61af66fc99e Initial load
duke
parents:
diff changeset
219
10973
ef57c43512d6 8014431: cleanup warnings indicated by the -Wunused-value compiler option on linux
ccheung
parents: 7582
diff changeset
220 #define CHECK THREAD); if (HAS_PENDING_EXCEPTION) return ; (void)(0
ef57c43512d6 8014431: cleanup warnings indicated by the -Wunused-value compiler option on linux
ccheung
parents: 7582
diff changeset
221 #define CHECK_(result) THREAD); if (HAS_PENDING_EXCEPTION) return result; (void)(0
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222 #define CHECK_0 CHECK_(0)
a61af66fc99e Initial load
duke
parents:
diff changeset
223 #define CHECK_NH CHECK_(Handle())
a61af66fc99e Initial load
duke
parents:
diff changeset
224 #define CHECK_NULL CHECK_(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
225 #define CHECK_false CHECK_(false)
14297
febc6428bc79 8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents: 12032
diff changeset
226 #define CHECK_JNI_ERR CHECK_(JNI_ERR)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227
10973
ef57c43512d6 8014431: cleanup warnings indicated by the -Wunused-value compiler option on linux
ccheung
parents: 7582
diff changeset
228 #define CHECK_AND_CLEAR THREAD); if (HAS_PENDING_EXCEPTION) { CLEAR_PENDING_EXCEPTION; return; } (void)(0
ef57c43512d6 8014431: cleanup warnings indicated by the -Wunused-value compiler option on linux
ccheung
parents: 7582
diff changeset
229 #define CHECK_AND_CLEAR_(result) THREAD); if (HAS_PENDING_EXCEPTION) { CLEAR_PENDING_EXCEPTION; return result; } (void)(0
4825
20334ed5ed3c 7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents: 3939
diff changeset
230 #define CHECK_AND_CLEAR_0 CHECK_AND_CLEAR_(0)
20334ed5ed3c 7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents: 3939
diff changeset
231 #define CHECK_AND_CLEAR_NH CHECK_AND_CLEAR_(Handle())
20334ed5ed3c 7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents: 3939
diff changeset
232 #define CHECK_AND_CLEAR_NULL CHECK_AND_CLEAR_(NULL)
20334ed5ed3c 7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents: 3939
diff changeset
233 #define CHECK_AND_CLEAR_false CHECK_AND_CLEAR_(false)
20334ed5ed3c 7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents: 3939
diff changeset
234
0
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // The THROW... macros should be used to throw an exception. They require a THREAD variable to be
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // visible within the scope containing the THROW. Usually this is achieved by declaring the function
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // with a TRAPS argument.
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 #define THREAD_AND_LOCATION THREAD, __FILE__, __LINE__
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 #define THROW_OOP(e) \
a61af66fc99e Initial load
duke
parents:
diff changeset
242 { Exceptions::_throw_oop(THREAD_AND_LOCATION, e); return; }
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 #define THROW_HANDLE(e) \
a61af66fc99e Initial load
duke
parents:
diff changeset
245 { Exceptions::_throw(THREAD_AND_LOCATION, e); return; }
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 #define THROW(name) \
a61af66fc99e Initial load
duke
parents:
diff changeset
248 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, NULL); return; }
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 #define THROW_MSG(name, message) \
a61af66fc99e Initial load
duke
parents:
diff changeset
251 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message); return; }
a61af66fc99e Initial load
duke
parents:
diff changeset
252
6271
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
253 #define THROW_CAUSE(name, cause) \
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
254 { Exceptions::_throw_cause(THREAD_AND_LOCATION, name, cause); return; }
93c71eb28866 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 6266
diff changeset
255
0
a61af66fc99e Initial load
duke
parents:
diff changeset
256 #define THROW_MSG_LOADER(name, message, loader, protection_domain) \
a61af66fc99e Initial load
duke
parents:
diff changeset
257 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return; }
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 #define THROW_ARG(name, signature, args) \
a61af66fc99e Initial load
duke
parents:
diff changeset
260 { Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args); return; }
a61af66fc99e Initial load
duke
parents:
diff changeset
261
a61af66fc99e Initial load
duke
parents:
diff changeset
262 #define THROW_OOP_(e, result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
263 { Exceptions::_throw_oop(THREAD_AND_LOCATION, e); return result; }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 #define THROW_HANDLE_(e, result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
266 { Exceptions::_throw(THREAD_AND_LOCATION, e); return result; }
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 #define THROW_(name, result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
269 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, NULL); return result; }
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 #define THROW_MSG_(name, message, result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
272 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message); return result; }
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 #define THROW_MSG_LOADER_(name, message, loader, protection_domain, result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
275 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return result; }
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 #define THROW_ARG_(name, signature, args, result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
278 { Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args); return result; }
a61af66fc99e Initial load
duke
parents:
diff changeset
279
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 6197
diff changeset
280 #define THROW_MSG_CAUSE(name, message, cause) \
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 6197
diff changeset
281 { Exceptions::_throw_msg_cause(THREAD_AND_LOCATION, name, message, cause); return; }
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 6197
diff changeset
282
0
a61af66fc99e Initial load
duke
parents:
diff changeset
283 #define THROW_MSG_CAUSE_(name, message, cause, result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
284 { Exceptions::_throw_msg_cause(THREAD_AND_LOCATION, name, message, cause); return result; }
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 #define THROW_OOP_0(e) THROW_OOP_(e, 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
288 #define THROW_HANDLE_0(e) THROW_HANDLE_(e, 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
289 #define THROW_0(name) THROW_(name, 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
290 #define THROW_MSG_0(name, message) THROW_MSG_(name, message, 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
291 #define THROW_WRAPPED_0(name, oop_to_wrap) THROW_WRAPPED_(name, oop_to_wrap, 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
292 #define THROW_ARG_0(name, signature, arg) THROW_ARG_(name, signature, arg, 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
293 #define THROW_MSG_CAUSE_0(name, message, cause) THROW_MSG_CAUSE_(name, message, cause, 0)
7582
aefb345d3f5e 7199207: NPG: Crash in PlaceholderTable::verify after StackOverflow
acorn
parents: 6729
diff changeset
294 #define THROW_MSG_CAUSE_NULL(name, message, cause) THROW_MSG_CAUSE_(name, message, cause, NULL)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
295
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
296 #define THROW_NULL(name) THROW_(name, NULL)
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
297 #define THROW_MSG_NULL(name, message) THROW_MSG_(name, message, NULL)
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
298
0
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // The CATCH macro checks that no exception has been thrown by a function; it is used at
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // call sites about which is statically known that the callee cannot throw an exception
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // even though it is declared with TRAPS.
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 #define CATCH \
a61af66fc99e Initial load
duke
parents:
diff changeset
304 THREAD); if (HAS_PENDING_EXCEPTION) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
305 oop ex = PENDING_EXCEPTION; \
a61af66fc99e Initial load
duke
parents:
diff changeset
306 CLEAR_PENDING_EXCEPTION; \
a61af66fc99e Initial load
duke
parents:
diff changeset
307 ex->print(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
308 ShouldNotReachHere(); \
10973
ef57c43512d6 8014431: cleanup warnings indicated by the -Wunused-value compiler option on linux
ccheung
parents: 7582
diff changeset
309 } (void)(0
0
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // ExceptionMark is a stack-allocated helper class for local exception handling.
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // It is used with the EXCEPTION_MARK macro.
a61af66fc99e Initial load
duke
parents:
diff changeset
313
a61af66fc99e Initial load
duke
parents:
diff changeset
314 class ExceptionMark {
a61af66fc99e Initial load
duke
parents:
diff changeset
315 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
316 Thread* _thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
319 ExceptionMark(Thread*& thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
320 ~ExceptionMark();
a61af66fc99e Initial load
duke
parents:
diff changeset
321 };
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324
a61af66fc99e Initial load
duke
parents:
diff changeset
325 // Use an EXCEPTION_MARK for 'local' exceptions. EXCEPTION_MARK makes sure that no
a61af66fc99e Initial load
duke
parents:
diff changeset
326 // pending exception exists upon entering its scope and tests that no pending exception
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // exists when leaving the scope.
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 // See also preserveException.hpp for PRESERVE_EXCEPTION_MARK macro,
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // which preserves pre-existing exceptions and does not allow new
a61af66fc99e Initial load
duke
parents:
diff changeset
331 // exceptions.
a61af66fc99e Initial load
duke
parents:
diff changeset
332
12032
5d9995d16b26 8022899: SunStudio compiler can not handle EXCEPTION_MARK and inlining
ehelin
parents: 10973
diff changeset
333 #define EXCEPTION_MARK Thread* THREAD = NULL; ExceptionMark __em(THREAD);
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1684
diff changeset
334
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1684
diff changeset
335 #endif // SHARE_VM_UTILITIES_EXCEPTIONS_HPP