src/share/vm/oops/oop.hpp

Wed, 02 Feb 2011 11:35:26 -0500

author
bobv
date
Wed, 02 Feb 2011 11:35:26 -0500
changeset 2508
b92c45f2bc75
parent 2497
3582bf76420e
child 2533
c5a923563727
permissions
-rw-r--r--

7016023: Enable building ARM and PPC from src/closed repository
Reviewed-by: dholmes, bdelsart

     1 /*
     2  * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     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  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #ifndef SHARE_VM_OOPS_OOP_HPP
    26 #define SHARE_VM_OOPS_OOP_HPP
    28 #include "memory/iterator.hpp"
    29 #include "memory/memRegion.hpp"
    30 #include "memory/specialized_oop_closures.hpp"
    31 #include "utilities/top.hpp"
    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
    40 // store into oop with store check
    41 template <class T> void oop_store(T* p, oop v);
    42 template <class T> void oop_store(volatile T* p, oop v);
    44 // store into oop without store check
    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);
    48 extern bool always_do_update_barrier;
    50 // Forward declarations.
    51 class OopClosure;
    52 class ScanClosure;
    53 class FastScanClosure;
    54 class FilteringClosure;
    55 class BarrierSet;
    56 class CMSIsAliveClosure;
    58 class PSPromotionManager;
    59 class ParCompactionManager;
    61 class oopDesc {
    62   friend class VMStructs;
    63  private:
    64   volatile markOop  _mark;
    65   union _metadata {
    66     wideKlassOop    _klass;
    67     narrowOop       _compressed_klass;
    68   } _metadata;
    70   // Fast access to barrier set.  Must be initialized.
    71   static BarrierSet* _bs;
    73  public:
    74   markOop  mark() const         { return _mark; }
    75   markOop* mark_addr() const    { return (markOop*) &_mark; }
    77   void set_mark(volatile markOop m)      { _mark = m;   }
    79   void    release_set_mark(markOop m);
    80   markOop cas_set_mark(markOop new_mark, markOop old_mark);
    82   // Used only to re-initialize the mark word (e.g., of promoted
    83   // objects during a GC) -- requires a valid klass pointer
    84   void init_mark();
    86   klassOop klass() const;
    87   klassOop klass_or_null() const volatile;
    88   oop* klass_addr();
    89   narrowOop* compressed_klass_addr();
    91   void set_klass(klassOop k);
    93   // For klass field compression
    94   int klass_gap() const;
    95   void set_klass_gap(int z);
    96   // For when the klass pointer is being used as a linked list "next" field.
    97   void set_klass_to_list_ptr(oop k);
    99   // size of object header, aligned to platform wordSize
   100   static int header_size()          { return sizeof(oopDesc)/HeapWordSize; }
   102   Klass* blueprint() const;
   104   // Returns whether this is an instance of k or an instance of a subclass of k
   105   bool is_a(klassOop k)  const;
   107   // Returns the actual oop size of the object
   108   int size();
   110   // Sometimes (for complicated concurrency-related reasons), it is useful
   111   // to be able to figure out the size of an object knowing its klass.
   112   int size_given_klass(Klass* klass);
   114   // Some perm gen objects are not parseble immediately after
   115   // installation of their klass pointer.
   116   bool is_parsable();
   118   // Some perm gen objects that have been allocated and initialized
   119   // can be changed by the VM when not at a safe point (class rededfinition
   120   // is an example).  Such objects should not be examined by the
   121   // concurrent processing of a garbage collector if is_conc_safe()
   122   // returns false.
   123   bool is_conc_safe();
   125   // type test operations (inlined in oop.inline.h)
   126   bool is_instance()           const;
   127   bool is_instanceRef()        const;
   128   bool is_array()              const;
   129   bool is_objArray()           const;
   130   bool is_klass()              const;
   131   bool is_thread()             const;
   132   bool is_method()             const;
   133   bool is_constMethod()        const;
   134   bool is_methodData()         const;
   135   bool is_constantPool()       const;
   136   bool is_constantPoolCache()  const;
   137   bool is_typeArray()          const;
   138   bool is_javaArray()          const;
   139   bool is_compiledICHolder()   const;
   141  private:
   142   // field addresses in oop
   143   void*     field_base(int offset)        const;
   145   jbyte*    byte_field_addr(int offset)   const;
   146   jchar*    char_field_addr(int offset)   const;
   147   jboolean* bool_field_addr(int offset)   const;
   148   jint*     int_field_addr(int offset)    const;
   149   jshort*   short_field_addr(int offset)  const;
   150   jlong*    long_field_addr(int offset)   const;
   151   jfloat*   float_field_addr(int offset)  const;
   152   jdouble*  double_field_addr(int offset) const;
   153   address*  address_field_addr(int offset) const;
   155  public:
   156   // Need this as public for garbage collection.
   157   template <class T> T* obj_field_addr(int offset) const;
   159   static bool is_null(oop obj);
   160   static bool is_null(narrowOop obj);
   162   // Decode an oop pointer from a narrowOop if compressed.
   163   // These are overloaded for oop and narrowOop as are the other functions
   164   // below so that they can be called in template functions.
   165   static oop decode_heap_oop_not_null(oop v);
   166   static oop decode_heap_oop_not_null(narrowOop v);
   167   static oop decode_heap_oop(oop v);
   168   static oop decode_heap_oop(narrowOop v);
   170   // Encode an oop pointer to a narrow oop.  The or_null versions accept
   171   // null oop pointer, others do not in order to eliminate the
   172   // null checking branches.
   173   static narrowOop encode_heap_oop_not_null(oop v);
   174   static narrowOop encode_heap_oop(oop v);
   176   // Load an oop out of the Java heap
   177   static narrowOop load_heap_oop(narrowOop* p);
   178   static oop       load_heap_oop(oop* p);
   180   // Load an oop out of Java heap and decode it to an uncompressed oop.
   181   static oop load_decode_heap_oop_not_null(narrowOop* p);
   182   static oop load_decode_heap_oop_not_null(oop* p);
   183   static oop load_decode_heap_oop(narrowOop* p);
   184   static oop load_decode_heap_oop(oop* p);
   186   // Store an oop into the heap.
   187   static void store_heap_oop(narrowOop* p, narrowOop v);
   188   static void store_heap_oop(oop* p, oop v);
   190   // Encode oop if UseCompressedOops and store into the heap.
   191   static void encode_store_heap_oop_not_null(narrowOop* p, oop v);
   192   static void encode_store_heap_oop_not_null(oop* p, oop v);
   193   static void encode_store_heap_oop(narrowOop* p, oop v);
   194   static void encode_store_heap_oop(oop* p, oop v);
   196   static void release_store_heap_oop(volatile narrowOop* p, narrowOop v);
   197   static void release_store_heap_oop(volatile oop* p, oop v);
   199   static void release_encode_store_heap_oop_not_null(volatile narrowOop* p, oop v);
   200   static void release_encode_store_heap_oop_not_null(volatile oop* p, oop v);
   201   static void release_encode_store_heap_oop(volatile narrowOop* p, oop v);
   202   static void release_encode_store_heap_oop(volatile oop* p, oop v);
   204   static oop atomic_exchange_oop(oop exchange_value, volatile HeapWord *dest);
   205   static oop atomic_compare_exchange_oop(oop exchange_value,
   206                                          volatile HeapWord *dest,
   207                                          oop compare_value);
   209   // Access to fields in a instanceOop through these methods.
   210   oop obj_field(int offset) const;
   211   void obj_field_put(int offset, oop value);
   212   void obj_field_raw_put(int offset, oop value);
   214   jbyte byte_field(int offset) const;
   215   void byte_field_put(int offset, jbyte contents);
   217   jchar char_field(int offset) const;
   218   void char_field_put(int offset, jchar contents);
   220   jboolean bool_field(int offset) const;
   221   void bool_field_put(int offset, jboolean contents);
   223   jint int_field(int offset) const;
   224   void int_field_put(int offset, jint contents);
   226   jshort short_field(int offset) const;
   227   void short_field_put(int offset, jshort contents);
   229   jlong long_field(int offset) const;
   230   void long_field_put(int offset, jlong contents);
   232   jfloat float_field(int offset) const;
   233   void float_field_put(int offset, jfloat contents);
   235   jdouble double_field(int offset) const;
   236   void double_field_put(int offset, jdouble contents);
   238   address address_field(int offset) const;
   239   void address_field_put(int offset, address contents);
   241   oop obj_field_acquire(int offset) const;
   242   void release_obj_field_put(int offset, oop value);
   244   jbyte byte_field_acquire(int offset) const;
   245   void release_byte_field_put(int offset, jbyte contents);
   247   jchar char_field_acquire(int offset) const;
   248   void release_char_field_put(int offset, jchar contents);
   250   jboolean bool_field_acquire(int offset) const;
   251   void release_bool_field_put(int offset, jboolean contents);
   253   jint int_field_acquire(int offset) const;
   254   void release_int_field_put(int offset, jint contents);
   256   jshort short_field_acquire(int offset) const;
   257   void release_short_field_put(int offset, jshort contents);
   259   jlong long_field_acquire(int offset) const;
   260   void release_long_field_put(int offset, jlong contents);
   262   jfloat float_field_acquire(int offset) const;
   263   void release_float_field_put(int offset, jfloat contents);
   265   jdouble double_field_acquire(int offset) const;
   266   void release_double_field_put(int offset, jdouble contents);
   268   address address_field_acquire(int offset) const;
   269   void release_address_field_put(int offset, address contents);
   271   // printing functions for VM debugging
   272   void print_on(outputStream* st) const;         // First level print
   273   void print_value_on(outputStream* st) const;   // Second level print.
   274   void print_address_on(outputStream* st) const; // Address printing
   276   // printing on default output stream
   277   void print();
   278   void print_value();
   279   void print_address();
   281   // return the print strings
   282   char* print_string();
   283   char* print_value_string();
   285   // verification operations
   286   void verify_on(outputStream* st);
   287   void verify();
   288   void verify_old_oop(oop* p, bool allow_dirty);
   289   void verify_old_oop(narrowOop* p, bool allow_dirty);
   291   // tells whether this oop is partially constructed (gc during class loading)
   292   bool partially_loaded();
   293   void set_partially_loaded();
   295   // locking operations
   296   bool is_locked()   const;
   297   bool is_unlocked() const;
   298   bool has_bias_pattern() const;
   300   // asserts
   301   bool is_oop(bool ignore_mark_word = false) const;
   302   bool is_oop_or_null(bool ignore_mark_word = false) const;
   303 #ifndef PRODUCT
   304   bool is_unlocked_oop() const;
   305 #endif
   307   // garbage collection
   308   bool is_gc_marked() const;
   309   // Apply "MarkSweep::mark_and_push" to (the address of) every non-NULL
   310   // reference field in "this".
   311   void follow_contents(void);
   312   void follow_header(void);
   314 #ifndef SERIALGC
   315   // Parallel Scavenge
   316   void push_contents(PSPromotionManager* pm);
   318   // Parallel Old
   319   void update_contents(ParCompactionManager* cm);
   320   void update_contents(ParCompactionManager* cm,
   321                        HeapWord* begin_limit,
   322                        HeapWord* end_limit);
   323   void update_contents(ParCompactionManager* cm,
   324                        klassOop old_klass,
   325                        HeapWord* begin_limit,
   326                        HeapWord* end_limit);
   328   void follow_contents(ParCompactionManager* cm);
   329   void follow_header(ParCompactionManager* cm);
   330 #endif // SERIALGC
   332   bool is_perm() const;
   333   bool is_perm_or_null() const;
   334   bool is_scavengable() const;
   335   bool is_shared() const;
   336   bool is_shared_readonly() const;
   337   bool is_shared_readwrite() const;
   339   // Forward pointer operations for scavenge
   340   bool is_forwarded() const;
   342   void forward_to(oop p);
   343   bool cas_forward_to(oop p, markOop compare);
   345 #ifndef SERIALGC
   346   // Like "forward_to", but inserts the forwarding pointer atomically.
   347   // Exactly one thread succeeds in inserting the forwarding pointer, and
   348   // this call returns "NULL" for that thread; any other thread has the
   349   // value of the forwarding pointer returned and does not modify "this".
   350   oop forward_to_atomic(oop p);
   351 #endif // SERIALGC
   353   oop forwardee() const;
   355   // Age of object during scavenge
   356   int age() const;
   357   void incr_age();
   359   // Adjust all pointers in this object to point at it's forwarded location and
   360   // return the size of this oop.  This is used by the MarkSweep collector.
   361   int adjust_pointers();
   362   void adjust_header();
   364 #ifndef SERIALGC
   365   // Parallel old
   366   void update_header();
   367   void update_header(HeapWord* beg_addr, HeapWord* end_addr);
   368 #endif // SERIALGC
   370   // mark-sweep support
   371   void follow_body(int begin, int end);
   373   // Fast access to barrier set
   374   static BarrierSet* bs()            { return _bs; }
   375   static void set_bs(BarrierSet* bs) { _bs = bs; }
   377   // iterators, returns size of object
   378 #define OOP_ITERATE_DECL(OopClosureType, nv_suffix)                      \
   379   int oop_iterate(OopClosureType* blk);                                  \
   380   int oop_iterate(OopClosureType* blk, MemRegion mr);  // Only in mr.
   382   ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_ITERATE_DECL)
   383   ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_ITERATE_DECL)
   385 #ifndef SERIALGC
   387 #define OOP_ITERATE_BACKWARDS_DECL(OopClosureType, nv_suffix)            \
   388   int oop_iterate_backwards(OopClosureType* blk);
   390   ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_ITERATE_BACKWARDS_DECL)
   391   ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_ITERATE_BACKWARDS_DECL)
   392 #endif
   394   void oop_iterate_header(OopClosure* blk);
   395   void oop_iterate_header(OopClosure* blk, MemRegion mr);
   397   // identity hash; returns the identity hash key (computes it if necessary)
   398   // NOTE with the introduction of UseBiasedLocking that identity_hash() might reach a
   399   // safepoint if called on a biased object. Calling code must be aware of that.
   400   intptr_t identity_hash();
   401   intptr_t slow_identity_hash();
   403   // marks are forwarded to stack when object is locked
   404   bool     has_displaced_mark() const;
   405   markOop  displaced_mark() const;
   406   void     set_displaced_mark(markOop m);
   408   // for code generation
   409   static int mark_offset_in_bytes()    { return offset_of(oopDesc, _mark); }
   410   static int klass_offset_in_bytes()   { return offset_of(oopDesc, _metadata._klass); }
   411   static int klass_gap_offset_in_bytes();
   412 };
   414 #endif // SHARE_VM_OOPS_OOP_HPP

mercurial