Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/utilities/exceptions.hpp
32285 views
/*1* Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_UTILITIES_EXCEPTIONS_HPP25#define SHARE_VM_UTILITIES_EXCEPTIONS_HPP2627#include "memory/allocation.hpp"28#include "oops/oopsHierarchy.hpp"29#include "utilities/sizes.hpp"3031// This file provides the basic support for exception handling in the VM.32// Note: We do not use C++ exceptions to avoid compiler dependencies and33// unpredictable performance.34//35// Scheme: Exceptions are stored with the thread. There is never more36// than one pending exception per thread. All functions that can throw37// an exception carry a THREAD argument (usually the last argument and38// declared with the TRAPS macro). Throwing an exception means setting39// a pending exception in the thread. Upon return from a function that40// can throw an exception, we must check if an exception is pending.41// The CHECK macros do this in a convenient way. Carrying around the42// thread provides also convenient access to it (e.g. for Handle43// creation, w/o the need for recomputation).44454647// Forward declarations to be independent of the include structure.48// This allows us to have exceptions.hpp included in top.hpp.4950class Thread;51class Handle;52class Symbol;53class JavaCallArguments;5455// The ThreadShadow class is a helper class to access the _pending_exception56// field of the Thread class w/o having access to the Thread's interface (for57// include hierachy reasons).5859class ThreadShadow: public CHeapObj<mtThread> {60friend class VMStructs;6162protected:63oop _pending_exception; // Thread has gc actions.64const char* _exception_file; // file information for exception (debugging only)65int _exception_line; // line information for exception (debugging only)66friend void check_ThreadShadow(); // checks _pending_exception offset6768// The following virtual exists only to force creation of a vtable.69// We need ThreadShadow to have a vtable, even in product builds,70// so that its layout will start at an offset of zero relative to Thread.71// Some C++ compilers are so "clever" that they put the ThreadShadow72// base class at offset 4 in Thread (after Thread's vtable), if they73// notice that Thread has a vtable but ThreadShadow does not.74virtual void unused_initial_virtual() { }7576public:77oop pending_exception() const { return _pending_exception; }78bool has_pending_exception() const { return _pending_exception != NULL; }79const char* exception_file() const { return _exception_file; }80int exception_line() const { return _exception_line; }8182// Code generation support83static ByteSize pending_exception_offset() { return byte_offset_of(ThreadShadow, _pending_exception); }8485// use THROW whenever possible!86void set_pending_exception(oop exception, const char* file, int line);8788// use CLEAR_PENDING_EXCEPTION whenever possible!89void clear_pending_exception();9091ThreadShadow() : _pending_exception(NULL),92_exception_file(NULL), _exception_line(0) {}93};949596// Exceptions is a helper class that encapsulates all operations97// that require access to the thread interface and which are98// relatively rare. The Exceptions operations should only be99// used directly if the macros below are insufficient.100101class Exceptions {102static bool special_exception(Thread *thread, const char* file, int line, Handle exception);103static bool special_exception(Thread* thread, const char* file, int line, Symbol* name, const char* message);104105// Count out of memory errors that are interesting in error diagnosis106static volatile int _out_of_memory_error_java_heap_errors;107static volatile int _out_of_memory_error_metaspace_errors;108static volatile int _out_of_memory_error_class_metaspace_errors;109public:110// this enum is defined to indicate whether it is safe to111// ignore the encoding scheme of the original message string.112typedef enum {113safe_to_utf8 = 0,114unsafe_to_utf8 = 1115} ExceptionMsgToUtf8Mode;116// Throw exceptions: w/o message, w/ message & with formatted message.117static void _throw_oop(Thread* thread, const char* file, int line, oop exception);118static void _throw(Thread* thread, const char* file, int line, Handle exception, const char* msg = NULL);119120static void _throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message);121static void _throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message,122Handle loader, Handle protection_domain);123124static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause);125static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause,126Handle h_loader, Handle h_protection_domain);127128static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause);129static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause,130Handle h_loader, Handle h_protection_domain);131132static void _throw_args(Thread* thread, const char* file, int line,133Symbol* name, Symbol* signature,134JavaCallArguments* args);135136// There is no THROW... macro for this method. Caller should remember137// to do a return after calling it.138static void fthrow(Thread* thread, const char* file, int line, Symbol* name,139const char* format, ...) ATTRIBUTE_PRINTF(5, 6);140141// Create and initialize a new exception142static Handle new_exception(Thread* thread, Symbol* name,143Symbol* signature, JavaCallArguments* args,144Handle loader, Handle protection_domain);145146static Handle new_exception(Thread* thread, Symbol* name,147Symbol* signature, JavaCallArguments* args,148Handle cause,149Handle loader, Handle protection_domain);150151static Handle new_exception(Thread* thread, Symbol* name,152Handle cause,153Handle loader, Handle protection_domain,154ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);155156static Handle new_exception(Thread* thread, Symbol* name,157const char* message, Handle cause,158Handle loader, Handle protection_domain,159ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);160161static Handle new_exception(Thread* thread, Symbol* name,162const char* message,163ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);164165static void throw_stack_overflow_exception(Thread* thread, const char* file, int line, methodHandle method);166167// Exception counting for error files of interesting exceptions that may have168// caused a problem for the jvm169static volatile int _stack_overflow_errors;170171static bool has_exception_counts();172static void count_out_of_memory_exceptions(Handle exception);173static void print_exception_counts_on_error(outputStream* st);174175// for AbortVMOnException flag176NOT_PRODUCT(static void debug_check_abort(Handle exception, const char* message = NULL);)177NOT_PRODUCT(static void debug_check_abort(const char *value_string, const char* message = NULL);)178};179180181// The THREAD & TRAPS macros facilitate the declaration of functions that throw exceptions.182// Convention: Use the TRAPS macro as the last argument of such a function; e.g.:183//184// int this_function_may_trap(int x, float y, TRAPS)185186#define THREAD __the_thread__187#define TRAPS Thread* THREAD188189190// The CHECK... macros should be used to pass along a THREAD reference and to check for pending191// exceptions. In special situations it is necessary to handle pending exceptions explicitly,192// in these cases the PENDING_EXCEPTION helper macros should be used.193//194// Macro naming conventions: Macros that end with _ require a result value to be returned. They195// are for functions with non-void result type. The result value is usually ignored because of196// the exception and is only needed for syntactic correctness. The _0 ending is a shortcut for197// _(0) since this is a frequent case. Example:198//199// int result = this_function_may_trap(x_arg, y_arg, CHECK_0);200//201// CAUTION: make sure that the function call using a CHECK macro is not the only statement of a202// conditional branch w/o enclosing {} braces, since the CHECK macros expand into several state-203// ments! Also make sure it is not used on a function call that is part of a return statement!204205#define PENDING_EXCEPTION (((ThreadShadow*)THREAD)->pending_exception())206#define HAS_PENDING_EXCEPTION (((ThreadShadow*)THREAD)->has_pending_exception())207#define CLEAR_PENDING_EXCEPTION (((ThreadShadow*)THREAD)->clear_pending_exception())208209#define CHECK THREAD); if (HAS_PENDING_EXCEPTION) return ; (void)(0210#define CHECK_(result) THREAD); if (HAS_PENDING_EXCEPTION) return result; (void)(0211#define CHECK_0 CHECK_(0)212#define CHECK_NH CHECK_(Handle())213#define CHECK_NULL CHECK_(NULL)214#define CHECK_false CHECK_(false)215216#define CHECK_AND_CLEAR THREAD); if (HAS_PENDING_EXCEPTION) { CLEAR_PENDING_EXCEPTION; return; } (void)(0217#define CHECK_AND_CLEAR_(result) THREAD); if (HAS_PENDING_EXCEPTION) { CLEAR_PENDING_EXCEPTION; return result; } (void)(0218#define CHECK_AND_CLEAR_0 CHECK_AND_CLEAR_(0)219#define CHECK_AND_CLEAR_NH CHECK_AND_CLEAR_(Handle())220#define CHECK_AND_CLEAR_NULL CHECK_AND_CLEAR_(NULL)221#define CHECK_AND_CLEAR_false CHECK_AND_CLEAR_(false)222223// The THROW... macros should be used to throw an exception. They require a THREAD variable to be224// visible within the scope containing the THROW. Usually this is achieved by declaring the function225// with a TRAPS argument.226227#define THREAD_AND_LOCATION THREAD, __FILE__, __LINE__228229#define THROW_OOP(e) \230{ Exceptions::_throw_oop(THREAD_AND_LOCATION, e); return; }231232#define THROW_HANDLE(e) \233{ Exceptions::_throw(THREAD_AND_LOCATION, e); return; }234235#define THROW(name) \236{ Exceptions::_throw_msg(THREAD_AND_LOCATION, name, NULL); return; }237238#define THROW_MSG(name, message) \239{ Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message); return; }240241#define THROW_CAUSE(name, cause) \242{ Exceptions::_throw_cause(THREAD_AND_LOCATION, name, cause); return; }243244#define THROW_MSG_LOADER(name, message, loader, protection_domain) \245{ Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return; }246247#define THROW_ARG(name, signature, args) \248{ Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args); return; }249250#define THROW_OOP_(e, result) \251{ Exceptions::_throw_oop(THREAD_AND_LOCATION, e); return result; }252253#define THROW_HANDLE_(e, result) \254{ Exceptions::_throw(THREAD_AND_LOCATION, e); return result; }255256#define THROW_(name, result) \257{ Exceptions::_throw_msg(THREAD_AND_LOCATION, name, NULL); return result; }258259#define THROW_MSG_(name, message, result) \260{ Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message); return result; }261262#define THROW_MSG_LOADER_(name, message, loader, protection_domain, result) \263{ Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return result; }264265#define THROW_ARG_(name, signature, args, result) \266{ Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args); return result; }267268#define THROW_MSG_CAUSE(name, message, cause) \269{ Exceptions::_throw_msg_cause(THREAD_AND_LOCATION, name, message, cause); return; }270271#define THROW_MSG_CAUSE_(name, message, cause, result) \272{ Exceptions::_throw_msg_cause(THREAD_AND_LOCATION, name, message, cause); return result; }273274275#define THROW_OOP_0(e) THROW_OOP_(e, 0)276#define THROW_HANDLE_0(e) THROW_HANDLE_(e, 0)277#define THROW_0(name) THROW_(name, 0)278#define THROW_MSG_0(name, message) THROW_MSG_(name, message, 0)279#define THROW_WRAPPED_0(name, oop_to_wrap) THROW_WRAPPED_(name, oop_to_wrap, 0)280#define THROW_ARG_0(name, signature, arg) THROW_ARG_(name, signature, arg, 0)281#define THROW_MSG_CAUSE_0(name, message, cause) THROW_MSG_CAUSE_(name, message, cause, 0)282#define THROW_MSG_CAUSE_NULL(name, message, cause) THROW_MSG_CAUSE_(name, message, cause, NULL)283284#define THROW_NULL(name) THROW_(name, NULL)285#define THROW_MSG_NULL(name, message) THROW_MSG_(name, message, NULL)286287// The CATCH macro checks that no exception has been thrown by a function; it is used at288// call sites about which is statically known that the callee cannot throw an exception289// even though it is declared with TRAPS.290291#define CATCH \292THREAD); if (HAS_PENDING_EXCEPTION) { \293oop ex = PENDING_EXCEPTION; \294CLEAR_PENDING_EXCEPTION; \295ex->print(); \296ShouldNotReachHere(); \297} (void)(0298299// ExceptionMark is a stack-allocated helper class for local exception handling.300// It is used with the EXCEPTION_MARK macro.301302class ExceptionMark {303private:304Thread* _thread;305306public:307ExceptionMark(Thread*& thread);308~ExceptionMark();309};310311312313// Use an EXCEPTION_MARK for 'local' exceptions. EXCEPTION_MARK makes sure that no314// pending exception exists upon entering its scope and tests that no pending exception315// exists when leaving the scope.316317// See also preserveException.hpp for PRESERVE_EXCEPTION_MARK macro,318// which preserves pre-existing exceptions and does not allow new319// exceptions.320321#define EXCEPTION_MARK Thread* THREAD = NULL; ExceptionMark __em(THREAD);322323#endif // SHARE_VM_UTILITIES_EXCEPTIONS_HPP324325326