src/share/vm/oops/oop.hpp

Sat, 30 Oct 2010 11:45:35 -0700

author
jrose
date
Sat, 30 Oct 2010 11:45:35 -0700
changeset 2265
d1896d1dda3e
parent 2061
9d7a8ab3736b
child 2314
f95d63e2154a
permissions
-rw-r--r--

6981788: GC map generator sometimes picks up the wrong kind of instruction operand
Summary: Distinguish pool indexes from cache indexes in recently changed code.
Reviewed-by: never

     1 /*
     2  * Copyright (c) 1997, 2009, 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 // oopDesc is the top baseclass for objects classes.  The {name}Desc classes describe
    26 // the format of Java objects so the fields can be accessed from C++.
    27 // oopDesc is abstract.
    28 // (see oopHierarchy for complete oop class hierarchy)
    29 //
    30 // no virtual functions allowed
    32 // store into oop with store check
    33 template <class T> inline void oop_store(T* p, oop v);
    34 template <class T> inline void oop_store(volatile T* p, oop v);
    36 // store into oop without store check
    37 template <class T> inline void oop_store_without_check(T* p, oop v);
    38 template <class T> inline void oop_store_without_check(volatile T* p, oop v);
    40 extern bool always_do_update_barrier;
    42 // Forward declarations.
    43 class OopClosure;
    44 class ScanClosure;
    45 class FastScanClosure;
    46 class FilteringClosure;
    47 class BarrierSet;
    48 class CMSIsAliveClosure;
    50 class PSPromotionManager;
    51 class ParCompactionManager;
    53 class oopDesc {
    54   friend class VMStructs;
    55  private:
    56   volatile markOop  _mark;
    57   union _metadata {
    58     wideKlassOop    _klass;
    59     narrowOop       _compressed_klass;
    60   } _metadata;
    62   // Fast access to barrier set.  Must be initialized.
    63   static BarrierSet* _bs;
    65  public:
    66   markOop  mark() const         { return _mark; }
    67   markOop* mark_addr() const    { return (markOop*) &_mark; }
    69   void set_mark(volatile markOop m)      { _mark = m;   }
    71   void    release_set_mark(markOop m);
    72   markOop cas_set_mark(markOop new_mark, markOop old_mark);
    74   // Used only to re-initialize the mark word (e.g., of promoted
    75   // objects during a GC) -- requires a valid klass pointer
    76   void init_mark();
    78   klassOop klass() const;
    79   klassOop klass_or_null() const volatile;
    80   oop* klass_addr();
    81   narrowOop* compressed_klass_addr();
    83   void set_klass(klassOop k);
    85   // For klass field compression
    86   int klass_gap() const;
    87   void set_klass_gap(int z);
    88   // For when the klass pointer is being used as a linked list "next" field.
    89   void set_klass_to_list_ptr(oop k);
    91   // size of object header, aligned to platform wordSize
    92   static int header_size()          { return sizeof(oopDesc)/HeapWordSize; }
    94   Klass* blueprint() const;
    96   // Returns whether this is an instance of k or an instance of a subclass of k
    97   bool is_a(klassOop k)  const;
    99   // Returns the actual oop size of the object
   100   int size();
   102   // Sometimes (for complicated concurrency-related reasons), it is useful
   103   // to be able to figure out the size of an object knowing its klass.
   104   int size_given_klass(Klass* klass);
   106   // Some perm gen objects are not parseble immediately after
   107   // installation of their klass pointer.
   108   bool is_parsable();
   110   // Some perm gen objects that have been allocated and initialized
   111   // can be changed by the VM when not at a safe point (class rededfinition
   112   // is an example).  Such objects should not be examined by the
   113   // concurrent processing of a garbage collector if is_conc_safe()
   114   // returns false.
   115   bool is_conc_safe();
   117   // type test operations (inlined in oop.inline.h)
   118   bool is_instance()           const;
   119   bool is_instanceRef()        const;
   120   bool is_array()              const;
   121   bool is_objArray()           const;
   122   bool is_symbol()             const;
   123   bool is_klass()              const;
   124   bool is_thread()             const;
   125   bool is_method()             const;
   126   bool is_constMethod()        const;
   127   bool is_methodData()         const;
   128   bool is_constantPool()       const;
   129   bool is_constantPoolCache()  const;
   130   bool is_typeArray()          const;
   131   bool is_javaArray()          const;
   132   bool is_compiledICHolder()   const;
   134  private:
   135   // field addresses in oop
   136   void*     field_base(int offset)        const;
   138   jbyte*    byte_field_addr(int offset)   const;
   139   jchar*    char_field_addr(int offset)   const;
   140   jboolean* bool_field_addr(int offset)   const;
   141   jint*     int_field_addr(int offset)    const;
   142   jshort*   short_field_addr(int offset)  const;
   143   jlong*    long_field_addr(int offset)   const;
   144   jfloat*   float_field_addr(int offset)  const;
   145   jdouble*  double_field_addr(int offset) const;
   146   address*  address_field_addr(int offset) const;
   148  public:
   149   // Need this as public for garbage collection.
   150   template <class T> T* obj_field_addr(int offset) const;
   152   static bool is_null(oop obj);
   153   static bool is_null(narrowOop obj);
   155   // Decode an oop pointer from a narrowOop if compressed.
   156   // These are overloaded for oop and narrowOop as are the other functions
   157   // below so that they can be called in template functions.
   158   static oop decode_heap_oop_not_null(oop v);
   159   static oop decode_heap_oop_not_null(narrowOop v);
   160   static oop decode_heap_oop(oop v);
   161   static oop decode_heap_oop(narrowOop v);
   163   // Encode an oop pointer to a narrow oop.  The or_null versions accept
   164   // null oop pointer, others do not in order to eliminate the
   165   // null checking branches.
   166   static narrowOop encode_heap_oop_not_null(oop v);
   167   static narrowOop encode_heap_oop(oop v);
   169   // Load an oop out of the Java heap
   170   static narrowOop load_heap_oop(narrowOop* p);
   171   static oop       load_heap_oop(oop* p);
   173   // Load an oop out of Java heap and decode it to an uncompressed oop.
   174   static oop load_decode_heap_oop_not_null(narrowOop* p);
   175   static oop load_decode_heap_oop_not_null(oop* p);
   176   static oop load_decode_heap_oop(narrowOop* p);
   177   static oop load_decode_heap_oop(oop* p);
   179   // Store an oop into the heap.
   180   static void store_heap_oop(narrowOop* p, narrowOop v);
   181   static void store_heap_oop(oop* p, oop v);
   183   // Encode oop if UseCompressedOops and store into the heap.
   184   static void encode_store_heap_oop_not_null(narrowOop* p, oop v);
   185   static void encode_store_heap_oop_not_null(oop* p, oop v);
   186   static void encode_store_heap_oop(narrowOop* p, oop v);
   187   static void encode_store_heap_oop(oop* p, oop v);
   189   static void release_store_heap_oop(volatile narrowOop* p, narrowOop v);
   190   static void release_store_heap_oop(volatile oop* p, oop v);
   192   static void release_encode_store_heap_oop_not_null(volatile narrowOop* p, oop v);
   193   static void release_encode_store_heap_oop_not_null(volatile oop* p, oop v);
   194   static void release_encode_store_heap_oop(volatile narrowOop* p, oop v);
   195   static void release_encode_store_heap_oop(volatile oop* p, oop v);
   197   static oop atomic_exchange_oop(oop exchange_value, volatile HeapWord *dest);
   198   static oop atomic_compare_exchange_oop(oop exchange_value,
   199                                          volatile HeapWord *dest,
   200                                          oop compare_value);
   202   // Access to fields in a instanceOop through these methods.
   203   oop obj_field(int offset) const;
   204   void obj_field_put(int offset, oop value);
   205   void obj_field_raw_put(int offset, oop value);
   207   jbyte byte_field(int offset) const;
   208   void byte_field_put(int offset, jbyte contents);
   210   jchar char_field(int offset) const;
   211   void char_field_put(int offset, jchar contents);
   213   jboolean bool_field(int offset) const;
   214   void bool_field_put(int offset, jboolean contents);
   216   jint int_field(int offset) const;
   217   void int_field_put(int offset, jint contents);
   219   jshort short_field(int offset) const;
   220   void short_field_put(int offset, jshort contents);
   222   jlong long_field(int offset) const;
   223   void long_field_put(int offset, jlong contents);
   225   jfloat float_field(int offset) const;
   226   void float_field_put(int offset, jfloat contents);
   228   jdouble double_field(int offset) const;
   229   void double_field_put(int offset, jdouble contents);
   231   address address_field(int offset) const;
   232   void address_field_put(int offset, address contents);
   234   oop obj_field_acquire(int offset) const;
   235   void release_obj_field_put(int offset, oop value);
   237   jbyte byte_field_acquire(int offset) const;
   238   void release_byte_field_put(int offset, jbyte contents);
   240   jchar char_field_acquire(int offset) const;
   241   void release_char_field_put(int offset, jchar contents);
   243   jboolean bool_field_acquire(int offset) const;
   244   void release_bool_field_put(int offset, jboolean contents);
   246   jint int_field_acquire(int offset) const;
   247   void release_int_field_put(int offset, jint contents);
   249   jshort short_field_acquire(int offset) const;
   250   void release_short_field_put(int offset, jshort contents);
   252   jlong long_field_acquire(int offset) const;
   253   void release_long_field_put(int offset, jlong contents);
   255   jfloat float_field_acquire(int offset) const;
   256   void release_float_field_put(int offset, jfloat contents);
   258   jdouble double_field_acquire(int offset) const;
   259   void release_double_field_put(int offset, jdouble contents);
   261   address address_field_acquire(int offset) const;
   262   void release_address_field_put(int offset, address contents);
   264   // printing functions for VM debugging
   265   void print_on(outputStream* st) const;         // First level print
   266   void print_value_on(outputStream* st) const;   // Second level print.
   267   void print_address_on(outputStream* st) const; // Address printing
   269   // printing on default output stream
   270   void print();
   271   void print_value();
   272   void print_address();
   274   // return the print strings
   275   char* print_string();
   276   char* print_value_string();
   278   // verification operations
   279   void verify_on(outputStream* st);
   280   void verify();
   281   void verify_old_oop(oop* p, bool allow_dirty);
   282   void verify_old_oop(narrowOop* p, bool allow_dirty);
   284   // tells whether this oop is partially constructed (gc during class loading)
   285   bool partially_loaded();
   286   void set_partially_loaded();
   288   // locking operations
   289   bool is_locked()   const;
   290   bool is_unlocked() const;
   291   bool has_bias_pattern() const;
   293   // asserts
   294   bool is_oop(bool ignore_mark_word = false) const;
   295   bool is_oop_or_null(bool ignore_mark_word = false) const;
   296 #ifndef PRODUCT
   297   bool is_unlocked_oop() const;
   298 #endif
   300   // garbage collection
   301   bool is_gc_marked() const;
   302   // Apply "MarkSweep::mark_and_push" to (the address of) every non-NULL
   303   // reference field in "this".
   304   void follow_contents(void);
   305   void follow_header(void);
   307 #ifndef SERIALGC
   308   // Parallel Scavenge
   309   void push_contents(PSPromotionManager* pm);
   311   // Parallel Old
   312   void update_contents(ParCompactionManager* cm);
   313   void update_contents(ParCompactionManager* cm,
   314                        HeapWord* begin_limit,
   315                        HeapWord* end_limit);
   316   void update_contents(ParCompactionManager* cm,
   317                        klassOop old_klass,
   318                        HeapWord* begin_limit,
   319                        HeapWord* end_limit);
   321   void follow_contents(ParCompactionManager* cm);
   322   void follow_header(ParCompactionManager* cm);
   323 #endif // SERIALGC
   325   bool is_perm() const;
   326   bool is_perm_or_null() const;
   327   bool is_scavengable() const;
   328   bool is_shared() const;
   329   bool is_shared_readonly() const;
   330   bool is_shared_readwrite() const;
   332   // Forward pointer operations for scavenge
   333   bool is_forwarded() const;
   335   void forward_to(oop p);
   336   bool cas_forward_to(oop p, markOop compare);
   338 #ifndef SERIALGC
   339   // Like "forward_to", but inserts the forwarding pointer atomically.
   340   // Exactly one thread succeeds in inserting the forwarding pointer, and
   341   // this call returns "NULL" for that thread; any other thread has the
   342   // value of the forwarding pointer returned and does not modify "this".
   343   oop forward_to_atomic(oop p);
   344 #endif // SERIALGC
   346   oop forwardee() const;
   348   // Age of object during scavenge
   349   int age() const;
   350   void incr_age();
   352   // Adjust all pointers in this object to point at it's forwarded location and
   353   // return the size of this oop.  This is used by the MarkSweep collector.
   354   int adjust_pointers();
   355   void adjust_header();
   357 #ifndef SERIALGC
   358   // Parallel old
   359   void update_header();
   360   void update_header(HeapWord* beg_addr, HeapWord* end_addr);
   361 #endif // SERIALGC
   363   // mark-sweep support
   364   void follow_body(int begin, int end);
   366   // Fast access to barrier set
   367   static BarrierSet* bs()            { return _bs; }
   368   static void set_bs(BarrierSet* bs) { _bs = bs; }
   370   // iterators, returns size of object
   371 #define OOP_ITERATE_DECL(OopClosureType, nv_suffix)                      \
   372   int oop_iterate(OopClosureType* blk);                                  \
   373   int oop_iterate(OopClosureType* blk, MemRegion mr);  // Only in mr.
   375   ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_ITERATE_DECL)
   376   ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_ITERATE_DECL)
   378 #ifndef SERIALGC
   380 #define OOP_ITERATE_BACKWARDS_DECL(OopClosureType, nv_suffix)            \
   381   int oop_iterate_backwards(OopClosureType* blk);
   383   ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_ITERATE_BACKWARDS_DECL)
   384   ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_ITERATE_BACKWARDS_DECL)
   385 #endif
   387   void oop_iterate_header(OopClosure* blk);
   388   void oop_iterate_header(OopClosure* blk, MemRegion mr);
   390   // identity hash; returns the identity hash key (computes it if necessary)
   391   // NOTE with the introduction of UseBiasedLocking that identity_hash() might reach a
   392   // safepoint if called on a biased object. Calling code must be aware of that.
   393   intptr_t identity_hash();
   394   intptr_t slow_identity_hash();
   396   // marks are forwarded to stack when object is locked
   397   bool     has_displaced_mark() const;
   398   markOop  displaced_mark() const;
   399   void     set_displaced_mark(markOop m);
   401   // for code generation
   402   static int mark_offset_in_bytes()    { return offset_of(oopDesc, _mark); }
   403   static int klass_offset_in_bytes()   { return offset_of(oopDesc, _metadata._klass); }
   404   static int klass_gap_offset_in_bytes();
   405 };

mercurial