Path: blob/master/src/hotspot/share/ci/ciExceptionHandler.cpp
40931 views
/*1* Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#include "precompiled.hpp"25#include "ci/ciExceptionHandler.hpp"26#include "ci/ciUtilities.inline.hpp"27#include "runtime/handles.inline.hpp"2829// ciExceptionHandler30//31// This class represents an exception handler for a method.3233// ------------------------------------------------------------------34// ciExceptionHandler::catch_klass35//36// Get the exception klass that this handler catches.37ciInstanceKlass* ciExceptionHandler::catch_klass() {38VM_ENTRY_MARK;39assert(!is_catch_all(), "bad index");40if (_catch_klass == NULL) {41bool will_link;42assert(_loading_klass->get_instanceKlass()->is_linked(), "must be linked before accessing constant pool");43constantPoolHandle cpool(THREAD, _loading_klass->get_instanceKlass()->constants());44ciKlass* k = CURRENT_ENV->get_klass_by_index(cpool,45_catch_klass_index,46will_link,47_loading_klass);48if (!will_link && k->is_loaded()) {49GUARDED_VM_ENTRY(50k = CURRENT_ENV->get_unloaded_klass(_loading_klass, k->name());51)52}53_catch_klass = k->as_instance_klass();54}55return _catch_klass;56}5758// ------------------------------------------------------------------59// ciExceptionHandler::print()60void ciExceptionHandler::print() {61tty->print("<ciExceptionHandler start=%d limit=%d"62" handler_bci=%d ex_klass_index=%d",63start(), limit(), handler_bci(), catch_klass_index());64if (_catch_klass != NULL) {65tty->print(" ex_klass=");66_catch_klass->print();67}68tty->print(">");69}707172