src/share/vm/utilities/exceptions.cpp

Wed, 02 Feb 2011 11:35:26 -0500

author
bobv
date
Wed, 02 Feb 2011 11:35:26 -0500
changeset 2508
b92c45f2bc75
parent 2497
3582bf76420e
child 2708
1d1603768966
permissions
-rw-r--r--

7016023: Enable building ARM and PPC from src/closed repository
Reviewed-by: dholmes, bdelsart

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

mercurial