--- old/src/share/vm/gc/parallel/psScavenge.hpp 2017-04-25 16:44:56.039174460 +0200 +++ new/src/share/vm/gc/parallel/psScavenge.hpp 2017-04-25 16:44:55.887174465 +0200 @@ -25,7 +25,7 @@ #ifndef SHARE_VM_GC_PARALLEL_PSSCAVENGE_HPP #define SHARE_VM_GC_PARALLEL_PSSCAVENGE_HPP -#include "gc/parallel/cardTableExtension.hpp" +#include "gc/parallel/psCardTable.hpp" #include "gc/parallel/psVirtualspace.hpp" #include "gc/shared/collectorCounters.hpp" #include "gc/shared/gcTrace.hpp" @@ -67,7 +67,7 @@ // Flags/counters static ReferenceProcessor* _ref_processor; // Reference processor for scavenging. static PSIsAliveClosure _is_alive_closure; // Closure used for reference processing - static CardTableExtension* _card_table; // We cache the card table for fast access. + static PSCardTable* _card_table; // We cache the card table for fast access. static bool _survivor_overflow; // Overflow this collection static uint _tenuring_threshold; // tenuring threshold for next scavenge static elapsedTimer _accumulated_time; // total time spent on scavenge @@ -89,7 +89,7 @@ static inline void save_to_space_top_before_gc(); // Private accessors - static CardTableExtension* const card_table() { assert(_card_table != NULL, "Sanity"); return _card_table; } + static PSCardTable* const card_table() { assert(_card_table != NULL, "Sanity"); return _card_table; } static const ParallelScavengeTracer* gc_tracer() { return &_gc_tracer; } public: