author | stefank |
Mon, 01 Oct 2012 13:29:11 +0200 | |
changeset 13922 | ab7d352debe6 |
parent 13728 | 882756847a04 |
child 14583 | d70ee55535f4 |
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" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
26 |
#include "classfile/altHashing.hpp" |
7397 | 27 |
#include "classfile/javaClasses.hpp" |
28 |
#include "oops/oop.inline.hpp" |
|
29 |
#include "runtime/handles.inline.hpp" |
|
30 |
#include "utilities/copy.hpp" |
|
31 |
#ifdef TARGET_OS_FAMILY_linux |
|
32 |
# include "thread_linux.inline.hpp" |
|
33 |
#endif |
|
34 |
#ifdef TARGET_OS_FAMILY_solaris |
|
35 |
# include "thread_solaris.inline.hpp" |
|
36 |
#endif |
|
37 |
#ifdef TARGET_OS_FAMILY_windows |
|
38 |
# include "thread_windows.inline.hpp" |
|
39 |
#endif |
|
10565 | 40 |
#ifdef TARGET_OS_FAMILY_bsd |
41 |
# include "thread_bsd.inline.hpp" |
|
42 |
#endif |
|
1 | 43 |
|
44 |
bool always_do_update_barrier = false; |
|
45 |
||
46 |
BarrierSet* oopDesc::_bs = NULL; |
|
47 |
||
48 |
void oopDesc::print_on(outputStream* st) const { |
|
49 |
if (this == NULL) { |
|
50 |
st->print_cr("NULL"); |
|
51 |
} else { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
52 |
klass()->oop_print_on(oop(this), st); |
1 | 53 |
} |
54 |
} |
|
55 |
||
56 |
void oopDesc::print_address_on(outputStream* st) const { |
|
57 |
if (PrintOopAddress) { |
|
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
670
diff
changeset
|
58 |
st->print("{"INTPTR_FORMAT"}", this); |
1 | 59 |
} |
60 |
} |
|
61 |
||
62 |
void oopDesc::print() { print_on(tty); } |
|
63 |
||
64 |
void oopDesc::print_address() { print_address_on(tty); } |
|
65 |
||
66 |
char* oopDesc::print_string() { |
|
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
67 |
stringStream st; |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
68 |
print_on(&st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
69 |
return st.as_string(); |
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 |
|
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
72 |
void oopDesc::print_value() { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
73 |
print_value_on(tty); |
1 | 74 |
} |
75 |
||
76 |
char* oopDesc::print_value_string() { |
|
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
77 |
char buf[100]; |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
78 |
stringStream st(buf, sizeof(buf)); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
79 |
print_value_on(&st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
80 |
return st.as_string(); |
1 | 81 |
} |
82 |
||
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
83 |
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
|
84 |
oop obj = oop(this); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
85 |
if (this == NULL) { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
86 |
st->print("NULL"); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
87 |
} 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
|
88 |
java_lang_String::print(obj, st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
89 |
if (PrintOopAddress) print_address_on(st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
90 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
91 |
klass()->oop_print_value_on(obj, st); |
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
92 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
93 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
94 |
|
1 | 95 |
|
96 |
void oopDesc::verify_on(outputStream* st) { |
|
97 |
if (this != NULL) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
98 |
klass()->oop_verify_on(this, st); |
1 | 99 |
} |
100 |
} |
|
101 |
||
102 |
||
103 |
void oopDesc::verify() { |
|
104 |
verify_on(tty); |
|
105 |
} |
|
106 |
||
107 |
intptr_t oopDesc::slow_identity_hash() { |
|
108 |
// slow case; we have to acquire the micro lock in order to locate the header |
|
109 |
ResetNoHandleMark rnm; // Might be called from LEAF/QUICK ENTRY |
|
110 |
HandleMark hm; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
111 |
Handle object(this); |
1 | 112 |
return ObjectSynchronizer::identity_hash_value_for(object); |
113 |
} |
|
114 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
115 |
// When String table needs to rehash |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
116 |
unsigned int oopDesc::new_hash(jint seed) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
117 |
ResourceMark rm; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
118 |
int length; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
119 |
jchar* chars = java_lang_String::as_unicode_string(this, length); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
120 |
// Use alternate hashing algorithm on the string |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
121 |
return AltHashing::murmur3_32(seed, chars, length); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
122 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
123 |
|
1 | 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); } |