hotspot/src/share/vm/gc_implementation/shared/markSweep.hpp
author xdono
Tue, 22 Sep 2009 14:06:10 -0700
changeset 3795 6227ff014cfe
parent 3696 9e5d9b5e1049
child 3919 b15d85d98b61
permissions -rw-r--r--
6884624: Update copyright year Summary: Update copyright for files that have been modified in 2009 through Septermber Reviewed-by: tbell, ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3795
6227ff014cfe 6884624: Update copyright year
xdono
parents: 3696
diff changeset
     2
 * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class ReferenceProcessor;
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
    26
class DataLayout;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// MarkSweep takes care of global mark-compact garbage collection for a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// GenCollectedHeap using a four-phase pointer forwarding algorithm.  All
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// generations are assumed to support marking; those that can also support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// compaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Class unloading will only occur when a full gc is invoked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// If VALIDATE_MARK_SWEEP is defined, the -XX:+ValidateMarkSweep flag will
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// be operational, and will provide slow but comprehensive self-checks within
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// the GC.  This is not enabled by default in product or release builds,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// since the extra call to track_adjusted_pointer() in _adjust_pointer()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// would be too much overhead, and would disturb performance measurement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// However, debug builds are sometimes way too slow to run GC tests!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
#define VALIDATE_MARK_SWEEP 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#ifdef VALIDATE_MARK_SWEEP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
#define VALIDATE_MARK_SWEEP_ONLY(code) code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#define VALIDATE_MARK_SWEEP_ONLY(code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// declared at end
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
class PreservedMark;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
class MarkSweep : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  //
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    55
  // Inline closure decls
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  //
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    57
  class FollowRootClosure: public OopsInGenClosure {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    59
    virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    60
    virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    virtual const bool do_nmethods() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  class MarkAndPushClosure: public OopClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    66
    virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    67
    virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    virtual const bool do_nmethods() const { return true; }
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
    69
    virtual const bool should_remember_mdo() const { return true; }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
    70
    virtual void remember_mdo(DataLayout* p) { MarkSweep::revisit_mdo(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  class FollowStackClosure: public VoidClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    75
    virtual void do_void();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  class AdjustPointerClosure: public OopsInGenClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    79
   private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    bool _is_root;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
   public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    AdjustPointerClosure(bool is_root) : _is_root(is_root) {}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    83
    virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    84
    virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // Used for java/lang/ref handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  class IsAliveClosure: public BoolObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    90
    virtual void do_object(oop p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    91
    virtual bool do_object_b(oop p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  class KeepAliveClosure: public OopClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    95
   protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    96
    template <class T> void do_oop_work(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    98
    virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    99
    virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Friend decls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  friend class AdjustPointerClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  friend class KeepAliveClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  friend class VM_MarkSweep;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  friend void marksweep_init();
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   109
  friend class DataLayout;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Vars
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Traversal stack used during phase1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  static GrowableArray<oop>*             _marking_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // Stack for live klasses to revisit at end of marking phase
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  static GrowableArray<Klass*>*          _revisit_klass_stack;
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   119
  // Set (stack) of MDO's to revisit at end of marking phase
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   120
  static GrowableArray<DataLayout*>*    _revisit_mdo_stack;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Space for storing/restoring mark word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  static GrowableArray<markOop>*         _preserved_mark_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  static GrowableArray<oop>*             _preserved_oop_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  static size_t                          _preserved_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  static size_t                          _preserved_count_max;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  static PreservedMark*                  _preserved_marks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // Reference processing (used in ...follow_contents)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  static ReferenceProcessor*             _ref_processor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
#ifdef VALIDATE_MARK_SWEEP
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   133
  static GrowableArray<void*>*           _root_refs_stack;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  static GrowableArray<oop> *            _live_oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  static GrowableArray<oop> *            _live_oops_moved_to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  static GrowableArray<size_t>*          _live_oops_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  static size_t                          _live_oops_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  static size_t                          _live_oops_index_at_perm;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   139
  static GrowableArray<void*>*           _other_refs_stack;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   140
  static GrowableArray<void*>*           _adjusted_pointers;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  static bool                            _pointer_tracking;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  static bool                            _root_tracking;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // The following arrays are saved since the time of the last GC and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // assist in tracking down problems where someone has done an errant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // store into the heap, usually to an oop that wasn't properly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // handleized across a GC. If we crash or otherwise fail before the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // next GC, we can query these arrays to find out the object we had
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // intended to do the store to (assuming it is still alive) and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // offset within that object. Covered under RecordMarkSweepCompaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  static GrowableArray<HeapWord*> *      _cur_gc_live_oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  static GrowableArray<HeapWord*> *      _cur_gc_live_oops_moved_to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  static GrowableArray<size_t>*          _cur_gc_live_oops_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  static GrowableArray<HeapWord*> *      _last_gc_live_oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  static GrowableArray<HeapWord*> *      _last_gc_live_oops_moved_to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  static GrowableArray<size_t>*          _last_gc_live_oops_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // Non public closures
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   160
  static IsAliveClosure   is_alive;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  static KeepAliveClosure keep_alive;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Class unloading. Update subklass/sibling/implementor links at end of marking phase.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static void follow_weak_klass_links();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   166
  // Class unloading. Clear weak refs in MDO's (ProfileData)
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   167
  // at the end of the marking phase.
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   168
  static void follow_mdo_weak_refs();
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   169
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  static void trace(const char* msg) PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // Public closures
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   175
  static FollowRootClosure    follow_root_closure;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   176
  static MarkAndPushClosure   mark_and_push_closure;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   177
  static FollowStackClosure   follow_stack_closure;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  static AdjustPointerClosure adjust_root_pointer_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  static AdjustPointerClosure adjust_pointer_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // Reference Processing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  static ReferenceProcessor* const ref_processor() { return _ref_processor; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // Call backs for marking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  static void mark_object(oop obj);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   186
  // Mark pointer and follow contents.  Empty marking stack afterwards.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   187
  template <class T> static inline void follow_root(T* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   188
  // Mark pointer and follow contents.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   189
  template <class T> static inline void mark_and_follow(T* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   190
  // Check mark and maybe push on marking stack
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   191
  template <class T> static inline void mark_and_push(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   193
  static void follow_stack();   // Empty marking stack.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   195
  static void preserve_mark(oop p, markOop mark);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   196
                                // Save the mark word so it can be restored later
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   197
  static void adjust_marks();   // Adjust the pointers in the preserved marks table
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   198
  static void restore_marks();  // Restore the marks that we saved in preserve_mark
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   200
  template <class T> static inline void adjust_pointer(T* p, bool isroot);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   202
  static void adjust_root_pointer(oop* p)  { adjust_pointer(p, true); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   203
  static void adjust_pointer(oop* p)       { adjust_pointer(p, false); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   204
  static void adjust_pointer(narrowOop* p) { adjust_pointer(p, false); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
#ifdef VALIDATE_MARK_SWEEP
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   207
  static void track_adjusted_pointer(void* p, bool isroot);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   208
  static void check_adjust_pointer(void* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  static void track_interior_pointers(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  static void check_interior_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  static void reset_live_oop_tracking(bool at_perm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  static void register_live_oop(oop p, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  static void validate_live_oop(oop p, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  static void live_oop_moved_to(HeapWord* q, size_t size, HeapWord* compaction_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  static void compaction_complete();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // Querying operation of RecordMarkSweepCompaction results.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // Finds and prints the current base oop and offset for a word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // within an oop that was live during the last GC. Helpful for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // tracking down heap stomps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  static void print_new_location_of_heap_address(HeapWord* q);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // Call backs for class unloading
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   226
  // Update subklass/sibling/implementor links at end of marking.
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   227
  static void revisit_weak_klass_link(Klass* k);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   228
  // For weak refs clearing in MDO's
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   229
  static void revisit_mdo(DataLayout* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
class PreservedMark VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  oop _obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  markOop _mark;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  void init(oop obj, markOop mark) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    _obj = obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    _mark = mark;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void adjust_pointer() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    MarkSweep::adjust_pointer(&_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  void restore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    _obj->set_mark(_mark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
};