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 */
24
25 #ifndef SHARE_OOPS_TYPEARRAYKLASS_INLINE_HPP
26 #define SHARE_OOPS_TYPEARRAYKLASS_INLINE_HPP
27
28 #include "oops/typeArrayKlass.hpp"
29
30 #include "oops/arrayKlass.hpp"
31 #include "oops/klass.hpp"
32 #include "oops/oop.inline.hpp"
33 #include "oops/typeArrayOop.hpp"
34
35 class OopIterateClosure;
36
37 inline void TypeArrayKlass::oop_oop_iterate_impl(oop obj, OopIterateClosure* closure) {
38 assert(obj->is_typeArray(),"must be a type array");
39 // Performance tweak: We skip processing the klass pointer since all
40 // TypeArrayKlasses are guaranteed processed via the null class loader.
41 }
42
43 template <typename T, typename OopClosureType>
44 void TypeArrayKlass::oop_oop_iterate(oop obj, OopClosureType* closure) {
45 oop_oop_iterate_impl(obj, closure);
46 }
47
48 template <typename T, typename OopClosureType>
49 void TypeArrayKlass::oop_oop_iterate_bounded(oop obj, OopClosureType* closure, MemRegion mr) {
50 oop_oop_iterate_impl(obj, closure);
51 }
52
53 template <typename T, typename OopClosureType>
54 void TypeArrayKlass::oop_oop_iterate_reverse(oop obj, OopClosureType* closure) {
55 oop_oop_iterate_impl(obj, closure);
56 }
57
58 #endif // SHARE_OOPS_TYPEARRAYKLASS_INLINE_HPP
|
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 */
24
25 #ifndef SHARE_OOPS_TYPEARRAYKLASS_INLINE_HPP
26 #define SHARE_OOPS_TYPEARRAYKLASS_INLINE_HPP
27
28 #include "oops/typeArrayKlass.hpp"
29
30 #include "oops/arrayKlass.hpp"
31 #include "oops/klass.hpp"
32 #include "oops/oop.inline.hpp"
33 #include "oops/typeArrayOop.hpp"
34
35 class OopIterateClosure;
36
37 inline void TypeArrayKlass::oop_oop_iterate_impl(oop obj, OopIterateClosure* closure) {
38 // In this assert, we cannot safely access the Klass* with compact headers.
39 assert(UseCompactObjectHeaders || obj->is_typeArray(),"must be a type array");
40 // Performance tweak: We skip processing the klass pointer since all
41 // TypeArrayKlasses are guaranteed processed via the null class loader.
42 }
43
44 template <typename T, typename OopClosureType>
45 void TypeArrayKlass::oop_oop_iterate(oop obj, OopClosureType* closure) {
46 oop_oop_iterate_impl(obj, closure);
47 }
48
49 template <typename T, typename OopClosureType>
50 void TypeArrayKlass::oop_oop_iterate_bounded(oop obj, OopClosureType* closure, MemRegion mr) {
51 oop_oop_iterate_impl(obj, closure);
52 }
53
54 template <typename T, typename OopClosureType>
55 void TypeArrayKlass::oop_oop_iterate_reverse(oop obj, OopClosureType* closure) {
56 oop_oop_iterate_impl(obj, closure);
57 }
58
59 #endif // SHARE_OOPS_TYPEARRAYKLASS_INLINE_HPP
|