hotspot/src/share/vm/utilities/exceptions.hpp
author never
Tue, 13 Oct 2009 16:29:31 -0700
changeset 4014 b59b8c387950
parent 3261 c7d5aae8d3f7
child 5547 f4b087cbb361
permissions -rw-r--r--
6889302: TraceExceptions output should include detail message Reviewed-by: twisti, jrose, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3261
c7d5aae8d3f7 6862919: Update copyright year
xdono
parents: 2534
diff changeset
     2
 * Copyright 1998-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// This file provides the basic support for exception handling in the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// Note: We do not use C++ exceptions to avoid compiler dependencies and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// unpredictable performance.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Scheme: Exceptions are stored with the thread. There is never more
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// than one pending exception per thread. All functions that can throw
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// an exception carry a THREAD argument (usually the last argument and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// declared with the TRAPS macro). Throwing an exception means setting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// a pending exception in the thread. Upon return from a function that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// can throw an exception, we must check if an exception is pending.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// The CHECK macros do this in a convenient way. Carrying around the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// thread provides also convenient access to it (e.g. for Handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// creation, w/o the need for recomputation).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// Forward declarations to be independent of the include structure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// This allows us to have exceptions.hpp included in top.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class Thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class Handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class symbolHandle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class symbolOopDesc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
class JavaCallArguments;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// The ThreadShadow class is a helper class to access the _pending_exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// field of the Thread class w/o having access to the Thread's interface (for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// include hierachy reasons).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
class ThreadShadow: public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  oop  _pending_exception;                       // Thread has gc actions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  const char* _exception_file;                   // file information for exception (debugging only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  int         _exception_line;                   // line information for exception (debugging only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  friend void check_ThreadShadow();              // checks _pending_exception offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // The following virtual exists only to force creation of a vtable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // We need ThreadShadow to have a vtable, even in product builds,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // so that its layout will start at an offset of zero relative to Thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Some C++ compilers are so "clever" that they put the ThreadShadow
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // base class at offset 4 in Thread (after Thread's vtable), if they
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // notice that Thread has a vtable but ThreadShadow does not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  virtual void unused_initial_virtual() { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  oop  pending_exception() const                 { return _pending_exception; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  bool has_pending_exception() const             { return _pending_exception != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  const char* exception_file() const             { return _exception_file; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  int  exception_line() const                    { return _exception_line; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  static ByteSize pending_exception_offset()     { return byte_offset_of(ThreadShadow, _pending_exception); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // use THROW whenever possible!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  void set_pending_exception(oop exception, const char* file, int line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // use CLEAR_PENDING_EXCEPTION whenever possible!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  void clear_pending_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  ThreadShadow() : _pending_exception(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                   _exception_file(NULL), _exception_line(0) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
// Exceptions is a helper class that encapsulates all operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// that require access to the thread interface and which are
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// relatively rare. The Exceptions operations should only be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// used directly if the macros below are insufficient.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
class Exceptions {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static bool special_exception(Thread *thread, const char* file, int line, Handle exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  static bool special_exception(Thread* thread, const char* file, int line, symbolHandle name, const char* message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // this enum is defined to indicate whether it is safe to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // ignore the encoding scheme of the original message string.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  typedef enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    safe_to_utf8 = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    unsafe_to_utf8 = 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  } ExceptionMsgToUtf8Mode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // Throw exceptions: w/o message, w/ message & with formatted message.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  static void _throw_oop(Thread* thread, const char* file, int line, oop exception);
4014
b59b8c387950 6889302: TraceExceptions output should include detail message
never
parents: 3261
diff changeset
   106
  static void _throw(Thread* thread, const char* file, int line, Handle exception, const char* msg = NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  static void _throw_msg(Thread* thread, const char* file, int line,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                         symbolHandle name, const char* message, Handle loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                         Handle protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  static void _throw_msg(Thread* thread, const char* file, int line,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                         symbolOop name, const char* message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  static void _throw_msg(Thread* thread, const char* file, int line,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
                         symbolHandle name, const char* message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  static void _throw_args(Thread* thread, const char* file, int line,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                          symbolHandle name, symbolHandle signature,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
                          JavaCallArguments* args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  static void _throw_msg_cause(Thread* thread, const char* file,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
                         int line, symbolHandle h_name, const char* message,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
                         Handle h_cause, Handle h_loader, Handle h_protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  static void _throw_msg_cause(Thread* thread, const char* file, int line,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
                            symbolHandle name, const char* message, Handle cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // There is no THROW... macro for this method. Caller should remember
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // to do a return after calling it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  static void fthrow(Thread* thread, const char* file, int line, symbolHandle name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
                     const char* format, ...);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // Create and initialize a new exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  static Handle new_exception(Thread* thread, symbolHandle name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
                              symbolHandle signature, JavaCallArguments* args,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
                              Handle cause, Handle loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
                              Handle protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  static Handle new_exception(Thread* thread, symbolHandle name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
                              const char* message, Handle cause, Handle loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
                              Handle protection_domain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
                              ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
 static Handle new_exception(Thread* thread, symbolOop name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
                             const char* message,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
                             ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  static void throw_stack_overflow_exception(Thread* thread, const char* file, int line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // for AbortVMOnException flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  NOT_PRODUCT(static void debug_check_abort(Handle exception);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  NOT_PRODUCT(static void debug_check_abort(const char *value_string);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
// The THREAD & TRAPS macros facilitate the declaration of functions that throw exceptions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
// Convention: Use the TRAPS macro as the last argument of such a function; e.g.:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
// int this_function_may_trap(int x, float y, TRAPS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
#define THREAD __the_thread__
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
#define TRAPS  Thread* THREAD
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
// The CHECK... macros should be used to pass along a THREAD reference and to check for pending
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
// exceptions. In special situations it is necessary to handle pending exceptions explicitly,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// in these cases the PENDING_EXCEPTION helper macros should be used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// Macro naming conventions: Macros that end with _ require a result value to be returned. They
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// are for functions with non-void result type. The result value is usually ignored because of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
// the exception and is only needed for syntactic correctness. The _0 ending is a shortcut for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// _(0) since this is a frequent case. Example:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
// int result = this_function_may_trap(x_arg, y_arg, CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
// CAUTION: make sure that the function call using a CHECK macro is not the only statement of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
// conditional branch w/o enclosing {} braces, since the CHECK macros expand into several state-
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
// ments!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
#define PENDING_EXCEPTION                        (((ThreadShadow*)THREAD)->pending_exception())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
#define HAS_PENDING_EXCEPTION                    (((ThreadShadow*)THREAD)->has_pending_exception())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
#define CLEAR_PENDING_EXCEPTION                  (((ThreadShadow*)THREAD)->clear_pending_exception())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
#define CHECK                                    THREAD); if (HAS_PENDING_EXCEPTION) return       ; (0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
#define CHECK_(result)                           THREAD); if (HAS_PENDING_EXCEPTION) return result; (0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
#define CHECK_0                                  CHECK_(0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
#define CHECK_NH                                 CHECK_(Handle())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
#define CHECK_NULL                               CHECK_(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
#define CHECK_false                              CHECK_(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
// The THROW... macros should be used to throw an exception. They require a THREAD variable to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
// visible within the scope containing the THROW. Usually this is achieved by declaring the function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// with a TRAPS argument.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
#define THREAD_AND_LOCATION                      THREAD, __FILE__, __LINE__
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
#define THROW_OOP(e)                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  { Exceptions::_throw_oop(THREAD_AND_LOCATION, e);                             return;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
#define THROW_HANDLE(e)                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  { Exceptions::_throw(THREAD_AND_LOCATION, e);                             return;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
#define THROW(name)                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, NULL); return;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
#define THROW_MSG(name, message)                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message); return;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
#define THROW_MSG_LOADER(name, message, loader, protection_domain) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
#define THROW_ARG(name, signature, args) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  { Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args);   return; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
#define THROW_OOP_(e, result)                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  { Exceptions::_throw_oop(THREAD_AND_LOCATION, e);                           return result; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
#define THROW_HANDLE_(e, result)                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  { Exceptions::_throw(THREAD_AND_LOCATION, e);                           return result; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
#define THROW_(name, result)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, NULL); return result; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
#define THROW_MSG_(name, message, result)           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message); return result; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
#define THROW_MSG_LOADER_(name, message, loader, protection_domain, result) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return result; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
#define THROW_ARG_(name, signature, args, result) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  { Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args); return result; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
#define THROW_MSG_CAUSE_(name, message, cause, result)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  { Exceptions::_throw_msg_cause(THREAD_AND_LOCATION, name, message, cause); return result; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
#define THROW_OOP_0(e)                      THROW_OOP_(e, 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
#define THROW_HANDLE_0(e)                   THROW_HANDLE_(e, 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
#define THROW_0(name)                       THROW_(name, 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
#define THROW_MSG_0(name, message)          THROW_MSG_(name, message, 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
#define THROW_WRAPPED_0(name, oop_to_wrap)  THROW_WRAPPED_(name, oop_to_wrap, 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
#define THROW_ARG_0(name, signature, arg)   THROW_ARG_(name, signature, arg, 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
#define THROW_MSG_CAUSE_0(name, message, cause) THROW_MSG_CAUSE_(name, message, cause, 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   240
#define THROW_NULL(name)                    THROW_(name, NULL)
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   241
#define THROW_MSG_NULL(name, message)       THROW_MSG_(name, message, NULL)
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   242
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// The CATCH macro checks that no exception has been thrown by a function; it is used at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// call sites about which is statically known that the callee cannot throw an exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
// even though it is declared with TRAPS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
#define CATCH                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  THREAD); if (HAS_PENDING_EXCEPTION) {    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    oop ex = PENDING_EXCEPTION;            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    CLEAR_PENDING_EXCEPTION;               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    ex->print();                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    ShouldNotReachHere();                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  } (0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
// ExceptionMark is a stack-allocated helper class for local exception handling.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
// It is used with the EXCEPTION_MARK macro.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
class ExceptionMark {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  Thread* _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  ExceptionMark(Thread*& thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  ~ExceptionMark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// Use an EXCEPTION_MARK for 'local' exceptions. EXCEPTION_MARK makes sure that no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// pending exception exists upon entering its scope and tests that no pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
// exists when leaving the scope.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
// See also preserveException.hpp for PRESERVE_EXCEPTION_MARK macro,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
// which preserves pre-existing exceptions and does not allow new
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
// exceptions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
#define EXCEPTION_MARK                           Thread* THREAD; ExceptionMark __em(THREAD);