src/share/vm/c1/c1_Runtime1.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/c1/c1_Runtime1.cpp	Fri Jan  8 11:47:59 2016
--- new/src/share/vm/c1/c1_Runtime1.cpp	Fri Jan  8 11:47:58 2016

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 549,564 **** --- 549,563 ---- // debugging support // tracing if (log_is_enabled(Info, exceptions)) { ResourceMark rm; log_info(exceptions)("Exception <%s> (" INTPTR_FORMAT ") thrown in compiled method <%s> at PC " INTPTR_FORMAT ! " for thread " INTPTR_FORMAT, exception->print_value_string(), p2i((address)exception()), + stringStream tempst; + tempst.print("compiled method <%s>\n" ! " at PC" INTPTR_FORMAT " for thread " INTPTR_FORMAT, nm->method()->print_value_string(), p2i(pc), p2i(thread)); + Exceptions::log_exception(exception, tempst); } // for AbortVMOnException flag Exceptions::debug_check_abort(exception); // Clear out the exception oop and pc since looking up an

src/share/vm/c1/c1_Runtime1.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File