/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. * */ #ifndef SHARE_VM_OOPS_OBJARRAYKLASS_INLINE_HPP #define SHARE_VM_OOPS_OBJARRAYKLASS_INLINE_HPP #include "gc_implementation/shared/markSweep.inline.hpp" #include "oops/objArrayKlass.hpp" #include "oops/oop.inline2.hpp" #include "utilities/macros.hpp" #if INCLUDE_ALL_GCS #include "gc_implementation/parallelScavenge/psCompactionManager.inline.hpp" #include "gc_implementation/parallelScavenge/psParallelCompact.hpp" #endif // INCLUDE_ALL_GCS #define ObjArrayKlass_SPECIALIZED_OOP_ITERATE(T, a, p, do_oop) \ { \ T* p = (T*)(a)->base(); \ T* const end = p + (a)->length(); \ while (p < end) { \ do_oop; \ p++; \ } \ } #define ObjArrayKlass_OOP_ITERATE(a, p, do_oop) \ if (UseCompressedOops) { \ ObjArrayKlass_SPECIALIZED_OOP_ITERATE(narrowOop, \ a, p, do_oop) \ } else { \ ObjArrayKlass_SPECIALIZED_OOP_ITERATE(oop, \ a, p, do_oop) \ } template int ObjArrayKlass::oop_oop_iterate(oop obj, OopClosureType* closure) { assert (obj->is_array(), "obj must be array"); objArrayOop a = objArrayOop(obj); /* Get size before changing pointers. */ /* Don't call size() or oop_size() since that is a virtual call. */ int size = a->object_size(); if (Devirtualizer::do_metadata(closure)) { Devirtualizer::do_klass(closure, obj->klass()); } ObjArrayKlass_OOP_ITERATE(a, p, (Devirtualizer::do_oop(closure, p))) return size; } #define ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(T, a, p, low, high, do_oop) \ { \ T* const l = (T*)(low); \ T* const h = (T*)(high); \ T* p = (T*)(a)->base(); \ T* end = p + (a)->length(); \ if (p < l) p = l; \ if (end > h) end = h; \ while (p < end) { \ do_oop; \ ++p; \ } \ } #define ObjArrayKlass_BOUNDED_OOP_ITERATE(a, p, low, high, do_oop) \ if (UseCompressedOops) { \ ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(narrowOop, \ a, p, low, high, do_oop) \ } else { \ ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(oop, \ a, p, low, high, do_oop) \ } template int ObjArrayKlass::oop_oop_iterate_m(oop obj, OopClosureType* closure, MemRegion mr) { assert(obj->is_array(), "obj must be array"); objArrayOop a = objArrayOop(obj); /* Get size before changing pointers. */ /* Don't call size() or oop_size() since that is a virtual call */ int size = a->object_size(); if (Devirtualizer::do_metadata(closure)) { /* SSS: Do we need to pass down mr here? */ Devirtualizer::do_klass(closure, obj->klass()); } ObjArrayKlass_BOUNDED_OOP_ITERATE( a, p, mr.start(), mr.end(), (Devirtualizer::do_oop(closure, p))) return size; } template int ObjArrayKlass::oop_oop_iterate_backwards(oop obj, OopClosureType* closure) { return oop_oop_iterate(obj, closure); } // Like oop_oop_iterate but only iterates over a specified range and only used // for objArrayOops. template int ObjArrayKlass::oop_oop_iterate_range_t(oop obj, OopClosureType* closure, int start, int end) { assert(obj->is_array(), "obj must be array"); objArrayOop a = objArrayOop(obj); /* Get size before changing pointers. */ /* Don't call size() or oop_size() since that is a virtual call */ int size = a->object_size(); if (UseCompressedOops) { HeapWord* low = start == 0 ? (HeapWord*)a : (HeapWord*)a->obj_at_addr(start); /* this might be wierd if end needs to be aligned on HeapWord boundary */ HeapWord* high = (HeapWord*)((narrowOop*)a->base() + end); MemRegion mr(low, high); if (Devirtualizer::do_metadata(closure)) { /* SSS: Do we need to pass down mr here? */ Devirtualizer::do_klass(closure, obj->klass()); } ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(narrowOop, a, p, low, high, (Devirtualizer::do_oop(closure, p))) } else { HeapWord* low = start == 0 ? (HeapWord*)a : (HeapWord*)a->obj_at_addr(start); HeapWord* high = (HeapWord*)((oop*)a->base() + end); MemRegion mr(low, high); if (Devirtualizer::do_metadata(closure)) { /* SSS: Do we need to pass down mr here? */ Devirtualizer::do_klass(closure, obj->klass()); } ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(oop, a, p, low, high, (Devirtualizer::do_oop(closure, p))) } return size; } void ObjArrayKlass::oop_follow_contents(oop obj, int index) { if (UseCompressedOops) { objarray_follow_contents(obj, index); } else { objarray_follow_contents(obj, index); } } template void ObjArrayKlass::objarray_follow_contents(oop obj, int index) { objArrayOop a = objArrayOop(obj); const size_t len = size_t(a->length()); const size_t beg_index = size_t(index); assert(beg_index < len || len == 0, "index too large"); const size_t stride = MIN2(len - beg_index, ObjArrayMarkingStride); const size_t end_index = beg_index + stride; T* const base = (T*)a->base(); T* const beg = base + beg_index; T* const end = base + end_index; // Push the non-NULL elements of the next stride on the marking stack. for (T* e = beg; e < end; e++) { MarkSweep::mark_and_push(e); } if (end_index < len) { MarkSweep::push_objarray(a, end_index); // Push the continuation. } } #if INCLUDE_ALL_GCS void ObjArrayKlass::oop_follow_contents(ParCompactionManager* cm, oop obj, int index) { if (UseCompressedOops) { objarray_follow_contents(cm, obj, index); } else { objarray_follow_contents(cm, obj, index); } } template void ObjArrayKlass::objarray_follow_contents(ParCompactionManager* cm, oop obj, int index) { objArrayOop a = objArrayOop(obj); const size_t len = size_t(a->length()); const size_t beg_index = size_t(index); assert(beg_index < len || len == 0, "index too large"); const size_t stride = MIN2(len - beg_index, ObjArrayMarkingStride); const size_t end_index = beg_index + stride; T* const base = (T*)a->base(); T* const beg = base + beg_index; T* const end = base + end_index; // Push the non-NULL elements of the next stride on the marking stack. for (T* e = beg; e < end; e++) { PSParallelCompact::mark_and_push(cm, e); } if (end_index < len) { cm->push_objarray(a, end_index); // Push the continuation. } } #endif // INCLUDE_ALL_GCS #endif // SHARE_VM_OOPS_OBJARRAYKLASS_INLINE_HPP