hotspot/src/share/vm/utilities/exceptions.cpp
author jcoomes
Thu, 22 Apr 2010 13:23:15 -0700
changeset 5403 6b0dd9c75dde
parent 4571 80b553bddc26
child 5547 f4b087cbb361
permissions -rw-r--r--
6888954: argument formatting for assert() and friends Reviewed-by: kvn, twisti, apetrusenko, never, dcubed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1998-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_exceptions.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Implementation of ThreadShadow
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
void check_ThreadShadow() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  const ByteSize offset1 = byte_offset_of(ThreadShadow, _pending_exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  const ByteSize offset2 = Thread::pending_exception_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  if (offset1 != offset2) fatal("ThreadShadow::_pending_exception is not positioned correctly");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
void ThreadShadow::set_pending_exception(oop exception, const char* file, int line) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  assert(exception != NULL && exception->is_oop(), "invalid exception oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  _pending_exception = exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  _exception_file    = file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _exception_line    = line;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
void ThreadShadow::clear_pending_exception() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  if (TraceClearedExceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    if (_pending_exception != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
      tty->print_cr("Thread::clear_pending_exception: cleared exception:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
      _pending_exception->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  _pending_exception = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  _exception_file    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _exception_line    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// Implementation of Exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
bool Exceptions::special_exception(Thread* thread, const char* file, int line, Handle h_exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // bootstrapping check
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (!Universe::is_fully_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
   vm_exit_during_initialization(h_exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
   ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  if (thread->is_VM_thread()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      || thread->is_Compiler_thread() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    // We do not care what kind of exception we get for the vm-thread or a thread which
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    // is compiling.  We just install a dummy exception object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    thread->set_pending_exception(Universe::vm_exception(), file, line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
bool Exceptions::special_exception(Thread* thread, const char* file, int line, symbolHandle h_name, const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // bootstrapping check
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  if (!Universe::is_fully_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    if (h_name.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      // atleast an informative message.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
      vm_exit_during_initialization("Exception", message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      vm_exit_during_initialization(h_name, message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  if (thread->is_VM_thread()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      || thread->is_Compiler_thread() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    // We do not care what kind of exception we get for the vm-thread or a thread which
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    // is compiling.  We just install a dummy exception object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    thread->set_pending_exception(Universe::vm_exception(), file, line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// This method should only be called from generated code,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
// therefore the exception oop should be in the oopmap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
void Exceptions::_throw_oop(Thread* thread, const char* file, int line, oop exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  assert(exception != NULL, "exception should not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  Handle h_exception = Handle(thread, exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  _throw(thread, file, line, h_exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
4014
b59b8c387950 6889302: TraceExceptions output should include detail message
never
parents: 1
diff changeset
   106
void Exceptions::_throw(Thread* thread, const char* file, int line, Handle h_exception, const char* message) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  assert(h_exception() != NULL, "exception should not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // tracing (do this up front - so it works during boot strapping)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  if (TraceExceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    ResourceMark rm;
4014
b59b8c387950 6889302: TraceExceptions output should include detail message
never
parents: 1
diff changeset
   113
    tty->print_cr("Exception <%s>%s%s (" INTPTR_FORMAT " ) \n"
b59b8c387950 6889302: TraceExceptions output should include detail message
never
parents: 1
diff changeset
   114
                  "thrown [%s, line %d]\nfor thread " INTPTR_FORMAT,
b59b8c387950 6889302: TraceExceptions output should include detail message
never
parents: 1
diff changeset
   115
                  h_exception->print_value_string(),
b59b8c387950 6889302: TraceExceptions output should include detail message
never
parents: 1
diff changeset
   116
                  message ? ": " : "", message ? message : "",
b59b8c387950 6889302: TraceExceptions output should include detail message
never
parents: 1
diff changeset
   117
                  (address)h_exception(), file, line, thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // for AbortVMOnException flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  NOT_PRODUCT(Exceptions::debug_check_abort(h_exception));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Check for special boot-strapping/vm-thread handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  if (special_exception(thread, file, line, h_exception)) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4014
diff changeset
   125
  assert(h_exception->is_a(SystemDictionary::Throwable_klass()), "exception is not a subclass of java/lang/Throwable");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // set the pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  thread->set_pending_exception(h_exception(), file, line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // vm log
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  Events::log("throw_exception " INTPTR_FORMAT, (address)h_exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
void Exceptions::_throw_msg(Thread* thread, const char* file, int line, symbolHandle h_name, const char* message, Handle h_loader, Handle h_protection_domain) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Check for special boot-strapping/vm-thread handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  if (special_exception(thread, file, line, h_name, message)) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // Create and throw exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  Handle h_cause(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  Handle h_exception = new_exception(thread, h_name, message, h_cause, h_loader, h_protection_domain);
4014
b59b8c387950 6889302: TraceExceptions output should include detail message
never
parents: 1
diff changeset
   141
  _throw(thread, file, line, h_exception, message);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// Throw an exception with a message and a cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
void Exceptions::_throw_msg_cause(Thread* thread, const char* file, int line, symbolHandle h_name, const char* message, Handle h_cause, Handle h_loader, Handle h_protection_domain) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Check for special boot-strapping/vm-thread handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  if (special_exception(thread, file, line, h_name, message)) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // Create and throw exception and init cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  Handle h_exception = new_exception(thread, h_name, message, h_cause, h_loader, h_protection_domain);
4014
b59b8c387950 6889302: TraceExceptions output should include detail message
never
parents: 1
diff changeset
   150
  _throw(thread, file, line, h_exception, message);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
// This version creates handles and calls the other version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
void Exceptions::_throw_msg(Thread* thread, const char* file, int line,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                            symbolOop name, const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  symbolHandle h_name(thread, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  Handle       h_loader(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  Handle       h_protection_domain(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  Exceptions::_throw_msg(thread, file, line, h_name, message, h_loader, h_protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// This version already has a handle for name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
void Exceptions::_throw_msg(Thread* thread, const char* file, int line,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
                            symbolHandle name, const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  Handle       h_loader(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  Handle       h_protection_domain(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  Exceptions::_throw_msg(thread, file, line, name, message, h_loader, h_protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
// This version already has a handle for name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
void Exceptions::_throw_msg_cause(Thread* thread, const char* file, int line,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
                            symbolHandle name, const char* message, Handle cause) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  Handle       h_loader(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  Handle       h_protection_domain(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  Exceptions::_throw_msg_cause(thread, file, line, name, message, cause, h_loader, h_protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
void Exceptions::_throw_args(Thread* thread, const char* file, int line, symbolHandle h_name, symbolHandle h_signature, JavaCallArguments *args) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // Check for special boot-strapping/vm-thread handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  if (special_exception(thread, file, line, h_name, NULL)) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // Create and throw exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  Handle h_loader(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  Handle h_prot(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  Handle h_cause(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  Handle exception = new_exception(thread, h_name, h_signature, args, h_cause, h_loader, h_prot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  _throw(thread, file, line, exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
void Exceptions::throw_stack_overflow_exception(Thread* THREAD, const char* file, int line) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  Handle exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  if (!THREAD->has_pending_exception()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    klassOop k = SystemDictionary::StackOverflowError_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    oop e = instanceKlass::cast(k)->allocate_instance(CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    exception = Handle(THREAD, e);  // fill_in_stack trace does gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    if (StackTraceInThrowable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      java_lang_Throwable::fill_in_stack_trace(exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    // if prior exception, throw that one instead
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    exception = Handle(THREAD, THREAD->pending_exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  _throw_oop(THREAD, file, line, exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
void Exceptions::fthrow(Thread* thread, const char* file, int line, symbolHandle h_name, const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  const int max_msg_size = 1024;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  char msg[max_msg_size];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  vsnprintf(msg, max_msg_size, format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  msg[max_msg_size-1] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  _throw_msg(thread, file, line, h_name, msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
// Creates an exception oop, calls the <init> method with the given signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
// and returns a Handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
// Initializes the cause if cause non-null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
Handle Exceptions::new_exception(Thread *thread, symbolHandle h_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
                                 symbolHandle signature,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
                                 JavaCallArguments *args,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
                                 Handle h_cause, Handle h_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
                                 Handle h_protection_domain) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  assert(Universe::is_fully_initialized(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    "cannot be called during initialization");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  assert(thread->is_Java_thread(), "can only be called by a Java thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  assert(!thread->has_pending_exception(), "already has exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  Handle h_exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // Resolve exception klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  klassOop ik = SystemDictionary::resolve_or_fail(h_name, h_loader, h_protection_domain, true, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  instanceKlassHandle klass (thread, ik);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  if (!thread->has_pending_exception()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    assert(klass.not_null(), "klass must exist");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    // We are about to create an instance - so make sure that klass is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    klass->initialize(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    if (!thread->has_pending_exception()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      // Allocate new exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      h_exception = klass->allocate_instance_handle(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      if (!thread->has_pending_exception()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
        JavaValue result(T_VOID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
        args->set_receiver(h_exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
        // Call constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
        JavaCalls::call_special(&result, klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
                                         vmSymbolHandles::object_initializer_name(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
                                         signature,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
                                         args,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
                                         thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    // Future: object initializer should take a cause argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    if (h_cause() != NULL) {
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4014
diff changeset
   258
      assert(h_cause->is_a(SystemDictionary::Throwable_klass()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
          "exception cause is not a subclass of java/lang/Throwable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      JavaValue result1(T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      JavaCallArguments args1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      args1.set_receiver(h_exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      args1.push_oop(h_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      JavaCalls::call_virtual(&result1, klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
                                     vmSymbolHandles::initCause_name(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
                                     vmSymbolHandles::throwable_throwable_signature(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
                                     &args1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                                     thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  // Check if another exception was thrown in the process, if so rethrow that one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  if (thread->has_pending_exception()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    h_exception = Handle(thread, thread->pending_exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    thread->clear_pending_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  return h_exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
// Convenience method. Calls either the <init>() or <init>(String) method when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
// creating a new exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
Handle Exceptions::new_exception(Thread* thread, symbolHandle h_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
                                 const char* message, Handle h_cause,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                                 Handle h_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
                                 Handle h_protection_domain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
                                 ExceptionMsgToUtf8Mode to_utf8_safe) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  JavaCallArguments args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  symbolHandle signature;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  if (message == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    signature = vmSymbolHandles::void_method_signature();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    // We want to allocate storage, but we can't do that if there's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    // a pending exception, so we preserve any pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    // around the allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    // If we get an exception from the allocation, prefer that to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    // the exception we are trying to build, or the pending exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    // This is sort of like what PRESERVE_EXCEPTION_MARK does, except
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    // for the preferencing and the early returns.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    Handle incoming_exception (thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    if (thread->has_pending_exception()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
      incoming_exception = Handle(thread, thread->pending_exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
      thread->clear_pending_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    Handle msg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    if (to_utf8_safe == safe_to_utf8) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
      // Make a java UTF8 string.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
      msg = java_lang_String::create_from_str(message, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
      // Make a java string keeping the encoding scheme of the original string.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
      msg = java_lang_String::create_from_platform_dependent_str(message, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    if (thread->has_pending_exception()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      Handle exception(thread, thread->pending_exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      thread->clear_pending_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      return exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    if (incoming_exception.not_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
      return incoming_exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    args.push_oop(msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    signature = vmSymbolHandles::string_void_signature();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  return new_exception(thread, h_name, signature, &args, h_cause, h_loader, h_protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
// Another convenience method that creates handles for null class loaders and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
// protection domains and null causes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
// If the last parameter 'to_utf8_mode' is safe_to_utf8,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
// it means we can safely ignore the encoding scheme of the message string and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// convert it directly to a java UTF8 string. Otherwise, we need to take the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
// encoding scheme of the string into account. One thing we should do at some
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
// point is to push this flag down to class java_lang_String since other
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
// classes may need similar functionalities.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
Handle Exceptions::new_exception(Thread* thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
                                 symbolOop name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
                                 const char* message,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
                                 ExceptionMsgToUtf8Mode to_utf8_safe) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  symbolHandle h_name(thread, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  Handle       h_loader(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  Handle       h_prot(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  Handle       h_cause(thread, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  return Exceptions::new_exception(thread, h_name, message, h_cause, h_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
                                   h_prot, to_utf8_safe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
// Implementation of ExceptionMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
ExceptionMark::ExceptionMark(Thread*& thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  thread     = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  _thread    = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  if (_thread->has_pending_exception()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    oop exception = _thread->pending_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    _thread->clear_pending_exception(); // Needed to avoid infinite recursion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    exception->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    fatal("ExceptionMark constructor expects no pending exceptions");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
ExceptionMark::~ExceptionMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  if (_thread->has_pending_exception()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    Handle exception(_thread, _thread->pending_exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    _thread->clear_pending_exception(); // Needed to avoid infinite recursion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    if (is_init_completed()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
      exception->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      fatal("ExceptionMark destructor expects no pending exceptions");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
      vm_exit_during_initialization(exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
// ----------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
// caller frees value_string if necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
void Exceptions::debug_check_abort(const char *value_string) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  if (AbortVMOnException != NULL && value_string != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
      strstr(value_string, AbortVMOnException)) {
5403
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 4571
diff changeset
   381
    fatal(err_msg("Saw %s, aborting", value_string));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
void Exceptions::debug_check_abort(Handle exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  if (AbortVMOnException != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    debug_check_abort(instanceKlass::cast(exception()->klass())->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
#endif