annotate src/share/vm/ci/ciObject.cpp @ 3657:47edfca346ab

Fix a safepoint bug in code installer.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 17 Nov 2011 16:40:14 +0100
parents be4ca325525a
children 46f211fe010c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 989
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 989
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 989
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "ci/ciObject.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "ci/ciUtilities.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "gc_interface/collectedHeap.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "oops/oop.inline2.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // ciObject
a61af66fc99e Initial load
duke
parents:
diff changeset
32 //
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // This class represents an oop in the HotSpot virtual machine.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Its subclasses are structured in a hierarchy which mirrors
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // an aggregate of the VM's oop and klass hierarchies (see
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // oopHierarchy.hpp). Each instance of ciObject holds a handle
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // to a corresponding oop on the VM side and provides routines
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // for accessing the information in its oop. By using the ciObject
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // hierarchy for accessing oops in the VM, the compiler ensures
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // that it is safe with respect to garbage collection; that is,
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // GC and compilation can proceed independently without
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // interference.
a61af66fc99e Initial load
duke
parents:
diff changeset
43 //
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // Within the VM, the oop and klass hierarchies are separate.
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // The compiler interface does not preserve this separation --
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // the distinction between `klassOop' and `Klass' are not
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // reflected in the interface and instead the Klass hierarchy
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // is directly modeled as the subclasses of ciKlass.
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // ciObject::ciObject
a61af66fc99e Initial load
duke
parents:
diff changeset
52 ciObject::ciObject(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
53 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 if (ciObjectFactory::is_initialized()) {
2891
75a99b4f1c98 Rebranded C++ part from C1X to Graal.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2044
diff changeset
55 if (UseGraal) {
1478
5571b97fc1ec More JNI global handle clean ups.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1422
diff changeset
56 _handle = JNIHandles::make_global(o);
5571b97fc1ec More JNI global handle clean ups.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1422
diff changeset
57 _temp_global = true;
5571b97fc1ec More JNI global handle clean ups.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1422
diff changeset
58 } else {
5571b97fc1ec More JNI global handle clean ups.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1422
diff changeset
59 _handle = JNIHandles::make_local(o);
5571b97fc1ec More JNI global handle clean ups.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1422
diff changeset
60 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
61 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 _handle = JNIHandles::make_global(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 _klass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 _ident = 0;
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
66 init_flags_from(o);
1478
5571b97fc1ec More JNI global handle clean ups.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1422
diff changeset
67 _temp_global = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // ciObject::ciObject
a61af66fc99e Initial load
duke
parents:
diff changeset
72 //
a61af66fc99e Initial load
duke
parents:
diff changeset
73 ciObject::ciObject(Handle h) {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 if (ciObjectFactory::is_initialized()) {
3657
47edfca346ab Fix a safepoint bug in code installer.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 3464
diff changeset
76 _handle = JNIHandles::make_local(h());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 _handle = JNIHandles::make_global(h);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _klass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 _ident = 0;
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
82 init_flags_from(h());
1478
5571b97fc1ec More JNI global handle clean ups.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1422
diff changeset
83 _temp_global = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // ciObject::ciObject
a61af66fc99e Initial load
duke
parents:
diff changeset
88 //
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Unloaded klass/method variant. `klass' is the klass of the unloaded
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // klass/method, if that makes sense.
a61af66fc99e Initial load
duke
parents:
diff changeset
91 ciObject::ciObject(ciKlass* klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 assert(klass != NULL, "must supply klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
94 _handle = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 _klass = klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 _ident = 0;
1478
5571b97fc1ec More JNI global handle clean ups.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1422
diff changeset
97 _temp_global = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // ciObject::ciObject
a61af66fc99e Initial load
duke
parents:
diff changeset
102 //
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // NULL variant. Used only by ciNullObject.
a61af66fc99e Initial load
duke
parents:
diff changeset
104 ciObject::ciObject() {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 _handle = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 _klass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 _ident = 0;
1478
5571b97fc1ec More JNI global handle clean ups.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1422
diff changeset
109 _temp_global = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // ciObject::klass
a61af66fc99e Initial load
duke
parents:
diff changeset
114 //
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Get the ciKlass of this ciObject.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 ciKlass* ciObject::klass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 if (_klass == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 if (_handle == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // When both _klass and _handle are NULL, we are dealing
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // with the distinguished instance of ciNullObject.
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // No one should ask it for its klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 assert(is_null_object(), "must be null object");
a61af66fc99e Initial load
duke
parents:
diff changeset
123 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
124 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 GUARDED_VM_ENTRY(
a61af66fc99e Initial load
duke
parents:
diff changeset
128 oop o = get_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
129 _klass = CURRENT_ENV->get_object(o->klass())->as_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
130 );
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 return _klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // ciObject::set_ident
a61af66fc99e Initial load
duke
parents:
diff changeset
137 //
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // Set the unique identity number of a ciObject.
a61af66fc99e Initial load
duke
parents:
diff changeset
139 void ciObject::set_ident(uint id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 assert((_ident >> FLAG_BITS) == 0, "must only initialize once");
a61af66fc99e Initial load
duke
parents:
diff changeset
141 assert( id < ((uint)1 << (BitsPerInt-FLAG_BITS)), "id too big");
a61af66fc99e Initial load
duke
parents:
diff changeset
142 _ident = _ident + (id << FLAG_BITS);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // ciObject::ident
a61af66fc99e Initial load
duke
parents:
diff changeset
147 //
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // Report the unique identity number of a ciObject.
a61af66fc99e Initial load
duke
parents:
diff changeset
149 uint ciObject::ident() {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 uint id = _ident >> FLAG_BITS;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 assert(id != 0, "must be initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
152 return id;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // ciObject::equals
a61af66fc99e Initial load
duke
parents:
diff changeset
157 //
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // Are two ciObjects equal?
a61af66fc99e Initial load
duke
parents:
diff changeset
159 bool ciObject::equals(ciObject* obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 return (this == obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // ciObject::hash
a61af66fc99e Initial load
duke
parents:
diff changeset
165 //
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // A hash value for the convenience of compilers.
a61af66fc99e Initial load
duke
parents:
diff changeset
167 //
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // Implementation note: we use the address of the ciObject as the
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // basis for the hash. Use the _ident field, which is well-behaved.
a61af66fc99e Initial load
duke
parents:
diff changeset
170 int ciObject::hash() {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 return ident() * 31;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // ------------------------------------------------------------------
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
175 // ciObject::constant_encoding
0
a61af66fc99e Initial load
duke
parents:
diff changeset
176 //
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // The address which the compiler should embed into the
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // generated code to represent this oop. This address
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // is not the true address of the oop -- it will get patched
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // during nmethod creation.
a61af66fc99e Initial load
duke
parents:
diff changeset
181 //
a61af66fc99e Initial load
duke
parents:
diff changeset
182 //
a61af66fc99e Initial load
duke
parents:
diff changeset
183 //
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // Implementation note: we use the handle as the encoding. The
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // nmethod constructor resolves the handle and patches in the oop.
a61af66fc99e Initial load
duke
parents:
diff changeset
186 //
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // This method should be changed to return an generified address
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // to discourage use of the JNI handle.
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
189 jobject ciObject::constant_encoding() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
190 assert(is_null_object() || handle() != NULL, "cannot embed null pointer");
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
191 assert(can_be_constant(), "oop must be NULL or perm");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
192 return handle();
a61af66fc99e Initial load
duke
parents:
diff changeset
193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // ------------------------------------------------------------------
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
196 // ciObject::can_be_constant
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
197 bool ciObject::can_be_constant() {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
198 if (ScavengeRootsInCode >= 1) return true; // now everybody can encode as a constant
3402
28a9fe9534ea 7048030: is_scavengable changes causing compiler to embed more constants
kvn
parents: 3283
diff changeset
199 return handle() == NULL || is_perm();
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
200 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
201
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
202 // ------------------------------------------------------------------
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
203 // ciObject::should_be_constant()
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
204 bool ciObject::should_be_constant() {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
205 if (ScavengeRootsInCode >= 2) return true; // force everybody to be a constant
3283
01fd6090fdd8 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 1972
diff changeset
206 if (!JavaObjectsInPerm && !is_null_object()) {
01fd6090fdd8 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 1972
diff changeset
207 // We want Strings and Classes to be embeddable by default since
01fd6090fdd8 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 1972
diff changeset
208 // they used to be in the perm world. Not all Strings used to be
01fd6090fdd8 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 1972
diff changeset
209 // embeddable but there's no easy way to distinguish the interned
01fd6090fdd8 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 1972
diff changeset
210 // from the regulars ones so just treat them all that way.
01fd6090fdd8 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 1972
diff changeset
211 ciEnv* env = CURRENT_ENV;
01fd6090fdd8 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 1972
diff changeset
212 if (klass() == env->String_klass() || klass() == env->Class_klass()) {
01fd6090fdd8 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 1972
diff changeset
213 return true;
01fd6090fdd8 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 1972
diff changeset
214 }
01fd6090fdd8 7032162: assert(flat != TypePtr::BOTTOM) failed: cannot alias-analyze an untyped ptr
never
parents: 1972
diff changeset
215 }
3402
28a9fe9534ea 7048030: is_scavengable changes causing compiler to embed more constants
kvn
parents: 3283
diff changeset
216 return handle() == NULL || is_perm();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // ciObject::print
a61af66fc99e Initial load
duke
parents:
diff changeset
222 //
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // Print debugging output about this ciObject.
a61af66fc99e Initial load
duke
parents:
diff changeset
224 //
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // Implementation note: dispatch to the virtual print_impl behavior
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // for this ciObject.
a61af66fc99e Initial load
duke
parents:
diff changeset
227 void ciObject::print(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 st->print("<%s", type_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
229 GUARDED_VM_ENTRY(print_impl(st);)
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
230 st->print(" ident=%d %s%s address=0x%x>", ident(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
231 is_perm() ? "PERM" : "",
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
232 is_scavengable() ? "SCAVENGABLE" : "",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
233 (address)this);
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // ciObject::print_oop
a61af66fc99e Initial load
duke
parents:
diff changeset
238 //
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // Print debugging output about the oop this ciObject represents.
a61af66fc99e Initial load
duke
parents:
diff changeset
240 void ciObject::print_oop(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
241 if (is_null_object()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 st->print_cr("NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
243 } else if (!is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 st->print_cr("UNLOADED");
a61af66fc99e Initial load
duke
parents:
diff changeset
245 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 GUARDED_VM_ENTRY(get_oop()->print_on(st);)
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248 }