src/share/vm/oops/markOop.cpp

Tue, 17 Oct 2017 12:58:25 +0800

author
aoqi
date
Tue, 17 Oct 2017 12:58:25 +0800
changeset 7994
04ff2f6cd0eb
parent 7605
6e8e0bf87bbe
parent 6876
710a3c8b516e
child 9448
73d689add964
permissions
-rw-r--r--

merge

aoqi@0 1 /*
drchase@7605 2 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #include "precompiled.hpp"
aoqi@0 26 #include "oops/markOop.hpp"
aoqi@0 27 #include "runtime/thread.inline.hpp"
drchase@7605 28 #include "runtime/objectMonitor.inline.hpp"
aoqi@0 29
aoqi@0 30 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
aoqi@0 31
aoqi@0 32 void markOopDesc::print_on(outputStream* st) const {
drchase@7605 33 if (is_marked()) {
drchase@7605 34 st->print(" marked(" INTPTR_FORMAT ")", value());
drchase@7605 35 } else if (is_locked()) {
drchase@7605 36 st->print(" locked(" INTPTR_FORMAT ")->", value());
drchase@7605 37 if (is_neutral()) {
drchase@7605 38 st->print("is_neutral");
drchase@7605 39 if (has_no_hash()) st->print(" no_hash");
drchase@7605 40 else st->print(" hash=" INTPTR_FORMAT, hash());
drchase@7605 41 st->print(" age=%d", age());
drchase@7605 42 } else if (has_bias_pattern()) {
drchase@7605 43 st->print("is_biased");
drchase@7605 44 JavaThread* jt = biased_locker();
drchase@7605 45 st->print(" biased_locker=" INTPTR_FORMAT, p2i(jt));
drchase@7605 46 } else if (has_monitor()) {
drchase@7605 47 ObjectMonitor* mon = monitor();
drchase@7605 48 if (mon == NULL)
drchase@7605 49 st->print("monitor=NULL");
drchase@7605 50 else {
drchase@7605 51 BasicLock * bl = (BasicLock *) mon->owner();
drchase@7605 52 st->print("monitor={count="INTPTR_FORMAT",waiters="INTPTR_FORMAT",recursions="INTPTR_FORMAT",owner="INTPTR_FORMAT"}",
drchase@7605 53 mon->count(), mon->waiters(), mon->recursions(), p2i(bl));
drchase@7605 54 }
drchase@7605 55 } else {
drchase@7605 56 st->print("??");
drchase@7605 57 }
aoqi@0 58 } else {
aoqi@0 59 assert(is_unlocked() || has_bias_pattern(), "just checking");
aoqi@0 60 st->print("mark(");
drchase@7605 61 if (has_bias_pattern()) st->print("biased,");
aoqi@0 62 st->print("hash %#lx,", hash());
aoqi@0 63 st->print("age %d)", age());
aoqi@0 64 }
aoqi@0 65 }

mercurial