src/share/vm/gc_implementation/shared/markSweep.hpp

Wed, 23 Jan 2013 13:02:39 -0500

author
jprovino
date
Wed, 23 Jan 2013 13:02:39 -0500
changeset 4542
db9981fd3124
parent 4384
b735136e0d82
child 5011
a08c80e9e1e5
permissions
-rw-r--r--

8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
Summary: Rename INCLUDE_ALTERNATE_GCS to INCLUDE_ALL_GCS and replace SERIALGC with INCLUDE_ALL_GCS.
Reviewed-by: coleenp, stefank

     1 /*
     2  * Copyright (c) 1997, 2012, 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_GC_IMPLEMENTATION_SHARED_MARKSWEEP_HPP
    26 #define SHARE_VM_GC_IMPLEMENTATION_SHARED_MARKSWEEP_HPP
    28 #include "gc_interface/collectedHeap.hpp"
    29 #include "memory/universe.hpp"
    30 #include "oops/markOop.hpp"
    31 #include "oops/oop.hpp"
    32 #include "runtime/timer.hpp"
    33 #include "utilities/growableArray.hpp"
    34 #include "utilities/stack.hpp"
    35 #include "utilities/taskqueue.hpp"
    37 class ReferenceProcessor;
    38 class DataLayout;
    40 // MarkSweep takes care of global mark-compact garbage collection for a
    41 // GenCollectedHeap using a four-phase pointer forwarding algorithm.  All
    42 // generations are assumed to support marking; those that can also support
    43 // compaction.
    44 //
    45 // Class unloading will only occur when a full gc is invoked.
    47 // declared at end
    48 class PreservedMark;
    50 class MarkSweep : AllStatic {
    51   //
    52   // Inline closure decls
    53   //
    54   class FollowRootClosure: public OopsInGenClosure {
    55    public:
    56     virtual void do_oop(oop* p);
    57     virtual void do_oop(narrowOop* p);
    58   };
    60   class MarkAndPushClosure: public OopClosure {
    61    public:
    62     virtual void do_oop(oop* p);
    63     virtual void do_oop(narrowOop* p);
    64   };
    66   // The one and only place to start following the classes.
    67   // Should only be applied to the ClassLoaderData klasses list.
    68   class FollowKlassClosure : public KlassClosure {
    69    public:
    70     void do_klass(Klass* klass);
    71   };
    72   class AdjustKlassClosure : public KlassClosure {
    73    public:
    74     void do_klass(Klass* klass);
    75   };
    77   class FollowStackClosure: public VoidClosure {
    78    public:
    79     virtual void do_void();
    80   };
    82   class AdjustPointerClosure: public OopsInGenClosure {
    83    private:
    84     bool _is_root;
    85    public:
    86     AdjustPointerClosure(bool is_root) : _is_root(is_root) {}
    87     virtual void do_oop(oop* p);
    88     virtual void do_oop(narrowOop* p);
    89   };
    91   // Used for java/lang/ref handling
    92   class IsAliveClosure: public BoolObjectClosure {
    93    public:
    94     virtual void do_object(oop p);
    95     virtual bool do_object_b(oop p);
    96   };
    98   class KeepAliveClosure: public OopClosure {
    99    protected:
   100     template <class T> void do_oop_work(T* p);
   101    public:
   102     virtual void do_oop(oop* p);
   103     virtual void do_oop(narrowOop* p);
   104   };
   106   //
   107   // Friend decls
   108   //
   109   friend class AdjustPointerClosure;
   110   friend class KeepAliveClosure;
   111   friend class VM_MarkSweep;
   112   friend void marksweep_init();
   114   //
   115   // Vars
   116   //
   117  protected:
   118   // Total invocations of a MarkSweep collection
   119   static unsigned int _total_invocations;
   121   // Traversal stacks used during phase1
   122   static Stack<oop, mtGC>                      _marking_stack;
   123   static Stack<ObjArrayTask, mtGC>             _objarray_stack;
   125   // Space for storing/restoring mark word
   126   static Stack<markOop, mtGC>                  _preserved_mark_stack;
   127   static Stack<oop, mtGC>                      _preserved_oop_stack;
   128   static size_t                          _preserved_count;
   129   static size_t                          _preserved_count_max;
   130   static PreservedMark*                  _preserved_marks;
   132   // Reference processing (used in ...follow_contents)
   133   static ReferenceProcessor*             _ref_processor;
   135   // Non public closures
   136   static KeepAliveClosure keep_alive;
   138   // Debugging
   139   static void trace(const char* msg) PRODUCT_RETURN;
   141  public:
   142   // Public closures
   143   static IsAliveClosure       is_alive;
   144   static FollowRootClosure    follow_root_closure;
   145   static CodeBlobToOopClosure follow_code_root_closure; // => follow_root_closure
   146   static MarkAndPushClosure   mark_and_push_closure;
   147   static FollowKlassClosure   follow_klass_closure;
   148   static FollowStackClosure   follow_stack_closure;
   149   static AdjustPointerClosure adjust_root_pointer_closure;
   150   static AdjustPointerClosure adjust_pointer_closure;
   151   static AdjustKlassClosure   adjust_klass_closure;
   153   // Accessors
   154   static unsigned int total_invocations() { return _total_invocations; }
   156   // Reference Processing
   157   static ReferenceProcessor* const ref_processor() { return _ref_processor; }
   159   // Call backs for marking
   160   static void mark_object(oop obj);
   161   // Mark pointer and follow contents.  Empty marking stack afterwards.
   162   template <class T> static inline void follow_root(T* p);
   164   // Check mark and maybe push on marking stack
   165   template <class T> static void mark_and_push(T* p);
   167   static inline void push_objarray(oop obj, size_t index);
   169   static void follow_stack();   // Empty marking stack.
   171   static void follow_klass(Klass* klass);
   172   static void adjust_klass(Klass* klass);
   174   static void follow_class_loader(ClassLoaderData* cld);
   175   static void adjust_class_loader(ClassLoaderData* cld);
   177   static void preserve_mark(oop p, markOop mark);
   178                                 // Save the mark word so it can be restored later
   179   static void adjust_marks();   // Adjust the pointers in the preserved marks table
   180   static void restore_marks();  // Restore the marks that we saved in preserve_mark
   182   template <class T> static inline void adjust_pointer(T* p, bool isroot);
   184   static void adjust_root_pointer(oop* p)  { adjust_pointer(p, true); }
   185   static void adjust_pointer(oop* p)       { adjust_pointer(p, false); }
   186   static void adjust_pointer(narrowOop* p) { adjust_pointer(p, false); }
   188 };
   190 class PreservedMark VALUE_OBJ_CLASS_SPEC {
   191 private:
   192   oop _obj;
   193   markOop _mark;
   195 public:
   196   void init(oop obj, markOop mark) {
   197     _obj = obj;
   198     _mark = mark;
   199   }
   201   void adjust_pointer() {
   202     MarkSweep::adjust_pointer(&_obj);
   203   }
   205   void restore() {
   206     _obj->set_mark(_mark);
   207   }
   208 };
   210 #endif // SHARE_VM_GC_IMPLEMENTATION_SHARED_MARKSWEEP_HPP

mercurial