Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/ci/ciExceptionHandler.cpp
32285 views
/*1* Copyright (c) 1999, 2010, 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.hpp"2728// ciExceptionHandler29//30// This class represents an exception handler for a method.3132// ------------------------------------------------------------------33// ciExceptionHandler::catch_klass34//35// Get the exception klass that this handler catches.36ciInstanceKlass* ciExceptionHandler::catch_klass() {37VM_ENTRY_MARK;38assert(!is_catch_all(), "bad index");39if (_catch_klass == NULL) {40bool will_link;41assert(_loading_klass->get_instanceKlass()->is_linked(), "must be linked before accessing constant pool");42constantPoolHandle cpool(_loading_klass->get_instanceKlass()->constants());43ciKlass* k = CURRENT_ENV->get_klass_by_index(cpool,44_catch_klass_index,45will_link,46_loading_klass);47if (!will_link && k->is_loaded()) {48GUARDED_VM_ENTRY(49k = CURRENT_ENV->get_unloaded_klass(_loading_klass, k->name());50)51}52_catch_klass = k->as_instance_klass();53}54return _catch_klass;55}5657// ------------------------------------------------------------------58// ciExceptionHandler::print()59void ciExceptionHandler::print() {60tty->print("<ciExceptionHandler start=%d limit=%d"61" handler_bci=%d ex_klass_index=%d",62start(), limit(), handler_bci(), catch_klass_index());63if (_catch_klass != NULL) {64tty->print(" ex_klass=");65_catch_klass->print();66}67tty->print(">");68}697071