author | jiangli |
Wed, 06 Jun 2012 14:33:43 -0400 | |
changeset 12937 | 0032fb2caff6 |
parent 12379 | 2cf45b79ce3a |
child 13728 | 882756847a04 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
12379 | 2 |
* Copyright (c) 1997, 2012, 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 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/javaClasses.hpp" |
|
27 |
#include "oops/oop.inline.hpp" |
|
28 |
#include "runtime/handles.inline.hpp" |
|
29 |
#include "utilities/copy.hpp" |
|
30 |
#ifdef TARGET_OS_FAMILY_linux |
|
31 |
# include "thread_linux.inline.hpp" |
|
32 |
#endif |
|
33 |
#ifdef TARGET_OS_FAMILY_solaris |
|
34 |
# include "thread_solaris.inline.hpp" |
|
35 |
#endif |
|
36 |
#ifdef TARGET_OS_FAMILY_windows |
|
37 |
# include "thread_windows.inline.hpp" |
|
38 |
#endif |
|
10565 | 39 |
#ifdef TARGET_OS_FAMILY_bsd |
40 |
# include "thread_bsd.inline.hpp" |
|
41 |
#endif |
|
1 | 42 |
|
43 |
bool always_do_update_barrier = false; |
|
44 |
||
45 |
BarrierSet* oopDesc::_bs = NULL; |
|
46 |
||
47 |
void oopDesc::print_on(outputStream* st) const { |
|
48 |
if (this == NULL) { |
|
49 |
st->print_cr("NULL"); |
|
50 |
} else { |
|
51 |
blueprint()->oop_print_on(oop(this), st); |
|
52 |
} |
|
53 |
} |
|
54 |
||
55 |
void oopDesc::print_address_on(outputStream* st) const { |
|
56 |
if (PrintOopAddress) { |
|
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
670
diff
changeset
|
57 |
st->print("{"INTPTR_FORMAT"}", this); |
1 | 58 |
} |
59 |
} |
|
60 |
||
61 |
void oopDesc::print() { print_on(tty); } |
|
62 |
||
63 |
void oopDesc::print_address() { print_address_on(tty); } |
|
64 |
||
65 |
char* oopDesc::print_string() { |
|
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
66 |
stringStream st; |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
67 |
print_on(&st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
68 |
return st.as_string(); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
69 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
70 |
|
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
71 |
void oopDesc::print_value() { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
72 |
print_value_on(tty); |
1 | 73 |
} |
74 |
||
75 |
char* oopDesc::print_value_string() { |
|
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
76 |
char buf[100]; |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
77 |
stringStream st(buf, sizeof(buf)); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
78 |
print_value_on(&st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
79 |
return st.as_string(); |
1 | 80 |
} |
81 |
||
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
82 |
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
|
83 |
oop obj = oop(this); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
84 |
if (this == NULL) { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
85 |
st->print("NULL"); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
86 |
} 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
|
87 |
java_lang_String::print(obj, st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
88 |
if (PrintOopAddress) print_address_on(st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
89 |
#ifdef ASSERT |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
90 |
} 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
|
91 |
st->print("### BAD OOP %p ###", (address)obj); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
92 |
#endif //ASSERT |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
93 |
} else { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
94 |
blueprint()->oop_print_value_on(obj, st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
95 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
96 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
97 |
|
1 | 98 |
|
99 |
void oopDesc::verify_on(outputStream* st) { |
|
100 |
if (this != NULL) { |
|
101 |
blueprint()->oop_verify_on(this, st); |
|
102 |
} |
|
103 |
} |
|
104 |
||
105 |
||
106 |
void oopDesc::verify() { |
|
107 |
verify_on(tty); |
|
108 |
} |
|
109 |
||
110 |
bool oopDesc::partially_loaded() { |
|
111 |
return blueprint()->oop_partially_loaded(this); |
|
112 |
} |
|
113 |
||
114 |
||
115 |
void oopDesc::set_partially_loaded() { |
|
116 |
blueprint()->oop_set_partially_loaded(this); |
|
117 |
} |
|
118 |
||
119 |
||
120 |
intptr_t oopDesc::slow_identity_hash() { |
|
121 |
// slow case; we have to acquire the micro lock in order to locate the header |
|
122 |
ResetNoHandleMark rnm; // Might be called from LEAF/QUICK ENTRY |
|
123 |
HandleMark hm; |
|
124 |
Handle object((oop)this); |
|
125 |
assert(!is_shared_readonly(), "using identity hash on readonly object?"); |
|
126 |
return ObjectSynchronizer::identity_hash_value_for(object); |
|
127 |
} |
|
128 |
||
129 |
VerifyOopClosure VerifyOopClosure::verify_oop; |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
130 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
131 |
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
|
132 |
void VerifyOopClosure::do_oop(narrowOop* p) { VerifyOopClosure::do_oop_work(p); } |