author | stefank |
Tue, 08 Feb 2011 12:33:19 +0100 | |
changeset 8297 | f05d10c1c4b8 |
parent 8296 | b1c2163e4e59 |
child 8725 | 8c1e3dd5fe1b |
permissions | -rw-r--r-- |
1 | 1 |
/* |
8297 | 2 |
* Copyright (c) 1997, 2011, 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:
4493
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4493
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:
4493
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OOPS_OOP_HPP |
26 |
#define SHARE_VM_OOPS_OOP_HPP |
|
27 |
||
28 |
#include "memory/iterator.hpp" |
|
29 |
#include "memory/memRegion.hpp" |
|
30 |
#include "memory/specialized_oop_closures.hpp" |
|
31 |
#include "utilities/top.hpp" |
|
32 |
||
1 | 33 |
// oopDesc is the top baseclass for objects classes. The {name}Desc classes describe |
34 |
// the format of Java objects so the fields can be accessed from C++. |
|
35 |
// oopDesc is abstract. |
|
36 |
// (see oopHierarchy for complete oop class hierarchy) |
|
37 |
// |
|
38 |
// no virtual functions allowed |
|
39 |
||
40 |
// store into oop with store check |
|
7397 | 41 |
template <class T> void oop_store(T* p, oop v); |
42 |
template <class T> void oop_store(volatile T* p, oop v); |
|
1 | 43 |
|
44 |
// store into oop without store check |
|
7397 | 45 |
template <class T> void oop_store_without_check(T* p, oop v); |
46 |
template <class T> void oop_store_without_check(volatile T* p, oop v); |
|
1 | 47 |
|
48 |
extern bool always_do_update_barrier; |
|
49 |
||
50 |
// Forward declarations. |
|
51 |
class OopClosure; |
|
52 |
class ScanClosure; |
|
53 |
class FastScanClosure; |
|
54 |
class FilteringClosure; |
|
55 |
class BarrierSet; |
|
56 |
class CMSIsAliveClosure; |
|
57 |
||
58 |
class PSPromotionManager; |
|
59 |
class ParCompactionManager; |
|
60 |
||
61 |
class oopDesc { |
|
62 |
friend class VMStructs; |
|
63 |
private: |
|
64 |
volatile markOop _mark; |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
65 |
union _metadata { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
66 |
wideKlassOop _klass; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
67 |
narrowOop _compressed_klass; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
68 |
} _metadata; |
1 | 69 |
|
70 |
// Fast access to barrier set. Must be initialized. |
|
71 |
static BarrierSet* _bs; |
|
72 |
||
73 |
public: |
|
8296
b1c2163e4e59
6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents:
8076
diff
changeset
|
74 |
enum ConcSafeType { |
b1c2163e4e59
6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents:
8076
diff
changeset
|
75 |
IsUnsafeConc = false, |
b1c2163e4e59
6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents:
8076
diff
changeset
|
76 |
IsSafeConc = true |
b1c2163e4e59
6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents:
8076
diff
changeset
|
77 |
}; |
b1c2163e4e59
6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents:
8076
diff
changeset
|
78 |
|
1 | 79 |
markOop mark() const { return _mark; } |
80 |
markOop* mark_addr() const { return (markOop*) &_mark; } |
|
81 |
||
82 |
void set_mark(volatile markOop m) { _mark = m; } |
|
83 |
||
84 |
void release_set_mark(markOop m); |
|
85 |
markOop cas_set_mark(markOop new_mark, markOop old_mark); |
|
86 |
||
87 |
// Used only to re-initialize the mark word (e.g., of promoted |
|
88 |
// objects during a GC) -- requires a valid klass pointer |
|
89 |
void init_mark(); |
|
90 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
91 |
klassOop klass() const; |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
92 |
klassOop klass_or_null() const volatile; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
93 |
oop* klass_addr(); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
94 |
narrowOop* compressed_klass_addr(); |
1 | 95 |
|
96 |
void set_klass(klassOop k); |
|
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
97 |
|
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
98 |
// For klass field compression |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
99 |
int klass_gap() const; |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
100 |
void set_klass_gap(int z); |
1 | 101 |
// For when the klass pointer is being used as a linked list "next" field. |
102 |
void set_klass_to_list_ptr(oop k); |
|
103 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
104 |
// size of object header, aligned to platform wordSize |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
105 |
static int header_size() { return sizeof(oopDesc)/HeapWordSize; } |
1 | 106 |
|
107 |
Klass* blueprint() const; |
|
108 |
||
109 |
// Returns whether this is an instance of k or an instance of a subclass of k |
|
110 |
bool is_a(klassOop k) const; |
|
111 |
||
112 |
// Returns the actual oop size of the object |
|
113 |
int size(); |
|
114 |
||
115 |
// Sometimes (for complicated concurrency-related reasons), it is useful |
|
116 |
// to be able to figure out the size of an object knowing its klass. |
|
117 |
int size_given_klass(Klass* klass); |
|
118 |
||
119 |
// Some perm gen objects are not parseble immediately after |
|
120 |
// installation of their klass pointer. |
|
121 |
bool is_parsable(); |
|
122 |
||
1894
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1388
diff
changeset
|
123 |
// Some perm gen objects that have been allocated and initialized |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1388
diff
changeset
|
124 |
// can be changed by the VM when not at a safe point (class rededfinition |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1388
diff
changeset
|
125 |
// is an example). Such objects should not be examined by the |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1388
diff
changeset
|
126 |
// concurrent processing of a garbage collector if is_conc_safe() |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1388
diff
changeset
|
127 |
// returns false. |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1388
diff
changeset
|
128 |
bool is_conc_safe(); |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1388
diff
changeset
|
129 |
|
1 | 130 |
// type test operations (inlined in oop.inline.h) |
131 |
bool is_instance() const; |
|
132 |
bool is_instanceRef() const; |
|
133 |
bool is_array() const; |
|
134 |
bool is_objArray() const; |
|
135 |
bool is_klass() const; |
|
136 |
bool is_thread() const; |
|
137 |
bool is_method() const; |
|
138 |
bool is_constMethod() const; |
|
139 |
bool is_methodData() const; |
|
140 |
bool is_constantPool() const; |
|
141 |
bool is_constantPoolCache() const; |
|
142 |
bool is_typeArray() const; |
|
143 |
bool is_javaArray() const; |
|
144 |
bool is_compiledICHolder() const; |
|
145 |
||
146 |
private: |
|
147 |
// field addresses in oop |
|
148 |
void* field_base(int offset) const; |
|
149 |
||
150 |
jbyte* byte_field_addr(int offset) const; |
|
151 |
jchar* char_field_addr(int offset) const; |
|
152 |
jboolean* bool_field_addr(int offset) const; |
|
153 |
jint* int_field_addr(int offset) const; |
|
154 |
jshort* short_field_addr(int offset) const; |
|
155 |
jlong* long_field_addr(int offset) const; |
|
156 |
jfloat* float_field_addr(int offset) const; |
|
157 |
jdouble* double_field_addr(int offset) const; |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
158 |
address* address_field_addr(int offset) const; |
1 | 159 |
|
160 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
161 |
// Need this as public for garbage collection. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
162 |
template <class T> T* obj_field_addr(int offset) const; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
163 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
164 |
static bool is_null(oop obj); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
165 |
static bool is_null(narrowOop obj); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
166 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
167 |
// Decode an oop pointer from a narrowOop if compressed. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
168 |
// These are overloaded for oop and narrowOop as are the other functions |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
169 |
// below so that they can be called in template functions. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
170 |
static oop decode_heap_oop_not_null(oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
171 |
static oop decode_heap_oop_not_null(narrowOop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
172 |
static oop decode_heap_oop(oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
173 |
static oop decode_heap_oop(narrowOop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
174 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
175 |
// Encode an oop pointer to a narrow oop. The or_null versions accept |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
176 |
// null oop pointer, others do not in order to eliminate the |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
177 |
// null checking branches. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
178 |
static narrowOop encode_heap_oop_not_null(oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
179 |
static narrowOop encode_heap_oop(oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
180 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
181 |
// Load an oop out of the Java heap |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
182 |
static narrowOop load_heap_oop(narrowOop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
183 |
static oop load_heap_oop(oop* p); |
1 | 184 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
185 |
// Load an oop out of Java heap and decode it to an uncompressed oop. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
186 |
static oop load_decode_heap_oop_not_null(narrowOop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
187 |
static oop load_decode_heap_oop_not_null(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
188 |
static oop load_decode_heap_oop(narrowOop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
189 |
static oop load_decode_heap_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
190 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
191 |
// Store an oop into the heap. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
192 |
static void store_heap_oop(narrowOop* p, narrowOop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
193 |
static void store_heap_oop(oop* p, oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
194 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
195 |
// Encode oop if UseCompressedOops and store into the heap. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
196 |
static void encode_store_heap_oop_not_null(narrowOop* p, oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
197 |
static void encode_store_heap_oop_not_null(oop* p, oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
198 |
static void encode_store_heap_oop(narrowOop* p, oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
199 |
static void encode_store_heap_oop(oop* p, oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
200 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
201 |
static void release_store_heap_oop(volatile narrowOop* p, narrowOop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
202 |
static void release_store_heap_oop(volatile oop* p, oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
203 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
204 |
static void release_encode_store_heap_oop_not_null(volatile narrowOop* p, oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
205 |
static void release_encode_store_heap_oop_not_null(volatile oop* p, oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
206 |
static void release_encode_store_heap_oop(volatile narrowOop* p, oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
207 |
static void release_encode_store_heap_oop(volatile oop* p, oop v); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
208 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
209 |
static oop atomic_exchange_oop(oop exchange_value, volatile HeapWord *dest); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
210 |
static oop atomic_compare_exchange_oop(oop exchange_value, |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
211 |
volatile HeapWord *dest, |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
212 |
oop compare_value); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
213 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
214 |
// Access to fields in a instanceOop through these methods. |
1 | 215 |
oop obj_field(int offset) const; |
216 |
void obj_field_put(int offset, oop value); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
217 |
void obj_field_raw_put(int offset, oop value); |
1 | 218 |
|
219 |
jbyte byte_field(int offset) const; |
|
220 |
void byte_field_put(int offset, jbyte contents); |
|
221 |
||
222 |
jchar char_field(int offset) const; |
|
223 |
void char_field_put(int offset, jchar contents); |
|
224 |
||
225 |
jboolean bool_field(int offset) const; |
|
226 |
void bool_field_put(int offset, jboolean contents); |
|
227 |
||
228 |
jint int_field(int offset) const; |
|
229 |
void int_field_put(int offset, jint contents); |
|
230 |
||
231 |
jshort short_field(int offset) const; |
|
232 |
void short_field_put(int offset, jshort contents); |
|
233 |
||
234 |
jlong long_field(int offset) const; |
|
235 |
void long_field_put(int offset, jlong contents); |
|
236 |
||
237 |
jfloat float_field(int offset) const; |
|
238 |
void float_field_put(int offset, jfloat contents); |
|
239 |
||
240 |
jdouble double_field(int offset) const; |
|
241 |
void double_field_put(int offset, jdouble contents); |
|
242 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
243 |
address address_field(int offset) const; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
244 |
void address_field_put(int offset, address contents); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
245 |
|
1 | 246 |
oop obj_field_acquire(int offset) const; |
247 |
void release_obj_field_put(int offset, oop value); |
|
248 |
||
249 |
jbyte byte_field_acquire(int offset) const; |
|
250 |
void release_byte_field_put(int offset, jbyte contents); |
|
251 |
||
252 |
jchar char_field_acquire(int offset) const; |
|
253 |
void release_char_field_put(int offset, jchar contents); |
|
254 |
||
255 |
jboolean bool_field_acquire(int offset) const; |
|
256 |
void release_bool_field_put(int offset, jboolean contents); |
|
257 |
||
258 |
jint int_field_acquire(int offset) const; |
|
259 |
void release_int_field_put(int offset, jint contents); |
|
260 |
||
261 |
jshort short_field_acquire(int offset) const; |
|
262 |
void release_short_field_put(int offset, jshort contents); |
|
263 |
||
264 |
jlong long_field_acquire(int offset) const; |
|
265 |
void release_long_field_put(int offset, jlong contents); |
|
266 |
||
267 |
jfloat float_field_acquire(int offset) const; |
|
268 |
void release_float_field_put(int offset, jfloat contents); |
|
269 |
||
270 |
jdouble double_field_acquire(int offset) const; |
|
271 |
void release_double_field_put(int offset, jdouble contents); |
|
272 |
||
2534 | 273 |
address address_field_acquire(int offset) const; |
274 |
void release_address_field_put(int offset, address contents); |
|
275 |
||
1 | 276 |
// printing functions for VM debugging |
277 |
void print_on(outputStream* st) const; // First level print |
|
278 |
void print_value_on(outputStream* st) const; // Second level print. |
|
279 |
void print_address_on(outputStream* st) const; // Address printing |
|
280 |
||
281 |
// printing on default output stream |
|
282 |
void print(); |
|
283 |
void print_value(); |
|
284 |
void print_address(); |
|
285 |
||
286 |
// return the print strings |
|
287 |
char* print_string(); |
|
288 |
char* print_value_string(); |
|
289 |
||
290 |
// verification operations |
|
291 |
void verify_on(outputStream* st); |
|
292 |
void verify(); |
|
293 |
void verify_old_oop(oop* p, bool allow_dirty); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
294 |
void verify_old_oop(narrowOop* p, bool allow_dirty); |
1 | 295 |
|
296 |
// tells whether this oop is partially constructed (gc during class loading) |
|
297 |
bool partially_loaded(); |
|
298 |
void set_partially_loaded(); |
|
299 |
||
300 |
// locking operations |
|
301 |
bool is_locked() const; |
|
302 |
bool is_unlocked() const; |
|
303 |
bool has_bias_pattern() const; |
|
304 |
||
305 |
// asserts |
|
306 |
bool is_oop(bool ignore_mark_word = false) const; |
|
307 |
bool is_oop_or_null(bool ignore_mark_word = false) const; |
|
308 |
#ifndef PRODUCT |
|
309 |
bool is_unlocked_oop() const; |
|
310 |
#endif |
|
311 |
||
312 |
// garbage collection |
|
313 |
bool is_gc_marked() const; |
|
314 |
// Apply "MarkSweep::mark_and_push" to (the address of) every non-NULL |
|
315 |
// reference field in "this". |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
316 |
void follow_contents(void); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
317 |
void follow_header(void); |
1 | 318 |
|
319 |
#ifndef SERIALGC |
|
320 |
// Parallel Scavenge |
|
321 |
void push_contents(PSPromotionManager* pm); |
|
322 |
||
323 |
// Parallel Old |
|
324 |
void update_contents(ParCompactionManager* cm); |
|
325 |
||
326 |
void follow_contents(ParCompactionManager* cm); |
|
327 |
void follow_header(ParCompactionManager* cm); |
|
328 |
#endif // SERIALGC |
|
329 |
||
330 |
bool is_perm() const; |
|
331 |
bool is_perm_or_null() const; |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2534
diff
changeset
|
332 |
bool is_scavengable() const; |
1 | 333 |
bool is_shared() const; |
334 |
bool is_shared_readonly() const; |
|
335 |
bool is_shared_readwrite() const; |
|
336 |
||
337 |
// Forward pointer operations for scavenge |
|
338 |
bool is_forwarded() const; |
|
339 |
||
340 |
void forward_to(oop p); |
|
341 |
bool cas_forward_to(oop p, markOop compare); |
|
342 |
||
343 |
#ifndef SERIALGC |
|
344 |
// Like "forward_to", but inserts the forwarding pointer atomically. |
|
345 |
// Exactly one thread succeeds in inserting the forwarding pointer, and |
|
346 |
// this call returns "NULL" for that thread; any other thread has the |
|
347 |
// value of the forwarding pointer returned and does not modify "this". |
|
348 |
oop forward_to_atomic(oop p); |
|
349 |
#endif // SERIALGC |
|
350 |
||
351 |
oop forwardee() const; |
|
352 |
||
353 |
// Age of object during scavenge |
|
354 |
int age() const; |
|
355 |
void incr_age(); |
|
356 |
||
357 |
// Adjust all pointers in this object to point at it's forwarded location and |
|
358 |
// return the size of this oop. This is used by the MarkSweep collector. |
|
359 |
int adjust_pointers(); |
|
360 |
void adjust_header(); |
|
361 |
||
362 |
#ifndef SERIALGC |
|
363 |
// Parallel old |
|
364 |
void update_header(); |
|
365 |
#endif // SERIALGC |
|
366 |
||
367 |
// mark-sweep support |
|
368 |
void follow_body(int begin, int end); |
|
369 |
||
370 |
// Fast access to barrier set |
|
371 |
static BarrierSet* bs() { return _bs; } |
|
372 |
static void set_bs(BarrierSet* bs) { _bs = bs; } |
|
373 |
||
374 |
// iterators, returns size of object |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
375 |
#define OOP_ITERATE_DECL(OopClosureType, nv_suffix) \ |
1 | 376 |
int oop_iterate(OopClosureType* blk); \ |
377 |
int oop_iterate(OopClosureType* blk, MemRegion mr); // Only in mr. |
|
378 |
||
379 |
ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_ITERATE_DECL) |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
380 |
ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_ITERATE_DECL) |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
381 |
|
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
382 |
#ifndef SERIALGC |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
383 |
|
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
384 |
#define OOP_ITERATE_BACKWARDS_DECL(OopClosureType, nv_suffix) \ |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
385 |
int oop_iterate_backwards(OopClosureType* blk); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
386 |
|
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
387 |
ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_ITERATE_BACKWARDS_DECL) |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
388 |
ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_ITERATE_BACKWARDS_DECL) |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
389 |
#endif |
1 | 390 |
|
391 |
void oop_iterate_header(OopClosure* blk); |
|
392 |
void oop_iterate_header(OopClosure* blk, MemRegion mr); |
|
393 |
||
394 |
// identity hash; returns the identity hash key (computes it if necessary) |
|
395 |
// NOTE with the introduction of UseBiasedLocking that identity_hash() might reach a |
|
396 |
// safepoint if called on a biased object. Calling code must be aware of that. |
|
397 |
intptr_t identity_hash(); |
|
398 |
intptr_t slow_identity_hash(); |
|
399 |
||
400 |
// marks are forwarded to stack when object is locked |
|
401 |
bool has_displaced_mark() const; |
|
402 |
markOop displaced_mark() const; |
|
403 |
void set_displaced_mark(markOop m); |
|
404 |
||
405 |
// for code generation |
|
406 |
static int mark_offset_in_bytes() { return offset_of(oopDesc, _mark); } |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
407 |
static int klass_offset_in_bytes() { return offset_of(oopDesc, _metadata._klass); } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
408 |
static int klass_gap_offset_in_bytes(); |
1 | 409 |
}; |
7397 | 410 |
|
411 |
#endif // SHARE_VM_OOPS_OOP_HPP |