author | bobv |
Tue, 03 Aug 2010 08:13:38 -0400 | |
changeset 6176 | 4d9030fe341f |
parent 5547 | f4b087cbb361 |
child 7397 | 5b173b4ca846 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4584
diff
changeset
|
2 |
* Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4584
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4584
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:
4584
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
25 |
# include "incls/_precompiled.incl" |
|
26 |
# include "incls/_oop.cpp.incl" |
|
27 |
||
28 |
bool always_do_update_barrier = false; |
|
29 |
||
30 |
BarrierSet* oopDesc::_bs = NULL; |
|
31 |
||
32 |
void oopDesc::print_on(outputStream* st) const { |
|
33 |
if (this == NULL) { |
|
34 |
st->print_cr("NULL"); |
|
35 |
} else { |
|
36 |
blueprint()->oop_print_on(oop(this), st); |
|
37 |
} |
|
38 |
} |
|
39 |
||
40 |
void oopDesc::print_address_on(outputStream* st) const { |
|
41 |
if (PrintOopAddress) { |
|
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
670
diff
changeset
|
42 |
st->print("{"INTPTR_FORMAT"}", this); |
1 | 43 |
} |
44 |
} |
|
45 |
||
46 |
void oopDesc::print() { print_on(tty); } |
|
47 |
||
48 |
void oopDesc::print_address() { print_address_on(tty); } |
|
49 |
||
50 |
char* oopDesc::print_string() { |
|
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
51 |
stringStream st; |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
52 |
print_on(&st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
53 |
return st.as_string(); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
54 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
55 |
|
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
56 |
void oopDesc::print_value() { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
57 |
print_value_on(tty); |
1 | 58 |
} |
59 |
||
60 |
char* oopDesc::print_value_string() { |
|
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
61 |
char buf[100]; |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
62 |
stringStream st(buf, sizeof(buf)); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
63 |
print_value_on(&st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
64 |
return st.as_string(); |
1 | 65 |
} |
66 |
||
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
67 |
void oopDesc::print_value_on(outputStream* st) const { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
68 |
oop obj = oop(this); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
69 |
if (this == NULL) { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
70 |
st->print("NULL"); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
71 |
} else if (java_lang_String::is_instance(obj)) { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
72 |
java_lang_String::print(obj, st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
73 |
if (PrintOopAddress) print_address_on(st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
74 |
#ifdef ASSERT |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
75 |
} else if (!Universe::heap()->is_in(obj) || !Universe::heap()->is_in(klass())) { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
76 |
st->print("### BAD OOP %p ###", (address)obj); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
77 |
#endif //ASSERT |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
78 |
} else { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
79 |
blueprint()->oop_print_value_on(obj, st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
80 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
81 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
82 |
|
1 | 83 |
|
84 |
void oopDesc::verify_on(outputStream* st) { |
|
85 |
if (this != NULL) { |
|
86 |
blueprint()->oop_verify_on(this, st); |
|
87 |
} |
|
88 |
} |
|
89 |
||
90 |
||
91 |
void oopDesc::verify() { |
|
92 |
verify_on(tty); |
|
93 |
} |
|
94 |
||
95 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
96 |
// XXX verify_old_oop doesn't do anything (should we remove?) |
1 | 97 |
void oopDesc::verify_old_oop(oop* p, bool allow_dirty) { |
98 |
blueprint()->oop_verify_old_oop(this, p, allow_dirty); |
|
99 |
} |
|
100 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
101 |
void oopDesc::verify_old_oop(narrowOop* p, bool allow_dirty) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
102 |
blueprint()->oop_verify_old_oop(this, p, allow_dirty); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
103 |
} |
1 | 104 |
|
105 |
bool oopDesc::partially_loaded() { |
|
106 |
return blueprint()->oop_partially_loaded(this); |
|
107 |
} |
|
108 |
||
109 |
||
110 |
void oopDesc::set_partially_loaded() { |
|
111 |
blueprint()->oop_set_partially_loaded(this); |
|
112 |
} |
|
113 |
||
114 |
||
115 |
intptr_t oopDesc::slow_identity_hash() { |
|
116 |
// slow case; we have to acquire the micro lock in order to locate the header |
|
117 |
ResetNoHandleMark rnm; // Might be called from LEAF/QUICK ENTRY |
|
118 |
HandleMark hm; |
|
119 |
Handle object((oop)this); |
|
120 |
assert(!is_shared_readonly(), "using identity hash on readonly object?"); |
|
121 |
return ObjectSynchronizer::identity_hash_value_for(object); |
|
122 |
} |
|
123 |
||
124 |
VerifyOopClosure VerifyOopClosure::verify_oop; |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
125 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
126 |
void VerifyOopClosure::do_oop(oop* p) { VerifyOopClosure::do_oop_work(p); } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
127 |
void VerifyOopClosure::do_oop(narrowOop* p) { VerifyOopClosure::do_oop_work(p); } |