duke@435: /* mikael@6198: * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. duke@435: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: * duke@435: * This code is free software; you can redistribute it and/or modify it duke@435: * under the terms of the GNU General Public License version 2 only, as duke@435: * published by the Free Software Foundation. duke@435: * duke@435: * This code is distributed in the hope that it will be useful, but WITHOUT duke@435: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: * version 2 for more details (a copy is included in the LICENSE file that duke@435: * accompanied this code). duke@435: * duke@435: * You should have received a copy of the GNU General Public License version duke@435: * 2 along with this work; if not, write to the Free Software Foundation, duke@435: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: * trims@1907: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA trims@1907: * or visit www.oracle.com if you need additional information or have any trims@1907: * questions. duke@435: * duke@435: */ duke@435: stefank@2314: #ifndef SHARE_VM_GC_IMPLEMENTATION_SHARED_MARKSWEEP_INLINE_HPP stefank@2314: #define SHARE_VM_GC_IMPLEMENTATION_SHARED_MARKSWEEP_INLINE_HPP stefank@2314: stefank@2314: #include "gc_implementation/shared/markSweep.hpp" stefank@2314: #include "gc_interface/collectedHeap.hpp" stefank@2314: #include "utilities/stack.inline.hpp" jprovino@4542: #include "utilities/macros.hpp" jprovino@4542: #if INCLUDE_ALL_GCS stefank@2314: #include "gc_implementation/parallelScavenge/psParallelCompact.hpp" jprovino@4542: #endif // INCLUDE_ALL_GCS stefank@2314: duke@435: inline void MarkSweep::mark_object(oop obj) { duke@435: // some marks may contain information we need to preserve so we store them away duke@435: // and overwrite the mark. We'll restore it at the end of markSweep. duke@435: markOop mark = obj->mark(); duke@435: obj->set_mark(markOopDesc::prototype()->set_marked()); duke@435: duke@435: if (mark->must_be_preserved(obj)) { duke@435: preserve_mark(obj, mark); duke@435: } duke@435: } coleenp@548: sjohanss@6148: inline void MarkSweep::follow_klass(Klass* klass) { sjohanss@6148: oop op = klass->klass_holder(); sjohanss@6148: MarkSweep::mark_and_push(&op); sjohanss@6148: } sjohanss@6148: coleenp@548: template inline void MarkSweep::follow_root(T* p) { coleenp@548: assert(!Universe::heap()->is_in_reserved(p), coleenp@548: "roots shouldn't be things within the heap"); coleenp@548: T heap_oop = oopDesc::load_heap_oop(p); coleenp@548: if (!oopDesc::is_null(heap_oop)) { coleenp@548: oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); coleenp@548: if (!obj->mark()->is_marked()) { coleenp@548: mark_object(obj); coleenp@548: obj->follow_contents(); coleenp@548: } coleenp@548: } coleenp@548: follow_stack(); coleenp@548: } coleenp@548: coleenp@548: template inline void MarkSweep::mark_and_push(T* p) { coleenp@548: // assert(Universe::heap()->is_in_reserved(p), "should be in object space"); coleenp@548: T heap_oop = oopDesc::load_heap_oop(p); coleenp@548: if (!oopDesc::is_null(heap_oop)) { coleenp@548: oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); coleenp@548: if (!obj->mark()->is_marked()) { coleenp@548: mark_object(obj); jcoomes@2191: _marking_stack.push(obj); coleenp@548: } coleenp@548: } coleenp@548: } coleenp@548: jcoomes@1746: void MarkSweep::push_objarray(oop obj, size_t index) { jcoomes@1746: ObjArrayTask task(obj, index); jcoomes@1746: assert(task.is_valid(), "bad ObjArrayTask"); jcoomes@2191: _objarray_stack.push(task); jcoomes@1746: } jcoomes@1746: stefank@5011: template inline void MarkSweep::adjust_pointer(T* p) { coleenp@548: T heap_oop = oopDesc::load_heap_oop(p); coleenp@548: if (!oopDesc::is_null(heap_oop)) { coleenp@548: oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); coleenp@548: oop new_obj = oop(obj->mark()->decode_pointer()); coleenp@548: assert(new_obj != NULL || // is forwarding ptr? coleenp@548: obj->mark() == markOopDesc::prototype() || // not gc marked? coleenp@4037: (UseBiasedLocking && obj->mark()->has_bias_pattern()), coleenp@548: // not gc marked? coleenp@548: "should be forwarded"); coleenp@548: if (new_obj != NULL) { coleenp@548: assert(Universe::heap()->is_in_reserved(new_obj), coleenp@548: "should be in object space"); coleenp@548: oopDesc::encode_store_heap_oop_not_null(p, new_obj); coleenp@548: } coleenp@548: } coleenp@548: } coleenp@548: coleenp@548: template inline void MarkSweep::KeepAliveClosure::do_oop_work(T* p) { coleenp@548: mark_and_push(p); coleenp@548: } stefank@2314: stefank@2314: #endif // SHARE_VM_GC_IMPLEMENTATION_SHARED_MARKSWEEP_INLINE_HPP