src/share/vm/oops/compiledICHolder.cpp

Fri, 16 Nov 2012 09:19:12 -0500

author
coleenp
date
Fri, 16 Nov 2012 09:19:12 -0500
changeset 4280
80e866b1d053
parent 4037
da91efe96a93
child 4295
59c790074993
permissions
-rw-r--r--

Merge

duke@435 1 /*
coleenp@4037 2 * Copyright (c) 1998, 2012, 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"
coleenp@4037 26 #include "oops/compiledICHolder.hpp"
coleenp@4037 27 #include "oops/klass.hpp"
coleenp@4037 28 #include "oops/method.hpp"
coleenp@4037 29 #include "oops/oop.inline2.hpp"
duke@435 30
coleenp@4037 31 volatile int CompiledICHolder::_live_count;
coleenp@4037 32 volatile int CompiledICHolder::_live_not_claimed_count;
coleenp@4037 33
coleenp@4037 34
coleenp@4037 35 // Printing
coleenp@4037 36
coleenp@4037 37 void CompiledICHolder::print_on(outputStream* st) const {
coleenp@4037 38 st->print("%s", internal_name());
coleenp@4037 39 st->print(" - method: "); holder_method()->print_value_on(st); st->cr();
coleenp@4037 40 st->print(" - klass: "); holder_klass()->print_value_on(st); st->cr();
coleenp@4037 41 }
coleenp@4037 42
coleenp@4037 43 void CompiledICHolder::print_value_on(outputStream* st) const {
coleenp@4037 44 st->print("%s", internal_name());
coleenp@4037 45 }
coleenp@4037 46
coleenp@4037 47
coleenp@4037 48 // Verification
coleenp@4037 49
coleenp@4037 50 void CompiledICHolder::verify_on(outputStream* st) {
coleenp@4037 51 guarantee(holder_method()->is_metadata(), "should be in permspace");
coleenp@4037 52 guarantee(holder_method()->is_method(), "should be method");
coleenp@4037 53 guarantee(holder_klass()->is_metadata(), "should be in permspace");
coleenp@4037 54 guarantee(holder_klass()->is_klass(), "should be klass");
coleenp@4037 55 }

mercurial