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

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

mercurial