src/share/vm/oops/oop.hpp

Thu, 15 Aug 2013 20:04:10 -0400

author
hseigel
date
Thu, 15 Aug 2013 20:04:10 -0400
changeset 5528
740e263c80c6
parent 4542
db9981fd3124
child 6169
ad72068ac41e
permissions
-rw-r--r--

8003424: Enable Class Data Sharing for CompressedOops
8016729: ObjectAlignmentInBytes=16 now forces the use of heap based compressed oops
8005933: The -Xshare:auto option is ignored for -server
Summary: Move klass metaspace above the heap and support CDS with compressed klass ptrs.
Reviewed-by: coleenp, kvn, mgerdin, tschatzl, stefank

duke@435 1 /*
hseigel@5528 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_OOPS_OOP_HPP
stefank@2314 26 #define SHARE_VM_OOPS_OOP_HPP
stefank@2314 27
stefank@2314 28 #include "memory/iterator.hpp"
stefank@2314 29 #include "memory/memRegion.hpp"
stefank@2314 30 #include "memory/specialized_oop_closures.hpp"
coleenp@4037 31 #include "oops/metadata.hpp"
jprovino@4542 32 #include "utilities/macros.hpp"
stefank@2314 33 #include "utilities/top.hpp"
stefank@2314 34
duke@435 35 // oopDesc is the top baseclass for objects classes. The {name}Desc classes describe
duke@435 36 // the format of Java objects so the fields can be accessed from C++.
duke@435 37 // oopDesc is abstract.
duke@435 38 // (see oopHierarchy for complete oop class hierarchy)
duke@435 39 //
duke@435 40 // no virtual functions allowed
duke@435 41
duke@435 42 // store into oop with store check
stefank@2314 43 template <class T> void oop_store(T* p, oop v);
stefank@2314 44 template <class T> void oop_store(volatile T* p, oop v);
duke@435 45
duke@435 46 extern bool always_do_update_barrier;
duke@435 47
duke@435 48 // Forward declarations.
duke@435 49 class OopClosure;
duke@435 50 class ScanClosure;
duke@435 51 class FastScanClosure;
duke@435 52 class FilteringClosure;
duke@435 53 class BarrierSet;
duke@435 54 class CMSIsAliveClosure;
duke@435 55
duke@435 56 class PSPromotionManager;
duke@435 57 class ParCompactionManager;
duke@435 58
duke@435 59 class oopDesc {
duke@435 60 friend class VMStructs;
duke@435 61 private:
duke@435 62 volatile markOop _mark;
coleenp@548 63 union _metadata {
coleenp@4037 64 Klass* _klass;
hseigel@5528 65 narrowKlass _compressed_klass;
coleenp@548 66 } _metadata;
duke@435 67
duke@435 68 // Fast access to barrier set. Must be initialized.
duke@435 69 static BarrierSet* _bs;
duke@435 70
duke@435 71 public:
duke@435 72 markOop mark() const { return _mark; }
duke@435 73 markOop* mark_addr() const { return (markOop*) &_mark; }
duke@435 74
duke@435 75 void set_mark(volatile markOop m) { _mark = m; }
duke@435 76
duke@435 77 void release_set_mark(markOop m);
duke@435 78 markOop cas_set_mark(markOop new_mark, markOop old_mark);
duke@435 79
duke@435 80 // Used only to re-initialize the mark word (e.g., of promoted
duke@435 81 // objects during a GC) -- requires a valid klass pointer
duke@435 82 void init_mark();
duke@435 83
coleenp@4037 84 Klass* klass() const;
coleenp@4037 85 Klass* klass_or_null() const volatile;
coleenp@4037 86 Klass** klass_addr();
hseigel@5528 87 narrowKlass* compressed_klass_addr();
duke@435 88
coleenp@4037 89 void set_klass(Klass* k);
coleenp@602 90
coleenp@602 91 // For klass field compression
coleenp@602 92 int klass_gap() const;
coleenp@602 93 void set_klass_gap(int z);
duke@435 94 // For when the klass pointer is being used as a linked list "next" field.
duke@435 95 void set_klass_to_list_ptr(oop k);
coleenp@4037 96 oop list_ptr_from_klass();
duke@435 97
coleenp@548 98 // size of object header, aligned to platform wordSize
coleenp@548 99 static int header_size() { return sizeof(oopDesc)/HeapWordSize; }
duke@435 100
duke@435 101 // Returns whether this is an instance of k or an instance of a subclass of k
coleenp@4037 102 bool is_a(Klass* k) const;
duke@435 103
duke@435 104 // Returns the actual oop size of the object
duke@435 105 int size();
duke@435 106
duke@435 107 // Sometimes (for complicated concurrency-related reasons), it is useful
duke@435 108 // to be able to figure out the size of an object knowing its klass.
duke@435 109 int size_given_klass(Klass* klass);
duke@435 110
duke@435 111 // type test operations (inlined in oop.inline.h)
duke@435 112 bool is_instance() const;
never@2658 113 bool is_instanceMirror() const;
duke@435 114 bool is_instanceRef() const;
duke@435 115 bool is_array() const;
duke@435 116 bool is_objArray() const;
duke@435 117 bool is_typeArray() const;
duke@435 118
duke@435 119 private:
duke@435 120 // field addresses in oop
duke@435 121 void* field_base(int offset) const;
duke@435 122
duke@435 123 jbyte* byte_field_addr(int offset) const;
duke@435 124 jchar* char_field_addr(int offset) const;
duke@435 125 jboolean* bool_field_addr(int offset) const;
duke@435 126 jint* int_field_addr(int offset) const;
duke@435 127 jshort* short_field_addr(int offset) const;
duke@435 128 jlong* long_field_addr(int offset) const;
duke@435 129 jfloat* float_field_addr(int offset) const;
duke@435 130 jdouble* double_field_addr(int offset) const;
coleenp@4037 131 Metadata** metadata_field_addr(int offset) const;
duke@435 132
duke@435 133 public:
coleenp@548 134 // Need this as public for garbage collection.
coleenp@548 135 template <class T> T* obj_field_addr(int offset) const;
duke@435 136
coleenp@4037 137 // Needed for javaClasses
coleenp@4037 138 address* address_field_addr(int offset) const;
coleenp@4037 139
coleenp@548 140 static bool is_null(oop obj);
coleenp@548 141 static bool is_null(narrowOop obj);
coleenp@4037 142 static bool is_null(Klass* obj);
coleenp@548 143
coleenp@548 144 // Decode an oop pointer from a narrowOop if compressed.
coleenp@548 145 // These are overloaded for oop and narrowOop as are the other functions
coleenp@548 146 // below so that they can be called in template functions.
coleenp@548 147 static oop decode_heap_oop_not_null(oop v);
coleenp@548 148 static oop decode_heap_oop_not_null(narrowOop v);
coleenp@548 149 static oop decode_heap_oop(oop v);
coleenp@548 150 static oop decode_heap_oop(narrowOop v);
coleenp@548 151
coleenp@548 152 // Encode an oop pointer to a narrow oop. The or_null versions accept
coleenp@548 153 // null oop pointer, others do not in order to eliminate the
coleenp@548 154 // null checking branches.
coleenp@548 155 static narrowOop encode_heap_oop_not_null(oop v);
coleenp@548 156 static narrowOop encode_heap_oop(oop v);
coleenp@548 157
coleenp@548 158 // Load an oop out of the Java heap
coleenp@548 159 static narrowOop load_heap_oop(narrowOop* p);
coleenp@548 160 static oop load_heap_oop(oop* p);
coleenp@548 161
coleenp@548 162 // Load an oop out of Java heap and decode it to an uncompressed oop.
coleenp@548 163 static oop load_decode_heap_oop_not_null(narrowOop* p);
coleenp@548 164 static oop load_decode_heap_oop_not_null(oop* p);
coleenp@548 165 static oop load_decode_heap_oop(narrowOop* p);
coleenp@548 166 static oop load_decode_heap_oop(oop* p);
coleenp@548 167
coleenp@548 168 // Store an oop into the heap.
coleenp@548 169 static void store_heap_oop(narrowOop* p, narrowOop v);
coleenp@548 170 static void store_heap_oop(oop* p, oop v);
coleenp@548 171
coleenp@548 172 // Encode oop if UseCompressedOops and store into the heap.
coleenp@548 173 static void encode_store_heap_oop_not_null(narrowOop* p, oop v);
coleenp@548 174 static void encode_store_heap_oop_not_null(oop* p, oop v);
coleenp@548 175 static void encode_store_heap_oop(narrowOop* p, oop v);
coleenp@548 176 static void encode_store_heap_oop(oop* p, oop v);
coleenp@548 177
coleenp@548 178 static void release_store_heap_oop(volatile narrowOop* p, narrowOop v);
coleenp@548 179 static void release_store_heap_oop(volatile oop* p, oop v);
coleenp@548 180
coleenp@548 181 static void release_encode_store_heap_oop_not_null(volatile narrowOop* p, oop v);
coleenp@548 182 static void release_encode_store_heap_oop_not_null(volatile oop* p, oop v);
coleenp@548 183 static void release_encode_store_heap_oop(volatile narrowOop* p, oop v);
coleenp@548 184 static void release_encode_store_heap_oop(volatile oop* p, oop v);
coleenp@548 185
coleenp@548 186 static oop atomic_exchange_oop(oop exchange_value, volatile HeapWord *dest);
coleenp@548 187 static oop atomic_compare_exchange_oop(oop exchange_value,
coleenp@548 188 volatile HeapWord *dest,
coleenp@4037 189 oop compare_value,
coleenp@4037 190 bool prebarrier = false);
coleenp@4037 191
coleenp@548 192 // Access to fields in a instanceOop through these methods.
duke@435 193 oop obj_field(int offset) const;
twisti@3131 194 volatile oop obj_field_volatile(int offset) const;
duke@435 195 void obj_field_put(int offset, oop value);
twisti@3131 196 void obj_field_put_raw(int offset, oop value);
twisti@3131 197 void obj_field_put_volatile(int offset, oop value);
duke@435 198
coleenp@4037 199 Metadata* metadata_field(int offset) const;
coleenp@4037 200 void metadata_field_put(int offset, Metadata* value);
coleenp@4037 201
duke@435 202 jbyte byte_field(int offset) const;
duke@435 203 void byte_field_put(int offset, jbyte contents);
duke@435 204
duke@435 205 jchar char_field(int offset) const;
duke@435 206 void char_field_put(int offset, jchar contents);
duke@435 207
duke@435 208 jboolean bool_field(int offset) const;
duke@435 209 void bool_field_put(int offset, jboolean contents);
duke@435 210
duke@435 211 jint int_field(int offset) const;
duke@435 212 void int_field_put(int offset, jint contents);
duke@435 213
duke@435 214 jshort short_field(int offset) const;
duke@435 215 void short_field_put(int offset, jshort contents);
duke@435 216
duke@435 217 jlong long_field(int offset) const;
duke@435 218 void long_field_put(int offset, jlong contents);
duke@435 219
duke@435 220 jfloat float_field(int offset) const;
duke@435 221 void float_field_put(int offset, jfloat contents);
duke@435 222
duke@435 223 jdouble double_field(int offset) const;
duke@435 224 void double_field_put(int offset, jdouble contents);
duke@435 225
coleenp@548 226 address address_field(int offset) const;
coleenp@548 227 void address_field_put(int offset, address contents);
coleenp@548 228
duke@435 229 oop obj_field_acquire(int offset) const;
duke@435 230 void release_obj_field_put(int offset, oop value);
duke@435 231
duke@435 232 jbyte byte_field_acquire(int offset) const;
duke@435 233 void release_byte_field_put(int offset, jbyte contents);
duke@435 234
duke@435 235 jchar char_field_acquire(int offset) const;
duke@435 236 void release_char_field_put(int offset, jchar contents);
duke@435 237
duke@435 238 jboolean bool_field_acquire(int offset) const;
duke@435 239 void release_bool_field_put(int offset, jboolean contents);
duke@435 240
duke@435 241 jint int_field_acquire(int offset) const;
duke@435 242 void release_int_field_put(int offset, jint contents);
duke@435 243
duke@435 244 jshort short_field_acquire(int offset) const;
duke@435 245 void release_short_field_put(int offset, jshort contents);
duke@435 246
duke@435 247 jlong long_field_acquire(int offset) const;
duke@435 248 void release_long_field_put(int offset, jlong contents);
duke@435 249
duke@435 250 jfloat float_field_acquire(int offset) const;
duke@435 251 void release_float_field_put(int offset, jfloat contents);
duke@435 252
duke@435 253 jdouble double_field_acquire(int offset) const;
duke@435 254 void release_double_field_put(int offset, jdouble contents);
duke@435 255
jrose@1145 256 address address_field_acquire(int offset) const;
jrose@1145 257 void release_address_field_put(int offset, address contents);
jrose@1145 258
duke@435 259 // printing functions for VM debugging
duke@435 260 void print_on(outputStream* st) const; // First level print
duke@435 261 void print_value_on(outputStream* st) const; // Second level print.
duke@435 262 void print_address_on(outputStream* st) const; // Address printing
duke@435 263
duke@435 264 // printing on default output stream
duke@435 265 void print();
duke@435 266 void print_value();
duke@435 267 void print_address();
duke@435 268
duke@435 269 // return the print strings
duke@435 270 char* print_string();
duke@435 271 char* print_value_string();
duke@435 272
duke@435 273 // verification operations
duke@435 274 void verify_on(outputStream* st);
duke@435 275 void verify();
duke@435 276
duke@435 277 // locking operations
duke@435 278 bool is_locked() const;
duke@435 279 bool is_unlocked() const;
duke@435 280 bool has_bias_pattern() const;
duke@435 281
duke@435 282 // asserts
duke@435 283 bool is_oop(bool ignore_mark_word = false) const;
duke@435 284 bool is_oop_or_null(bool ignore_mark_word = false) const;
duke@435 285 #ifndef PRODUCT
duke@435 286 bool is_unlocked_oop() const;
duke@435 287 #endif
duke@435 288
duke@435 289 // garbage collection
duke@435 290 bool is_gc_marked() const;
duke@435 291 // Apply "MarkSweep::mark_and_push" to (the address of) every non-NULL
duke@435 292 // reference field in "this".
coleenp@548 293 void follow_contents(void);
duke@435 294
jprovino@4542 295 #if INCLUDE_ALL_GCS
duke@435 296 // Parallel Scavenge
duke@435 297 void push_contents(PSPromotionManager* pm);
duke@435 298
duke@435 299 // Parallel Old
duke@435 300 void update_contents(ParCompactionManager* cm);
duke@435 301
duke@435 302 void follow_contents(ParCompactionManager* cm);
jprovino@4542 303 #endif // INCLUDE_ALL_GCS
duke@435 304
jrose@1424 305 bool is_scavengable() const;
duke@435 306
duke@435 307 // Forward pointer operations for scavenge
duke@435 308 bool is_forwarded() const;
duke@435 309
duke@435 310 void forward_to(oop p);
duke@435 311 bool cas_forward_to(oop p, markOop compare);
duke@435 312
jprovino@4542 313 #if INCLUDE_ALL_GCS
duke@435 314 // Like "forward_to", but inserts the forwarding pointer atomically.
duke@435 315 // Exactly one thread succeeds in inserting the forwarding pointer, and
duke@435 316 // this call returns "NULL" for that thread; any other thread has the
duke@435 317 // value of the forwarding pointer returned and does not modify "this".
duke@435 318 oop forward_to_atomic(oop p);
jprovino@4542 319 #endif // INCLUDE_ALL_GCS
duke@435 320
duke@435 321 oop forwardee() const;
duke@435 322
duke@435 323 // Age of object during scavenge
jwilhelm@4129 324 uint age() const;
duke@435 325 void incr_age();
duke@435 326
duke@435 327 // Adjust all pointers in this object to point at it's forwarded location and
duke@435 328 // return the size of this oop. This is used by the MarkSweep collector.
duke@435 329 int adjust_pointers();
duke@435 330
jprovino@4542 331 #if INCLUDE_ALL_GCS
duke@435 332 // Parallel old
coleenp@4037 333 void update_header(ParCompactionManager* cm);
jprovino@4542 334 #endif // INCLUDE_ALL_GCS
duke@435 335
duke@435 336 // mark-sweep support
duke@435 337 void follow_body(int begin, int end);
duke@435 338
duke@435 339 // Fast access to barrier set
duke@435 340 static BarrierSet* bs() { return _bs; }
duke@435 341 static void set_bs(BarrierSet* bs) { _bs = bs; }
duke@435 342
duke@435 343 // iterators, returns size of object
ysr@777 344 #define OOP_ITERATE_DECL(OopClosureType, nv_suffix) \
duke@435 345 int oop_iterate(OopClosureType* blk); \
duke@435 346 int oop_iterate(OopClosureType* blk, MemRegion mr); // Only in mr.
duke@435 347
duke@435 348 ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_ITERATE_DECL)
ysr@777 349 ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_ITERATE_DECL)
ysr@777 350
jprovino@4542 351 #if INCLUDE_ALL_GCS
ysr@777 352
ysr@777 353 #define OOP_ITERATE_BACKWARDS_DECL(OopClosureType, nv_suffix) \
ysr@777 354 int oop_iterate_backwards(OopClosureType* blk);
ysr@777 355
ysr@777 356 ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_ITERATE_BACKWARDS_DECL)
ysr@777 357 ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_ITERATE_BACKWARDS_DECL)
ysr@777 358 #endif
duke@435 359
coleenp@4037 360 int oop_iterate_no_header(OopClosure* bk);
coleenp@4037 361 int oop_iterate_no_header(OopClosure* bk, MemRegion mr);
duke@435 362
duke@435 363 // identity hash; returns the identity hash key (computes it if necessary)
duke@435 364 // NOTE with the introduction of UseBiasedLocking that identity_hash() might reach a
duke@435 365 // safepoint if called on a biased object. Calling code must be aware of that.
duke@435 366 intptr_t identity_hash();
duke@435 367 intptr_t slow_identity_hash();
duke@435 368
coleenp@4037 369 // Alternate hashing code if string table is rehashed
coleenp@4037 370 unsigned int new_hash(jint seed);
coleenp@4037 371
duke@435 372 // marks are forwarded to stack when object is locked
duke@435 373 bool has_displaced_mark() const;
duke@435 374 markOop displaced_mark() const;
duke@435 375 void set_displaced_mark(markOop m);
duke@435 376
duke@435 377 // for code generation
duke@435 378 static int mark_offset_in_bytes() { return offset_of(oopDesc, _mark); }
coleenp@548 379 static int klass_offset_in_bytes() { return offset_of(oopDesc, _metadata._klass); }
coleenp@548 380 static int klass_gap_offset_in_bytes();
duke@435 381 };
stefank@2314 382
stefank@2314 383 #endif // SHARE_VM_OOPS_OOP_HPP

mercurial