src/share/vm/utilities/exceptions.hpp

Wed, 14 Mar 2018 03:19:46 -0700

author
shshahma
date
Wed, 14 Mar 2018 03:19:46 -0700
changeset 9301
d47844b56aaf
parent 6680
78bbf4d43a14
child 9448
73d689add964
child 9509
fbc668a76c00
permissions
-rw-r--r--

8035074: hs_err improvement: Add time zone information in the hs_err file
8026335: hs_err improvement: Print exact compressed oops mode and the heap base value.
8026331: hs_err improvement: Print if we have seen any OutOfMemoryErrors or StackOverflowErrors
Summary: Add requested things to hs_err file.
Reviewed-by: dholmes

duke@435 1 /*
shshahma@9301 2 * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_UTILITIES_EXCEPTIONS_HPP
stefank@2314 26 #define SHARE_VM_UTILITIES_EXCEPTIONS_HPP
stefank@2314 27
stefank@2314 28 #include "memory/allocation.hpp"
stefank@2314 29 #include "oops/oopsHierarchy.hpp"
stefank@2314 30 #include "utilities/sizes.hpp"
stefank@2314 31
duke@435 32 // This file provides the basic support for exception handling in the VM.
duke@435 33 // Note: We do not use C++ exceptions to avoid compiler dependencies and
duke@435 34 // unpredictable performance.
duke@435 35 //
duke@435 36 // Scheme: Exceptions are stored with the thread. There is never more
duke@435 37 // than one pending exception per thread. All functions that can throw
duke@435 38 // an exception carry a THREAD argument (usually the last argument and
duke@435 39 // declared with the TRAPS macro). Throwing an exception means setting
duke@435 40 // a pending exception in the thread. Upon return from a function that
duke@435 41 // can throw an exception, we must check if an exception is pending.
duke@435 42 // The CHECK macros do this in a convenient way. Carrying around the
duke@435 43 // thread provides also convenient access to it (e.g. for Handle
duke@435 44 // creation, w/o the need for recomputation).
duke@435 45
duke@435 46
duke@435 47
duke@435 48 // Forward declarations to be independent of the include structure.
duke@435 49 // This allows us to have exceptions.hpp included in top.hpp.
duke@435 50
duke@435 51 class Thread;
duke@435 52 class Handle;
coleenp@2497 53 class Symbol;
duke@435 54 class JavaCallArguments;
duke@435 55
duke@435 56 // The ThreadShadow class is a helper class to access the _pending_exception
duke@435 57 // field of the Thread class w/o having access to the Thread's interface (for
duke@435 58 // include hierachy reasons).
duke@435 59
zgu@3900 60 class ThreadShadow: public CHeapObj<mtThread> {
never@3138 61 friend class VMStructs;
never@3138 62
duke@435 63 protected:
duke@435 64 oop _pending_exception; // Thread has gc actions.
duke@435 65 const char* _exception_file; // file information for exception (debugging only)
duke@435 66 int _exception_line; // line information for exception (debugging only)
duke@435 67 friend void check_ThreadShadow(); // checks _pending_exception offset
duke@435 68
duke@435 69 // The following virtual exists only to force creation of a vtable.
duke@435 70 // We need ThreadShadow to have a vtable, even in product builds,
duke@435 71 // so that its layout will start at an offset of zero relative to Thread.
duke@435 72 // Some C++ compilers are so "clever" that they put the ThreadShadow
duke@435 73 // base class at offset 4 in Thread (after Thread's vtable), if they
duke@435 74 // notice that Thread has a vtable but ThreadShadow does not.
duke@435 75 virtual void unused_initial_virtual() { }
duke@435 76
duke@435 77 public:
duke@435 78 oop pending_exception() const { return _pending_exception; }
duke@435 79 bool has_pending_exception() const { return _pending_exception != NULL; }
duke@435 80 const char* exception_file() const { return _exception_file; }
duke@435 81 int exception_line() const { return _exception_line; }
duke@435 82
duke@435 83 // Code generation support
duke@435 84 static ByteSize pending_exception_offset() { return byte_offset_of(ThreadShadow, _pending_exception); }
duke@435 85
duke@435 86 // use THROW whenever possible!
duke@435 87 void set_pending_exception(oop exception, const char* file, int line);
duke@435 88
duke@435 89 // use CLEAR_PENDING_EXCEPTION whenever possible!
duke@435 90 void clear_pending_exception();
duke@435 91
duke@435 92 ThreadShadow() : _pending_exception(NULL),
duke@435 93 _exception_file(NULL), _exception_line(0) {}
duke@435 94 };
duke@435 95
duke@435 96
duke@435 97 // Exceptions is a helper class that encapsulates all operations
duke@435 98 // that require access to the thread interface and which are
duke@435 99 // relatively rare. The Exceptions operations should only be
duke@435 100 // used directly if the macros below are insufficient.
duke@435 101
duke@435 102 class Exceptions {
duke@435 103 static bool special_exception(Thread *thread, const char* file, int line, Handle exception);
coleenp@2497 104 static bool special_exception(Thread* thread, const char* file, int line, Symbol* name, const char* message);
shshahma@9301 105
shshahma@9301 106 // Count out of memory errors that are interesting in error diagnosis
shshahma@9301 107 static volatile int _out_of_memory_error_java_heap_errors;
shshahma@9301 108 static volatile int _out_of_memory_error_metaspace_errors;
shshahma@9301 109 static volatile int _out_of_memory_error_class_metaspace_errors;
duke@435 110 public:
duke@435 111 // this enum is defined to indicate whether it is safe to
duke@435 112 // ignore the encoding scheme of the original message string.
duke@435 113 typedef enum {
duke@435 114 safe_to_utf8 = 0,
duke@435 115 unsafe_to_utf8 = 1
duke@435 116 } ExceptionMsgToUtf8Mode;
duke@435 117 // Throw exceptions: w/o message, w/ message & with formatted message.
duke@435 118 static void _throw_oop(Thread* thread, const char* file, int line, oop exception);
never@1446 119 static void _throw(Thread* thread, const char* file, int line, Handle exception, const char* msg = NULL);
twisti@3974 120
twisti@3974 121 static void _throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message);
twisti@3974 122 static void _throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message,
twisti@3974 123 Handle loader, Handle protection_domain);
twisti@3974 124
twisti@3974 125 static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause);
twisti@3974 126 static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause,
twisti@3974 127 Handle h_loader, Handle h_protection_domain);
twisti@3974 128
twisti@3974 129 static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause);
twisti@3974 130 static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause,
twisti@3974 131 Handle h_loader, Handle h_protection_domain);
twisti@3974 132
duke@435 133 static void _throw_args(Thread* thread, const char* file, int line,
coleenp@2497 134 Symbol* name, Symbol* signature,
duke@435 135 JavaCallArguments* args);
duke@435 136
duke@435 137 // There is no THROW... macro for this method. Caller should remember
duke@435 138 // to do a return after calling it.
coleenp@2497 139 static void fthrow(Thread* thread, const char* file, int line, Symbol* name,
drchase@6680 140 const char* format, ...) ATTRIBUTE_PRINTF(5, 6);
duke@435 141
duke@435 142 // Create and initialize a new exception
coleenp@2497 143 static Handle new_exception(Thread* thread, Symbol* name,
coleenp@2497 144 Symbol* signature, JavaCallArguments* args,
twisti@3974 145 Handle loader, Handle protection_domain);
duke@435 146
coleenp@2497 147 static Handle new_exception(Thread* thread, Symbol* name,
twisti@3974 148 Symbol* signature, JavaCallArguments* args,
twisti@3974 149 Handle cause,
twisti@3974 150 Handle loader, Handle protection_domain);
twisti@3974 151
twisti@3974 152 static Handle new_exception(Thread* thread, Symbol* name,
twisti@3974 153 Handle cause,
twisti@3974 154 Handle loader, Handle protection_domain,
duke@435 155 ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
duke@435 156
twisti@3974 157 static Handle new_exception(Thread* thread, Symbol* name,
twisti@3974 158 const char* message, Handle cause,
twisti@3974 159 Handle loader, Handle protection_domain,
twisti@3974 160 ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
twisti@3974 161
twisti@3974 162 static Handle new_exception(Thread* thread, Symbol* name,
twisti@3974 163 const char* message,
twisti@3974 164 ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
duke@435 165
coleenp@2804 166 static void throw_stack_overflow_exception(Thread* thread, const char* file, int line, methodHandle method);
duke@435 167
shshahma@9301 168 // Exception counting for error files of interesting exceptions that may have
shshahma@9301 169 // caused a problem for the jvm
shshahma@9301 170 static volatile int _stack_overflow_errors;
shshahma@9301 171
shshahma@9301 172 static bool has_exception_counts();
shshahma@9301 173 static void count_out_of_memory_exceptions(Handle exception);
shshahma@9301 174 static void print_exception_counts_on_error(outputStream* st);
shshahma@9301 175
duke@435 176 // for AbortVMOnException flag
kvn@2039 177 NOT_PRODUCT(static void debug_check_abort(Handle exception, const char* message = NULL);)
kvn@2039 178 NOT_PRODUCT(static void debug_check_abort(const char *value_string, const char* message = NULL);)
duke@435 179 };
duke@435 180
duke@435 181
duke@435 182 // The THREAD & TRAPS macros facilitate the declaration of functions that throw exceptions.
duke@435 183 // Convention: Use the TRAPS macro as the last argument of such a function; e.g.:
duke@435 184 //
duke@435 185 // int this_function_may_trap(int x, float y, TRAPS)
duke@435 186
duke@435 187 #define THREAD __the_thread__
duke@435 188 #define TRAPS Thread* THREAD
duke@435 189
duke@435 190
duke@435 191 // The CHECK... macros should be used to pass along a THREAD reference and to check for pending
duke@435 192 // exceptions. In special situations it is necessary to handle pending exceptions explicitly,
duke@435 193 // in these cases the PENDING_EXCEPTION helper macros should be used.
duke@435 194 //
duke@435 195 // Macro naming conventions: Macros that end with _ require a result value to be returned. They
duke@435 196 // are for functions with non-void result type. The result value is usually ignored because of
duke@435 197 // the exception and is only needed for syntactic correctness. The _0 ending is a shortcut for
duke@435 198 // _(0) since this is a frequent case. Example:
duke@435 199 //
duke@435 200 // int result = this_function_may_trap(x_arg, y_arg, CHECK_0);
duke@435 201 //
duke@435 202 // CAUTION: make sure that the function call using a CHECK macro is not the only statement of a
duke@435 203 // conditional branch w/o enclosing {} braces, since the CHECK macros expand into several state-
duke@435 204 // ments!
duke@435 205
duke@435 206 #define PENDING_EXCEPTION (((ThreadShadow*)THREAD)->pending_exception())
duke@435 207 #define HAS_PENDING_EXCEPTION (((ThreadShadow*)THREAD)->has_pending_exception())
duke@435 208 #define CLEAR_PENDING_EXCEPTION (((ThreadShadow*)THREAD)->clear_pending_exception())
duke@435 209
ccheung@5259 210 #define CHECK THREAD); if (HAS_PENDING_EXCEPTION) return ; (void)(0
ccheung@5259 211 #define CHECK_(result) THREAD); if (HAS_PENDING_EXCEPTION) return result; (void)(0
duke@435 212 #define CHECK_0 CHECK_(0)
duke@435 213 #define CHECK_NH CHECK_(Handle())
duke@435 214 #define CHECK_NULL CHECK_(NULL)
duke@435 215 #define CHECK_false CHECK_(false)
duke@435 216
ccheung@5259 217 #define CHECK_AND_CLEAR THREAD); if (HAS_PENDING_EXCEPTION) { CLEAR_PENDING_EXCEPTION; return; } (void)(0
ccheung@5259 218 #define CHECK_AND_CLEAR_(result) THREAD); if (HAS_PENDING_EXCEPTION) { CLEAR_PENDING_EXCEPTION; return result; } (void)(0
iveresov@3452 219 #define CHECK_AND_CLEAR_0 CHECK_AND_CLEAR_(0)
iveresov@3452 220 #define CHECK_AND_CLEAR_NH CHECK_AND_CLEAR_(Handle())
iveresov@3452 221 #define CHECK_AND_CLEAR_NULL CHECK_AND_CLEAR_(NULL)
iveresov@3452 222 #define CHECK_AND_CLEAR_false CHECK_AND_CLEAR_(false)
iveresov@3452 223
duke@435 224 // The THROW... macros should be used to throw an exception. They require a THREAD variable to be
duke@435 225 // visible within the scope containing the THROW. Usually this is achieved by declaring the function
duke@435 226 // with a TRAPS argument.
duke@435 227
duke@435 228 #define THREAD_AND_LOCATION THREAD, __FILE__, __LINE__
duke@435 229
duke@435 230 #define THROW_OOP(e) \
duke@435 231 { Exceptions::_throw_oop(THREAD_AND_LOCATION, e); return; }
duke@435 232
duke@435 233 #define THROW_HANDLE(e) \
duke@435 234 { Exceptions::_throw(THREAD_AND_LOCATION, e); return; }
duke@435 235
duke@435 236 #define THROW(name) \
duke@435 237 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, NULL); return; }
duke@435 238
duke@435 239 #define THROW_MSG(name, message) \
duke@435 240 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message); return; }
duke@435 241
twisti@3974 242 #define THROW_CAUSE(name, cause) \
twisti@3974 243 { Exceptions::_throw_cause(THREAD_AND_LOCATION, name, cause); return; }
twisti@3974 244
duke@435 245 #define THROW_MSG_LOADER(name, message, loader, protection_domain) \
duke@435 246 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return; }
duke@435 247
duke@435 248 #define THROW_ARG(name, signature, args) \
duke@435 249 { Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args); return; }
duke@435 250
duke@435 251 #define THROW_OOP_(e, result) \
duke@435 252 { Exceptions::_throw_oop(THREAD_AND_LOCATION, e); return result; }
duke@435 253
duke@435 254 #define THROW_HANDLE_(e, result) \
duke@435 255 { Exceptions::_throw(THREAD_AND_LOCATION, e); return result; }
duke@435 256
duke@435 257 #define THROW_(name, result) \
duke@435 258 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, NULL); return result; }
duke@435 259
duke@435 260 #define THROW_MSG_(name, message, result) \
duke@435 261 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message); return result; }
duke@435 262
duke@435 263 #define THROW_MSG_LOADER_(name, message, loader, protection_domain, result) \
duke@435 264 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return result; }
duke@435 265
duke@435 266 #define THROW_ARG_(name, signature, args, result) \
duke@435 267 { Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args); return result; }
duke@435 268
twisti@3969 269 #define THROW_MSG_CAUSE(name, message, cause) \
twisti@3969 270 { Exceptions::_throw_msg_cause(THREAD_AND_LOCATION, name, message, cause); return; }
twisti@3969 271
duke@435 272 #define THROW_MSG_CAUSE_(name, message, cause, result) \
duke@435 273 { Exceptions::_throw_msg_cause(THREAD_AND_LOCATION, name, message, cause); return result; }
duke@435 274
duke@435 275
duke@435 276 #define THROW_OOP_0(e) THROW_OOP_(e, 0)
duke@435 277 #define THROW_HANDLE_0(e) THROW_HANDLE_(e, 0)
duke@435 278 #define THROW_0(name) THROW_(name, 0)
duke@435 279 #define THROW_MSG_0(name, message) THROW_MSG_(name, message, 0)
duke@435 280 #define THROW_WRAPPED_0(name, oop_to_wrap) THROW_WRAPPED_(name, oop_to_wrap, 0)
duke@435 281 #define THROW_ARG_0(name, signature, arg) THROW_ARG_(name, signature, arg, 0)
duke@435 282 #define THROW_MSG_CAUSE_0(name, message, cause) THROW_MSG_CAUSE_(name, message, cause, 0)
acorn@4425 283 #define THROW_MSG_CAUSE_NULL(name, message, cause) THROW_MSG_CAUSE_(name, message, cause, NULL)
duke@435 284
jrose@1145 285 #define THROW_NULL(name) THROW_(name, NULL)
jrose@1145 286 #define THROW_MSG_NULL(name, message) THROW_MSG_(name, message, NULL)
jrose@1145 287
duke@435 288 // The CATCH macro checks that no exception has been thrown by a function; it is used at
duke@435 289 // call sites about which is statically known that the callee cannot throw an exception
duke@435 290 // even though it is declared with TRAPS.
duke@435 291
duke@435 292 #define CATCH \
duke@435 293 THREAD); if (HAS_PENDING_EXCEPTION) { \
duke@435 294 oop ex = PENDING_EXCEPTION; \
duke@435 295 CLEAR_PENDING_EXCEPTION; \
duke@435 296 ex->print(); \
duke@435 297 ShouldNotReachHere(); \
ccheung@5259 298 } (void)(0
duke@435 299
duke@435 300 // ExceptionMark is a stack-allocated helper class for local exception handling.
duke@435 301 // It is used with the EXCEPTION_MARK macro.
duke@435 302
duke@435 303 class ExceptionMark {
duke@435 304 private:
duke@435 305 Thread* _thread;
duke@435 306
duke@435 307 public:
duke@435 308 ExceptionMark(Thread*& thread);
duke@435 309 ~ExceptionMark();
duke@435 310 };
duke@435 311
duke@435 312
duke@435 313
duke@435 314 // Use an EXCEPTION_MARK for 'local' exceptions. EXCEPTION_MARK makes sure that no
duke@435 315 // pending exception exists upon entering its scope and tests that no pending exception
duke@435 316 // exists when leaving the scope.
duke@435 317
duke@435 318 // See also preserveException.hpp for PRESERVE_EXCEPTION_MARK macro,
duke@435 319 // which preserves pre-existing exceptions and does not allow new
duke@435 320 // exceptions.
duke@435 321
ehelin@5518 322 #define EXCEPTION_MARK Thread* THREAD = NULL; ExceptionMark __em(THREAD);
stefank@2314 323
stefank@2314 324 #endif // SHARE_VM_UTILITIES_EXCEPTIONS_HPP

mercurial