annotate src/share/vm/oops/oopsHierarchy.hpp @ 1091:6aa7255741f3

6906727: UseCompressedOops: some card-marking fixes related to object arrays Summary: Introduced a new write_ref_array(HeapWords* start, size_t count) method that does the requisite MemRegion range calculation so (some of the) clients of the erstwhile write_ref_array(MemRegion mr) do not need to worry. This removed all external uses of array_size(), which was also simplified and made private. Asserts were added to catch other possible issues. Further, less essential, fixes stemming from this investigation are deferred to CR 6904516 (to follow shortly in hs17). Reviewed-by: kvn, coleenp, jmasa
author ysr
date Thu, 03 Dec 2009 15:01:57 -0800
parents df6caf649ff7
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
579
0fbdb4381b99 6814575: Update copyright year
xdono
parents: 513
diff changeset
2 * Copyright 1997-2009 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // OBJECT hierarchy
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // This hierarchy is a representation hierarchy, i.e. if A is a superclass
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // of B, A's representation is a prefix of B's representation.
a61af66fc99e Initial load
duke
parents:
diff changeset
28
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
29 typedef juint narrowOop; // Offset instead of address for an oop within a java object
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
30 typedef class klassOopDesc* wideKlassOop; // to keep SA happy and unhandled oop
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
31 // detector happy.
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 579
diff changeset
32 typedef void* OopOrNarrowOopStar;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
33
0
a61af66fc99e Initial load
duke
parents:
diff changeset
34 #ifndef CHECK_UNHANDLED_OOPS
a61af66fc99e Initial load
duke
parents:
diff changeset
35
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
36 typedef class oopDesc* oop;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
37 typedef class instanceOopDesc* instanceOop;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
38 typedef class methodOopDesc* methodOop;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
39 typedef class constMethodOopDesc* constMethodOop;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
40 typedef class methodDataOopDesc* methodDataOop;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
41 typedef class arrayOopDesc* arrayOop;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
42 typedef class objArrayOopDesc* objArrayOop;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
43 typedef class typeArrayOopDesc* typeArrayOop;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
44 typedef class constantPoolOopDesc* constantPoolOop;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
45 typedef class constantPoolCacheOopDesc* constantPoolCacheOop;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
46 typedef class symbolOopDesc* symbolOop;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
47 typedef class klassOopDesc* klassOop;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
48 typedef class markOopDesc* markOop;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 typedef class compiledICHolderOopDesc* compiledICHolderOop;
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // When CHECK_UNHANDLED_OOPS is defined, an "oop" is a class with a
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // carefully chosen set of constructors and conversion operators to go
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // to and from the underlying oopDesc pointer type.
a61af66fc99e Initial load
duke
parents:
diff changeset
57 //
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // Because oop and its subclasses <type>Oop are class types, arbitrary
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // conversions are not accepted by the compiler, and you may get a message
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // about overloading ambiguity (between long and int is common when converting
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // from a constant in 64 bit mode), or unable to convert from type to 'oop'.
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // Applying a cast to one of these conversion operators first will get to the
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // underlying oopDesc* type if appropriate.
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // Converting NULL to oop to Handle implicit is no longer accepted by the
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // compiler because there are too many steps in the conversion. Use Handle()
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // instead, which generates less code anyway.
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 class Thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 typedef class markOopDesc* markOop;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 class PromotedObject;
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 class oop {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 oopDesc* _o;
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 void register_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
77 void unregister_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // friend class markOop;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
81 void set_obj(const void* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 raw_set_obj(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 if (CheckUnhandledOops) register_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 void raw_set_obj(const void* p) { _o = (oopDesc*)p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 oop() { set_obj(NULL); }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 oop(const volatile oop& o) { set_obj(o.obj()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 oop(const void* p) { set_obj(p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 oop(intptr_t i) { set_obj((void *)i); }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
92 oop(int i) { set_obj((void *)i); }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
94 ~oop() {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 if (CheckUnhandledOops) unregister_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 oopDesc* obj() const volatile { return _o; }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // General access
a61af66fc99e Initial load
duke
parents:
diff changeset
101 oopDesc* operator->() const { return obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 bool operator==(const oop o) const { return obj() == o.obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
103 bool operator==(void *p) const { return obj() == p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 bool operator!=(const oop o) const { return obj() != o.obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 bool operator!=(void *p) const { return obj() != p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 bool operator==(intptr_t p) const { return obj() == (oopDesc*)p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 bool operator!=(intptr_t p) const { return obj() != (oopDesc*)p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 bool operator<(oop o) const { return obj() < o.obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 bool operator>(oop o) const { return obj() > o.obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 bool operator<=(oop o) const { return obj() <= o.obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
112 bool operator>=(oop o) const { return obj() >= o.obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 bool operator!() const { return !obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Cast
a61af66fc99e Initial load
duke
parents:
diff changeset
116 operator void* () const { return (void *)obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
117 operator HeapWord* () const { return (HeapWord*)obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
118 operator oopDesc* () const { return obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 operator intptr_t* () const { return (intptr_t*)obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 operator PromotedObject* () const { return (PromotedObject*)obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 operator markOop () const { return markOop(obj()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 operator address () const { return (address)obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 operator intptr_t () const { return (intptr_t)obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // from javaCalls.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
127 operator jobject () const { return (jobject)obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // from javaClasses.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
129 operator JavaThread* () const { return (JavaThread*)obj(); }
513
2328d1d3f8cf 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 196
diff changeset
130
2328d1d3f8cf 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 196
diff changeset
131 #ifndef _LP64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // from jvm.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
133 operator jlong* () const { return (jlong*)obj(); }
513
2328d1d3f8cf 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 196
diff changeset
134 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // from parNewGeneration and other things that want to get to the end of
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // an oop for stuff (like constMethodKlass.cpp, objArrayKlass.cpp)
a61af66fc99e Initial load
duke
parents:
diff changeset
138 operator oop* () const { return (oop *)obj(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
139 };
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 #define DEF_OOP(type) \
a61af66fc99e Initial load
duke
parents:
diff changeset
142 class type##OopDesc; \
a61af66fc99e Initial load
duke
parents:
diff changeset
143 class type##Oop : public oop { \
a61af66fc99e Initial load
duke
parents:
diff changeset
144 public: \
a61af66fc99e Initial load
duke
parents:
diff changeset
145 type##Oop() : oop() {} \
a61af66fc99e Initial load
duke
parents:
diff changeset
146 type##Oop(const volatile oop& o) : oop(o) {} \
a61af66fc99e Initial load
duke
parents:
diff changeset
147 type##Oop(const void* p) : oop(p) {} \
a61af66fc99e Initial load
duke
parents:
diff changeset
148 operator type##OopDesc* () const { return (type##OopDesc*)obj(); } \
a61af66fc99e Initial load
duke
parents:
diff changeset
149 type##OopDesc* operator->() const { \
a61af66fc99e Initial load
duke
parents:
diff changeset
150 return (type##OopDesc*)obj(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
151 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }; \
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 DEF_OOP(instance);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 DEF_OOP(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 DEF_OOP(methodData);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 DEF_OOP(array);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 DEF_OOP(constMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 DEF_OOP(constantPool);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 DEF_OOP(constantPoolCache);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 DEF_OOP(objArray);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 DEF_OOP(typeArray);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 DEF_OOP(symbol);
a61af66fc99e Initial load
duke
parents:
diff changeset
164 DEF_OOP(klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 DEF_OOP(compiledICHolder);
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 #endif // CHECK_UNHANDLED_OOPS
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // The klass hierarchy is separate from the oop hierarchy.
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 class Klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 class instanceKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 class instanceRefKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 class methodKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 class constMethodKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 class methodDataKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
177 class klassKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 class instanceKlassKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
179 class arrayKlassKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 class objArrayKlassKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 class typeArrayKlassKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 class arrayKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 class objArrayKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 class typeArrayKlass;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
185 class constantPoolKlass;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
186 class constantPoolCacheKlass;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
187 class symbolKlass;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
188 class compiledICHolderKlass;