src/hotspot/share/ci/ciObject.cpp
author stefank
Thu, 14 Mar 2019 09:08:17 +0100
changeset 54120 677cede5608e
parent 49452 acb36277a784
permissions -rw-r--r--
8220411: Remove ScavengeRootsInCode=0 code Reviewed-by: thartmann, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49192
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
     2
 * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3908
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3908
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3908
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "ci/ciObject.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49192
diff changeset
    27
#include "ci/ciUtilities.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29081
diff changeset
    28
#include "gc/shared/collectedHeap.inline.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
    29
#include "oops/oop.inline.hpp"
49192
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
    30
#include "runtime/jniHandles.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// ciObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// This class represents an oop in the HotSpot virtual machine.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Its subclasses are structured in a hierarchy which mirrors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// an aggregate of the VM's oop and klass hierarchies (see
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// oopHierarchy.hpp).  Each instance of ciObject holds a handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// to a corresponding oop on the VM side and provides routines
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// for accessing the information in its oop.  By using the ciObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// hierarchy for accessing oops in the VM, the compiler ensures
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// that it is safe with respect to garbage collection; that is,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// GC and compilation can proceed independently without
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// interference.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// Within the VM, the oop and klass hierarchies are separate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// The compiler interface does not preserve this separation --
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
    47
// the distinction between `Klass*' and `Klass' are not
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// reflected in the interface and instead the Klass hierarchy
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// is directly modeled as the subclasses of ciKlass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// ciObject::ciObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
ciObject::ciObject(oop o) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  if (ciObjectFactory::is_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    _handle = JNIHandles::make_local(o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  } else {
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 30764
diff changeset
    58
    Handle obj(Thread::current(), o);
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 30764
diff changeset
    59
    _handle = JNIHandles::make_global(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  _klass = NULL;
54120
677cede5608e 8220411: Remove ScavengeRootsInCode=0 code
stefank
parents: 49452
diff changeset
    62
  assert(oopDesc::is_oop_or_null(o), "Checking");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// ciObject::ciObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
ciObject::ciObject(Handle h) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  if (ciObjectFactory::is_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    _handle = JNIHandles::make_local(h());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    _handle = JNIHandles::make_global(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  _klass = NULL;
54120
677cede5608e 8220411: Remove ScavengeRootsInCode=0 code
stefank
parents: 49452
diff changeset
    76
  assert(oopDesc::is_oop_or_null(h()), "Checking");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// ciObject::ciObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// Unloaded klass/method variant.  `klass' is the klass of the unloaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
// klass/method, if that makes sense.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
ciObject::ciObject(ciKlass* klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  assert(klass != NULL, "must supply klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  _handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  _klass = klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// ciObject::ciObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// NULL variant.  Used only by ciNullObject.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
ciObject::ciObject() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  _handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  _klass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// ------------------------------------------------------------------
49192
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
   102
// ciObject::get_oop
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
   103
//
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
   104
// Get the oop of this ciObject.
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
   105
oop ciObject::get_oop() const {
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
   106
  return JNIHandles::resolve_non_null(_handle);
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
   107
}
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
   108
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
   109
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
// ciObject::klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
// Get the ciKlass of this ciObject.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
ciKlass* ciObject::klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  if (_klass == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    if (_handle == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      // When both _klass and _handle are NULL, we are dealing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      // with the distinguished instance of ciNullObject.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      // No one should ask it for its klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
      assert(is_null_object(), "must be null object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    GUARDED_VM_ENTRY(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      oop o = get_oop();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   126
      _klass = CURRENT_ENV->get_klass(o->klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  return _klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// ciObject::equals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
// Are two ciObjects equal?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
bool ciObject::equals(ciObject* obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  return (this == obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
// ciObject::hash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
// A hash value for the convenience of compilers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// Implementation note: we use the address of the ciObject as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// basis for the hash.  Use the _ident field, which is well-behaved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
int ciObject::hash() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  return ident() * 31;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
// ------------------------------------------------------------------
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   152
// ciObject::constant_encoding
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
// The address which the compiler should embed into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
// generated code to represent this oop.  This address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
// is not the true address of the oop -- it will get patched
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
// during nmethod creation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
// Implementation note: we use the handle as the encoding.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// nmethod constructor resolves the handle and patches in the oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// This method should be changed to return an generified address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// to discourage use of the JNI handle.
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   166
jobject ciObject::constant_encoding() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  assert(is_null_object() || handle() != NULL, "cannot embed null pointer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  return handle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
// ------------------------------------------------------------------
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   172
// ciObject::should_be_constant()
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   173
bool ciObject::should_be_constant() {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   174
  if (ScavengeRootsInCode >= 2)  return true;  // force everybody to be a constant
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9959
diff changeset
   175
  if (is_null_object()) return true;
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9959
diff changeset
   176
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9959
diff changeset
   177
  ciEnv* env = CURRENT_ENV;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   178
9332
2c0eaca39eb4 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 7397
diff changeset
   179
    // We want Strings and Classes to be embeddable by default since
2c0eaca39eb4 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 7397
diff changeset
   180
    // they used to be in the perm world.  Not all Strings used to be
2c0eaca39eb4 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 7397
diff changeset
   181
    // embeddable but there's no easy way to distinguish the interned
2c0eaca39eb4 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 7397
diff changeset
   182
    // from the regulars ones so just treat them all that way.
2c0eaca39eb4 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 7397
diff changeset
   183
    if (klass() == env->String_klass() || klass() == env->Class_klass()) {
2c0eaca39eb4 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 7397
diff changeset
   184
      return true;
2c0eaca39eb4 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 7397
diff changeset
   185
    }
24322
c2978d1578e3 8036956: remove EnableInvokeDynamic flag
anoll
parents: 13728
diff changeset
   186
  if (klass()->is_subclass_of(env->MethodHandle_klass()) ||
c2978d1578e3 8036956: remove EnableInvokeDynamic flag
anoll
parents: 13728
diff changeset
   187
      klass()->is_subclass_of(env->CallSite_klass())) {
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9959
diff changeset
   188
    // We want to treat these aggressively.
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9959
diff changeset
   189
    return true;
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9959
diff changeset
   190
  }
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9959
diff changeset
   191
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   192
  return handle() == NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   195
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
// ciObject::print
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
// Print debugging output about this ciObject.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
// Implementation note: dispatch to the virtual print_impl behavior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
// for this ciObject.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
void ciObject::print(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  st->print("<%s", type_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  GUARDED_VM_ENTRY(print_impl(st);)
54120
677cede5608e 8220411: Remove ScavengeRootsInCode=0 code
stefank
parents: 49452
diff changeset
   205
  st->print(" ident=%d address=" INTPTR_FORMAT ">", ident(), p2i(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
// ciObject::print_oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
// Print debugging output about the oop this ciObject represents.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
void ciObject::print_oop(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  if (is_null_object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    st->print_cr("NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  } else if (!is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    st->print_cr("UNLOADED");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    GUARDED_VM_ENTRY(get_oop()->print_on(st);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}