< prev index next >

src/share/vm/gc/parallel/psPromotionManager.inline.hpp

Print this page
rev 8362 : [mq]: hotspot

*** 20,39 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPROMOTIONMANAGER_INLINE_HPP ! #define SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPROMOTIONMANAGER_INLINE_HPP ! #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp" ! #include "gc_implementation/parallelScavenge/psOldGen.hpp" ! #include "gc_implementation/parallelScavenge/psPromotionManager.hpp" ! #include "gc_implementation/parallelScavenge/psPromotionLAB.inline.hpp" ! #include "gc_implementation/parallelScavenge/psScavenge.hpp" #include "oops/oop.inline.hpp" - #include "utilities/taskqueue.inline.hpp" inline PSPromotionManager* PSPromotionManager::manager_array(int index) { assert(_manager_array != NULL, "access of NULL manager_array"); assert(index >= 0 && index <= (int)ParallelGCThreads, "out of range manager_array access"); return &_manager_array[index]; --- 20,39 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_PARALLEL_PSPROMOTIONMANAGER_INLINE_HPP ! #define SHARE_VM_GC_PARALLEL_PSPROMOTIONMANAGER_INLINE_HPP ! #include "gc/parallel/parallelScavengeHeap.hpp" ! #include "gc/parallel/psOldGen.hpp" ! #include "gc/parallel/psPromotionLAB.inline.hpp" ! #include "gc/parallel/psPromotionManager.hpp" ! #include "gc/parallel/psScavenge.hpp" ! #include "gc/shared/taskqueue.inline.hpp" #include "oops/oop.inline.hpp" inline PSPromotionManager* PSPromotionManager::manager_array(int index) { assert(_manager_array != NULL, "access of NULL manager_array"); assert(index >= 0 && index <= (int)ParallelGCThreads, "out of range manager_array access"); return &_manager_array[index];
*** 333,338 **** ++_masked_steals; } } #endif // TASKQUEUE_STATS ! #endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPROMOTIONMANAGER_INLINE_HPP --- 333,338 ---- ++_masked_steals; } } #endif // TASKQUEUE_STATS ! #endif // SHARE_VM_GC_PARALLEL_PSPROMOTIONMANAGER_INLINE_HPP
< prev index next >