comparison src/share/vm/oops/objArrayKlass.inline.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children da91efe96a93
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 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 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24
25 #ifndef SHARE_VM_OOPS_OBJARRAYKLASS_INLINE_HPP
26 #define SHARE_VM_OOPS_OBJARRAYKLASS_INLINE_HPP
27
28 #include "oops/objArrayKlass.hpp"
29 #ifndef SERIALGC
30 #include "gc_implementation/parallelScavenge/psCompactionManager.inline.hpp"
31 #include "gc_implementation/parallelScavenge/psParallelCompact.hpp"
32 #endif
24 33
25 void objArrayKlass::oop_follow_contents(oop obj, int index) { 34 void objArrayKlass::oop_follow_contents(oop obj, int index) {
26 if (UseCompressedOops) { 35 if (UseCompressedOops) {
27 objarray_follow_contents<narrowOop>(obj, index); 36 objarray_follow_contents<narrowOop>(obj, index);
28 } else { 37 } else {
85 if (end_index < len) { 94 if (end_index < len) {
86 cm->push_objarray(a, end_index); // Push the continuation. 95 cm->push_objarray(a, end_index); // Push the continuation.
87 } 96 }
88 } 97 }
89 #endif // #ifndef SERIALGC 98 #endif // #ifndef SERIALGC
99
100 #endif // SHARE_VM_OOPS_OBJARRAYKLASS_INLINE_HPP